/* ======================
   CSS VARIABLES & RESET
   ====================== */

:root {
    /* Greenish-Olive Color Palette */
    --primary-color: #6b8e23;
    --primary-hover: #556b2f;
    --secondary-color: #8fbc8f;
    --accent-color: #bc6b23;
    --accent-hover: #a55a1a;
    --dark-accent: #2b331f;
    --dark-blue: #1a2711;
    --electric-blue: #a5d6a7;
    --purple: #7e9f7e;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--electric-blue) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--purple) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-accent) 0%, var(--dark-blue) 100%);
    
    /* Background Colors */
    --bg-dark: #121510;
    --bg-darker: #0a0c09;
    --bg-light: #1e201b;
    --light-color: #f8f9f7;
    
    /* Text Colors */
    --text-primary: rgba(248, 249, 247, 0.95);
    --text-secondary: rgba(248, 249, 247, 0.8);
    --text-muted: rgba(248, 249, 247, 0.6);
    --text-color: #2b331f;
    
    /* Shadows and Glows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15), 0 5px 10px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.25);
    --glow-primary: 0 0 15px rgba(107, 142, 35, 0.5);
    --glow-accent: 0 0 15px rgba(188, 107, 35, 0.5);
    
    /* Transitions */
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    
    /* Typography */
    --text-min: 16px;
    --text-max: 20px;
    --heading-min: 24px;
    --heading-max: 60px;
    
    /* Layout */
    --grid-gap: clamp(1rem, 2vw, 2rem);
    --container-padding: clamp(1rem, 5vw, 3rem);
    --section-spacing: clamp(3rem, 6vw, 6rem);
    
    /* Shapes */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-round: 50%;
    
    /* Effects */
    --backdrop-blur: blur(16px);
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: clamp(var(--text-min), 1vw, var(--text-max));
    line-height: 1.6;
}

/* ======================
   WHITE NAVBAR STYLES
   ====================== */

.navbar {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-dark .navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.7rem 1.2rem !important;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.navbar-dark .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
    border-radius: 2px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(107, 142, 35, 0.1);
}

.navbar-dark .navbar-nav .nav-link:hover::before,
.navbar-dark .navbar-nav .nav-link.active::before {
    width: 70%;
}

.navbar-toggler {
    border-color: rgba(0, 0, 0, 0.1);
    padding: 0.25rem 0.5rem;
    background: transparent;
    transition: var(--transition-normal);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(107, 142, 35, 0.25);
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: var(--transition-normal);
}

/* Logo Styles */
.navbar-brand {
    display: flex;
    align-items: center;
    /* background: rgb(95, 84, 84); */
    padding: 8px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 1.4rem;
    font-weight: 700;
    transition: var(--transition-normal);
}

.navbar-brand img {
    height: 40px;
    margin-right: 10px;
}

.navbar-brand span {
    color: #333;
    font-weight: 700;
}

.navbar-brand:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.preloader-logo-container {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.preloader-logo {
    height: 80px;
    animation: logoPulse 2s infinite;
}

@keyframes logoPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Get Started Button */
.get-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.get-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(107, 142, 35, 0.3);
    color: white;
}

/* WhatsApp Button */
.whatsapp-btn {
    background-color: #25D366;
    border-color: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    color: white;
}

/* Social Icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ======================
   TYPOGRAPHY SYSTEM
   ====================== */

h1, .h1 { 
    font-size: clamp(2rem, 5vw, 4rem); 
    line-height: 1.1; 
    font-weight: 800; 
    margin-bottom: 1rem;
}

h2, .h2 { 
    font-size: clamp(1.75rem, 4vw, 3rem); 
    line-height: 1.2; 
    font-weight: 700; 
    margin-bottom: 1rem;
}

h3, .h3 { 
    font-size: clamp(1.5rem, 3vw, 2.5rem); 
    line-height: 1.3; 
    font-weight: 600; 
    margin-bottom: 0.875rem;
}

h4, .h4 { 
    font-size: clamp(1.25rem, 2.5vw, 2rem); 
    line-height: 1.4; 
    font-weight: 600; 
    margin-bottom: 0.75rem;
}

h5, .h5 { 
    font-size: clamp(1.125rem, 2vw, 1.5rem); 
    line-height: 1.5; 
    font-weight: 500; 
    margin-bottom: 0.625rem;
}

h6, .h6 { 
    font-size: clamp(1rem, 1.5vw, 1.25rem); 
    line-height: 1.6; 
    font-weight: 500; 
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent-color);
}

/* ======================
   LAYOUT & CONTAINERS
   ====================== */

.container {
    width: 100%;
    max-width: 1400px;
    padding-right: var(--container-padding);
    padding-left: var(--container-padding);
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(var(--grid-gap) * -0.5);
    margin-left: calc(var(--grid-gap) * -0.5);
}

.col {
    flex: 1 0 0%;
    padding: 0 calc(var(--grid-gap) * 0.5);
}

.section-padding {
    padding: var(--section-spacing) var(--container-padding);
}

/* ======================
   NAVIGATION - FIXED
   ====================== */

.navbar-nav {
    gap: 0.5rem;
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: var(--radius-lg);
        margin-top: 1rem;
        padding: 1.5rem;
        box-shadow: var(--shadow-xl);
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav {
        gap: 0;
    }
    
    .nav-item {
        margin-bottom: 0.5rem;
    }
    
    .nav-link {
        padding: 1rem !important;
        margin-left: 0;
        text-align: center;
        display: block;
        color: #333 !important;
    }
    
    .nav-link::before {
        display: none;
    }
    
    .nav-item.ms-lg-3 {
        margin-left: 0 !important;
        margin-top: 1rem;
    }
    
    .get-btn {
        width: 100%;
        text-align: center;
    }
}

/* ======================
   BACKGROUND & EFFECTS
   ====================== */

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    background: var(--gradient-dark);
    background-size: 300% 300%;
    animation: gradient-move 20s ease infinite alternate;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    opacity: 0.3;
}

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: float 15s infinite linear;
}

.floating-element:nth-child(1) {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: 20%;
    left: 10%;
    animation-duration: 20s;
}

.floating-element:nth-child(2) {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    top: 60%;
    left: 70%;
    animation-duration: 25s;
    animation-delay: 5s;
}

.floating-element:nth-child(3) {
    width: 250px;
    height: 250px;
    background: var(--electric-blue);
    top: 30%;
    left: 80%;
    animation-duration: 18s;
    animation-delay: 8s;
}

/* ======================
   PRELOADER
   ====================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader-logo {
    width: 120px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards 0.3s;
}

.loader {
    display: flex;
    gap: 8px;
}

.loader-square {
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 3px;
    animation: loader-anim 1.2s infinite ease-in-out;
}

.loader-square:nth-child(1) { animation-delay: 0s; }
.loader-square:nth-child(2) { animation-delay: 0.15s; }
.loader-square:nth-child(3) { animation-delay: 0.3s; }
.loader-square:nth-child(4) { animation-delay: 0.45s; }
.loader-square:nth-child(5) { animation-delay: 0.6s; }
.loader-square:nth-child(6) { animation-delay: 0.75s; }
.loader-square:nth-child(7) { animation-delay: 0.9s; }

/* ======================
   HERO SECTION
   ====================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem var(--container-padding) 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-out;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.3s both;
}

.graph-container {
    position: relative;
    padding: 2rem;
    background: rgba(43, 51, 31, 0.7);
    backdrop-filter: var(--backdrop-blur);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
    max-width: 100%;
    overflow: hidden;
    animation: fadeIn 1s ease-out 0.6s both;
}

.graph-container canvas {
    width: 100% !important;
    height: auto !important;
}

.graph-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 10;
}

.scroll-down span {
    display: block;
    width: 12px;
    height: 12px;
    border-bottom: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    transform: rotate(45deg);
    margin: -5px;
    animation: scroll-down 2s infinite;
}

.scroll-down span:nth-child(2) {
    animation-delay: -0.2s;
}

.scroll-down span:nth-child(3) {
    animation-delay: -0.4s;
}

/* ======================
   SECTIONS SYSTEM
   ====================== */

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.section-title p {
    max-width: 700px;
    margin: 1rem auto 0;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ======================
   SERVICES SECTION
   ====================== */

.service-card {
    background: rgba(43, 51, 31, 0.7);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: var(--transition-bounce);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 0.2;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--accent-color);
    transform: rotateY(180deg);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition-fast);
}

.service-link i {
    margin-left: 0.5rem;
    transition: var(--transition-fast);
}

.service-card:hover .service-link {
    color: var(--accent-color);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* ======================
   ABOUT SECTION
   ====================== */

.about-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    transition: var(--transition-slow);
    width: 100%;
    height: auto;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-item i {
    color: var(--accent-color);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.feature-item span {
    color: var(--text-secondary);
}

.stats-box {
    background: rgba(43, 51, 31, 0.7);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

/* ======================
   PORTFOLIO SECTION
   ====================== */

.portfolio-boxes {
    margin-top: 3rem;
}

.box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.content-box {
    background: rgba(43, 51, 31, 0.7);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: var(--transition-bounce);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-normal);
}

.content-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.content-box:hover::before {
    opacity: 0.2;
}

.box-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.content-box:hover .box-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--accent-color);
    transform: scale(1.1) rotate(15deg);
}

.content-box h3 {
    margin-bottom: 1rem;
}

.content-box p {
    margin-bottom: 1.5rem;
}

.box-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition-fast);
}

.box-link i {
    margin-left: 0.5rem;
    transition: var(--transition-fast);
}

.content-box:hover .box-link {
    color: var(--accent-color);
}

.content-box:hover .box-link i {
    transform: translateX(5px);
}

/* ======================
   SOCIAL MEDIA SHOWCASE
   ====================== */

.social-showcase {
    margin-top: 4rem;
}

.social-platform {
    margin-bottom: 3rem;
}

.social-platform h3 {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.social-platform h3 i {
    margin-right: 0.8rem;
    font-size: 1.5rem;
}

.instagram h3 i { color: #E1306C; }

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.social-post {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    aspect-ratio: 1;
}

.social-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.social-post img {
    transition: var(--transition-slow);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-post:hover img {
    transform: scale(1.05);
}

/* Reel Items */
.reel-item {
    position: relative;
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition-normal);
    opacity: 0.8;
}

.reel-item:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* ======================
   TESTIMONIALS
   ====================== */

.testimonial-slider {
    position: relative;
    padding: 2rem 0;
}

.swiper {
    padding: 2rem 0;
}

.testimonial-card {
    background: rgba(30, 32, 27, 0.7);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: var(--transition-normal);
    height: auto;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

.rating {
    color: #FFD700;
    margin-bottom: 1rem;
}

.rating i {
    margin-right: 0.2rem;
}

.testimonial-card p {
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-round);
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.author-info h4 {
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.location {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.location i {
    margin-right: 0.3rem;
}

/* ======================
   CTA SECTION
   ====================== */

.cta-section {
    background: var(--gradient-primary);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
    color: white;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.call-btn {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition-normal);
}

.call-btn:hover {
    color: white;
}

/* ======================
   CONTACT SECTION
   ====================== */

.contact-info {
    background: rgba(43, 51, 31, 0.7);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 1rem;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.contact-info-item:hover .contact-info-icon {
    background: var(--gradient-primary);
    color: white;
    transform: rotate(15deg);
}

.contact-info-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-info-content p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.contact-form {
    background: rgba(43, 51, 31, 0.7);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 0.8rem 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    width: 100%;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(107, 142, 35, 0.25);
    color: var(--text-primary);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Form Status Messages */
.loading, .error-message, .sent-message {
    display: none;
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    text-align: center;
}

.loading { background: rgba(255, 255, 255, 0.1); color: var(--text-primary); }
.error-message { background: rgba(220, 53, 69, 0.1); color: #dc3545; }
.sent-message { background: rgba(40, 167, 69, 0.1); color: #28a745; }

/* ======================
   BUTTON SYSTEM
   ====================== */

.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
}

.btn i {
    margin-left: 0.5rem;
    transition: var(--transition-fast);
}

.btn:hover i {
    transform: translateX(5px);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(107, 142, 35, 0.4);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-light {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-light:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ======================
   SOCIAL LINKS
   ====================== */

.social-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-round);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-normal);
    text-decoration: none;
}

.social-icon:hover {
    color: white;
    transform: translateY(-5px);
}

.social-icon.instagram:hover { 
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); 
}

/* ======================
   FOOTER
   ====================== */

.footer {
    background: var(--bg-darker);
    padding: 5rem 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-logo {
    display: inline-block;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.footer-about p {
    margin-bottom: 1.5rem;
}

.footer-links h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-newsletter h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-newsletter p {
    margin-bottom: 1.5rem;
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input[type="email"] {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    transition: var(--transition-normal);
}

.footer-newsletter input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.footer-newsletter input[type="submit"] {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    cursor: pointer;
    transition: var(--transition-normal);
}

.footer-newsletter input[type="submit"]:hover {
    background: var(--gradient-accent);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.copyright, .credits {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.credits a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.credits a:hover {
    color: var(--accent-color);
}

/* ======================
   ANIMATIONS
   ====================== */

@keyframes gradient-move {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 70%; }
}

@keyframes loader-anim {
    0%, 40%, 100% { transform: scaleY(0.4); }
    20% { transform: scaleY(1); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(107, 142, 35, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(107, 142, 35, 0); }
    100% { box-shadow: 0 0 0 0 rgba(107, 142, 35, 0); }
}

@keyframes scroll-down {
    0% { opacity: 0; transform: rotate(45deg) translate(-10px, -10px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(10px, 10px); }
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(107, 142, 35, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(107, 142, 35, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(107, 142, 35, 0);
    }
}

.pulse {
    animation: pulse-glow 2s infinite;
}

/* ======================
   RESPONSIVE DESIGN
   ====================== */

/* Large devices (xl) */
@media (max-width: 1199.98px) {
    .hero h1 {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }
    
    .hero p {
        font-size: 1rem;
    }
}

/* Medium devices (lg) */
@media (max-width: 991.98px) {
    .hero {
        padding: 8rem 0 4rem;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-card, .content-box {
        margin-bottom: 2rem;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-image {
        margin-top: 3rem;
    }
}

/* Small devices (md) */
@media (max-width: 767.98px) {
    .section-padding {
        padding: 3rem var(--container-padding);
    }
    
    .particles {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }
    
    .box-container,
    .social-grid {
        grid-template-columns: 1fr;
    }

    .footer-links, .footer-about, .footer-newsletter {
        margin-bottom: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
    
    .footer-newsletter form {
        flex-direction: column;
    }
    
    .footer-newsletter input[type="email"] {
        border-radius: var(--radius-md);
        margin-bottom: 0.5rem;
    }
    
    .footer-newsletter input[type="submit"] {
        border-radius: var(--radius-md);
        padding: 0.8rem;
    }
    
    .floating-element {
        display: none;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* Extra small devices (sm) */
@media (max-width: 575.98px) {
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .footer-links {
        margin-bottom: 2rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-newsletter input[type="email"],
    .footer-newsletter input[type="submit"] {
        width: 100%;
        border-radius: var(--radius-md);
    }
    
    .navbar {
        padding: 0.8rem var(--container-padding);
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

/* Print styles */
@media print {
    .bg-animation,
    .particles,
    .floating-elements,
    .navbar {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}