
        :root {
            --primary: #564624;
            --primary-dark: #3a3018;
            --primary-light: #75643a;
            --secondary: #692f02;
            --secondary-light: #8b3d03;
            --accent: #a67c52;
            --white: #ffffff;
            --light: #f8f5f0;
            --light-gray: #e8e5e0;
            --dark: #333333;
            --text-dark: #2a2a2a;
            
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Poppins', sans-serif;
            --font-special: 'Montserrat', sans-serif;
            
            --shadow-sm: 0 2px 8px rgba(86, 70, 36, 0.08);
            --shadow-md: 0 4px 16px rgba(86, 70, 36, 0.12);
            --shadow-lg: 0 8px 24px rgba(86, 70, 36, 0.16);
            
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 16px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        
        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background-color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        /* Header Actions Styles */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(86, 70, 36, 0.1);
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.header-cta {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-family: var(--font-special);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.header-cta:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Mobile Menu Social Links and CTA */
.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.mobile-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(86, 70, 36, 0.1);
    color: var(--primary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.mobile-social-links a:hover {
    background-color: var(--primary);
    color: var(--white);
}

.mobile-cta {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-family: var(--font-special);
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-cta:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .header-actions {
        display: none;
    }
    
    .mobile-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
            padding: 1rem 0;
            background-color: var(--white);
            box-shadow: var(--shadow-sm);
        }

        .header.scrolled {
            padding: 0.5rem 0;
            box-shadow: var(--shadow-md);
        }

        .header.hidden {
            transform: translateY(-100%);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo a {
            display: flex;
            flex-direction: column;
            text-decoration: none;
            color: var(--primary);
        }

        .logo svg {
            height: 40px;
        }

        .logo-subtitle {
            font-family: var(--font-body);
            font-size: 0.8rem;
            margin-top: 0.2rem;
            color: var(--primary-light);
        }

        /* Navigation Styles */
        .nav-list, .mobile-nav-list {
            padding-left: 0;
            margin-left: 0;
            list-style-type: none;
        }

        .nav-item, .mobile-nav-item {
            display: inline-block;
            margin: 0 1rem;
        }

        .nav-link, .mobile-nav-link {
            font-family: var(--font-special);
            font-weight: 600;
            text-decoration: none;
            color: var(--primary);
            position: relative;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
        }

        .nav-link::after, .mobile-nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after, .mobile-nav-link:hover::after {
            width: 100%;
        }

        .nav-link.active, .mobile-nav-link.active {
            color: var(--secondary);
        }

        /* Hero Section Styles */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 0 4rem;
            overflow: hidden;
        }

        #hero-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .highlight-badge {
            display: inline-block;
            background-color: var(--accent);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: var(--radius-sm);
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }

        .highlight-badge span {
            font-family: var(--font-special);
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
            position: relative;
            margin-bottom: 1.5rem;
            color: var(--primary-dark);
        }

        .title-line {
            display: block;
            position: relative;
        }

        .title-line.line-1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .title-line.line-2 {
            font-size: 3.5rem;
            margin-bottom: 0.5rem;
            color: var(--secondary);
        }

        .title-line.line-3 {
            font-size: 2.8rem;
        }

        .title-line::after {
            content: '';
            position: absolute;
            bottom: 0.2em;
            left: 0;
            width: 100%;
            height: 0.4em;
            background-color: rgba(166, 124, 82, 0.3);
            z-index: -1;
            transform: scaleX(0.9) skewX(-15deg);
            transition: all 0.3s ease;
        }

        .title-line.line-2::after {
            height: 0.5em;
            background-color: rgba(105, 47, 2, 0.3);
        }

        .hero-subtitle {
            font-family: var(--font-body);
            font-weight: 400;
            font-size: 1.2rem;
            line-height: 1.6;
            max-width: 600px;
            margin-bottom: 2rem;
            color: var(--text-dark);
        }

        .highlight-text {
            position: relative;
            display: inline-block;
            font-weight: 500;
        }

        .highlight-text::after {
            content: '';
            position: absolute;
            bottom: 0.1em;
            left: -0.1em;
            right: -0.1em;
            height: 0.4em;
            background-color: var(--accent);
            opacity: 0.3;
            z-index: -1;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .highlight-text:hover::after {
            opacity: 0.5;
            height: 0.6em;
            bottom: 0;
        }

        .title-line:hover::after {
            transform: scaleX(1) skewX(-10deg);
            opacity: 0.4;
        }

        /* Stats Styles */
        .stats-container {
            display: flex;
            gap: 2rem;
            margin: 2rem 0;
        }

        .stats-item {
            text-align: center;
        }

        .stat-number {
            font-family: var(--font-special);
            font-weight: 700;
            font-size: 2.5rem;
            color: var(--secondary);
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--primary-light);
        }

        /* Hero CTA Styles */
        .hero-cta {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.8rem 1.5rem;
            border-radius: var(--radius-md);
            text-decoration: none;
            font-family: var(--font-special);
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-button.primary {
            background-color: var(--secondary);
            color: var(--white);
        }

        .cta-button.primary:hover {
            background-color: var(--secondary-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .cta-button.secondary {
            background-color: transparent;
            color: var(--secondary);
            border: 2px solid var(--secondary);
        }

        .cta-button.secondary:hover {
            background-color: rgba(105, 47, 2, 0.1);
            transform: translateY(-2px);
        }

        .cta-button i {
            margin-left: 0.5rem;
            font-size: 0.9rem;
        }

        /* Hero Image Styles */
        .hero-image-container {
            position: relative;
            z-index: 2;
        }

        .image-wrapper {
            position: relative;
            width: 100%;
            max-width: 500px;
            margin-left: auto;
            transition: transform 0.5s ease;
        }

        .main-image {
            width: 100%;
            height: auto;
            border-radius: var(--radius-lg);
            position: relative;
            z-index: 3;
            transition: box-shadow 0.5s ease;
        }

        .image-frame {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--accent);
            border-radius: var(--radius-lg);
            z-index: 1;
            transition: transform 0.5s ease;
        }

        .image-pattern {
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 150px;
            height: 150px;
            background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20L0 20z' fill='%23a67c52' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            z-index: 2;
            transition: transform 0.5s ease;
        }

        .image-highlight {
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(166,124,82,0.1) 0%, rgba(166,124,82,0) 70%);
            z-index: 0;
            transition: transform 0.5s ease;
        }

        /* Scroll Indicator Styles */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 10;
            transition: opacity 0.3s ease;
        }

        .indicator-text {
            font-size: 0.8rem;
            margin-bottom: 0.5rem;
            color: var(--primary-light);
        }

        .indicator-arrows {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .arrow {
            width: 12px;
            height: 12px;
            border-right: 2px solid var(--primary);
            border-bottom: 2px solid var(--primary);
            transform: rotate(45deg);
            margin: -4px 0;
            opacity: 0;
            animation: arrow-wave 1.5s infinite;
        }

        .arrow:nth-child(1) { animation-delay: 0.1s; }
        .arrow:nth-child(2) { animation-delay: 0.2s; }
        .arrow:nth-child(3) { animation-delay: 0.3s; }

        @keyframes arrow-wave {
            0% { opacity: 0; transform: rotate(45deg) translateY(-10px); }
            50% { opacity: 1; }
            100% { opacity: 0; transform: rotate(45deg) translateY(10px); }
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .floating-shape {
            position: absolute;
            background-color: var(--accent);
            opacity: 0.1;
            border-radius: 50%;
            animation: float 15s infinite linear;
        }

        .shape-1 {
            width: 200px;
            height: 200px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 150px;
            height: 150px;
            bottom: 15%;
            right: 10%;
            animation-delay: 2s;
        }

        .shape-3 {
            width: 100px;
            height: 100px;
            top: 50%;
            left: 30%;
            animation-delay: 4s;
        }

        @keyframes float {
            0% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(20px, 20px) rotate(5deg); }
            50% { transform: translate(0, 40px) rotate(0deg); }
            75% { transform: translate(-20px, 20px) rotate(-5deg); }
            100% { transform: translate(0, 0) rotate(0deg); }
        }

        /* Loading Screen Styles */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--light);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 1s ease;
        }

        .loading-content {
            text-align: center;
        }

        .loading-logo svg {
            width: 200px;
            height: 60px;
        }

        .loading-spinner {
            margin-top: 2rem;
        }

        .spinner-circle {
            width: 50px;
            height: 50px;
            border: 4px solid rgba(86, 70, 36, 0.1);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .fade-out {
            opacity: 0;
        }

        /* Mobile Menu Styles */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            width: 30px;
            height: 30px;
            position: relative;
            cursor: pointer;
            z-index: 1001;
        }

        .toggle-line {
            display: block;
            width: 100%;
            height: 2px;
            background-color: var(--primary);
            position: absolute;
            left: 0;
            transition: all 0.3s ease;
        }

        .toggle-line:nth-child(1) { top: 6px; }
        .toggle-line:nth-child(2) { top: 14px; }
        .toggle-line:nth-child(3) { top: 22px; }

        .mobile-menu-toggle.active .toggle-line:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .mobile-menu-toggle.active .toggle-line:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active .toggle-line:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--white);
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-inner {
            text-align: center;
            padding: 2rem;
        }

        .mobile-nav-list {
            margin-bottom: 2rem;
        }

        .mobile-nav-item {
            margin: 1rem 0;
        }

        .mobile-nav-link {
            font-size: 1.2rem;
            color: var(--primary);
        }

        .mobile-social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .mobile-social-links a {
            color: var(--primary);
            font-size: 1.2rem;
        }

        .mobile-cta {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            background-color: var(--secondary);
            color: var(--white);
            border-radius: var(--radius-md);
            text-decoration: none;
            font-family: var(--font-special);
            font-weight: 600;
        }

        .no-scroll {
            overflow: hidden;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content {
                margin-bottom: 3rem;
            }

            .hero-subtitle {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-cta {
                justify-content: center;
            }

            .image-wrapper {
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .main-nav, .header-actions {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .hero {
                padding-top: 6rem;
            }

            .title-line.line-1 {
                font-size: 2rem;
            }

            .title-line.line-2 {
                font-size: 2.8rem;
            }

            .title-line.line-3 {
                font-size: 2.2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .stats-container {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .hero-cta {
                flex-direction: column;
            }

            .title-line.line-1 {
                font-size: 1.8rem;
            }

            .title-line.line-2 {
                font-size: 2.4rem;
            }

            .title-line.line-3 {
                font-size: 2rem;
            }

            .stat-number {
                font-size: 2rem;
            }
        }
   /* ==================== */
/* ABOUT SECTION STYLES */
/* ==================== */
.about-section {
    position: relative;
    padding: 6rem 0;
    background-color: var(--white);
    overflow: hidden;
}

.about-deco {
    position: absolute;
    background-color: rgba(166, 124, 82, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.deco-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
}

.deco-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Image Styles */
.about-image {
    position: relative;
    padding: 2rem;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(10deg);
    transition: transform 0.6s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.about-main-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.image-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    z-index: 1;
    transform: translate(15px, 15px);
    transition: transform 0.5s ease;
}

.exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-md);
    z-index: 3;
    box-shadow: var(--shadow-md);
    transform: rotate(5deg);
    transition: all 0.4s ease;
}

.exp-number {
    font-family: var(--font-special);
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 0.3rem;
}

.pattern-dots {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(circle, var(--accent) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.2;
    z-index: 0;
}

/* Content Styles */
.about-content {
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    position: relative;
}

.title-deco {
    display: block;
    font-family: var(--font-special);
    font-weight: 600;
    font-size: 1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.professional-card {
    display: flex;
    align-items: center;
    background-color: var(--light);
    padding: 1.2rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.professional-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pro-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
    font-size: 1.2rem;
}

.pro-content h3 {
    font-family: var(--font-special);
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.pro-content p {
    font-size: 0.9rem;
    color: var(--primary-light);
}

.about-text {
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.specialties-list {
    list-style: none;
    margin: 1.5rem 0;
}

.specialties-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.specialties-list i {
    width: 30px;
    height: 30px;
    background-color: rgba(166, 124, 82, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.specialties-list span {
    font-weight: 500;
    color: var(--primary-dark);
}

/* CTA Styles */
.about-cta {
    display: flex;
    align-items: center;
    margin-top: 2.5rem;
    gap: 2rem;
}

.cta-button.primary {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 2rem;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-special);
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.16, 0.84, 0.44, 1);
    border: none;
    box-shadow: 0 4px 12px rgba(105, 47, 2, 0.2);
}

.cta-button.primary i {
    margin-right: 0.7rem;
    font-size: 1rem;
}

.cta-button.primary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(105, 47, 2, 0.3);
}

.signature {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.signature-img {
    height: 100px;
    opacity: 0.8;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.signature-text {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--primary-light);
    font-size: 0.9rem;
    margin-top: -40px;
}

/* Hover Effects */
.about-image:hover .image-wrapper {
    transform: perspective(1000px) rotateY(0);
}

.about-image:hover .image-border {
    transform: translate(10px, 10px);
}

.about-image:hover .exp-badge {
    transform: rotate(0) scale(1.05);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-grid {
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
        padding: 1rem;
    }
    
    .about-content {
        text-align: center;
    }
    
    .professional-card {
        justify-content: center;
    }
    
    .specialties-list {
        justify-content: center;
    }
    
    .about-cta {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .exp-badge {
        padding: 1rem;
        right: -10px;
    }
    
    .exp-number {
        font-size: 1.5rem;
    }
}
/* ==================== */
/* SERVICES SECTION STYLES */
/* ==================== */
.services-section {
    position: relative;
    padding: 6rem 0;
    background-color: var(--light);
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    position: relative;
}

.title-deco {
    display: block;
    font-family: var(--font-special);
    font-weight: 600;
    font-size: 1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--primary-light);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.service-card {
    perspective: 1000px;
    height: 400px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
}

.service-card.flipped .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.card-front {
    border: 1px solid rgba(166, 124, 82, 0.1);
}

.card-back {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotateY(180deg);
    justify-content: space-between;
    padding: 2rem 1.5rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(166, 124, 82, 0.1), rgba(166, 124, 82, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(166, 124, 82, 0.2);
}

.service-card h3 {
    font-family: var(--font-special);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.card-front p {
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.flip-indicator {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--accent);
    margin-top: auto;
}

.flip-indicator i {
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

/* Back Card Styles */
.card-back h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    text-align: left;
    margin: 1rem 0;
    width: 100%;
}

.service-features li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.service-features i {
    margin-right: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.service-price {
    font-family: var(--font-special);
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0.5rem 0;
}

.service-cta {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background-color: var(--white);
    color: var(--primary);
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-special);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    border: 2px solid transparent;
}

.service-cta:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Decorative Elements */
.services-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 400px;
    background: radial-gradient(circle, rgba(166,124,82,0.05) 0%, rgba(166,124,82,0) 70%);
    z-index: 1;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 00px;
    background: radial-gradient(circle, rgba(86,70,36,0.05) 0%, rgba(86,70,36,0) 70%);
    z-index: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .service-card {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
}
/* ==================== */
/* COMING SOON SECTION STYLES */
/* ==================== */
.coming-soon-section {
    position: relative;
    padding: 6rem 0;
    background-color: var(--white);
    overflow: hidden;
}

/* Decoration Elements */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(166,124,82,0.1) 0%, rgba(166,124,82,0) 70%);
    z-index: 0;
}

.deco-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -150px;
}

.deco-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -100px;
}

.deco-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, var(--accent) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.1;
    z-index: 0;
}

/* Grid Layout */
.coming-soon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Image Styles */
.coming-soon-image {
    position: relative;
    padding: 2rem;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.6s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(86,70,36,0.3) 0%, rgba(166,124,82,0.1) 100%);
    z-index: 3;
}

.floating-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    z-index: 4;
    font-family: var(--font-special);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(105,47,2,0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Content Styles */
.coming-soon-content {
    position: relative;
}

.highlight-label {
    display: inline-block;
    background-color: rgba(166,124,82,0.1);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-family: var(--font-special);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-title span {
    display: block;
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 0.2rem 0;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

/* Countdown Styles */
.countdown-container {
    margin: 2.5rem 0;
}

.countdown-title {
    font-family: var(--font-special);
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 400px;
}

.countdown-item {
    background-color: var(--light);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.countdown-number {
    font-family: var(--font-special);
    font-weight: 700;
    font-size: 2rem;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.countdown-label {
    font-size: 0.8rem;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* CTA Form Styles */
.coming-soon-cta {
    margin: 3rem 0;
}

.cta-text {
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.notify-form {
    display: flex;
    max-width: 450px;
}

.notify-form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--light-gray);
    border-radius: 50px 0 0 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.notify-form input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(166,124,82,0.2);
}

.notify-form button {
    padding: 0 1.5rem;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 0 50px 50px 0;
    font-family: var(--font-special);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.notify-form button:hover {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    transform: translateX(3px);
}

.form-note {
    font-size: 0.8rem;
    color: var(--primary-light);
    margin-top: 0.5rem;
}

/* Social Proof Styles */
.social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.avatars-group {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--white);
    margin-left: -10px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:hover {
    transform: translateY(-5px);
    z-index: 2;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proof-text {
    font-size: 0.9rem;
}

.stars {
    color: var(--secondary);
    margin-bottom: 0.2rem;
}

.stars i {
    font-size: 0.8rem;
}

.proof-text p {
    color: var(--primary-light);
}

.proof-text strong {
    color: var(--secondary);
    font-weight: 600;
}

/* Hover Effects */
.coming-soon-image:hover .image-wrapper {
    transform: perspective(1000px) rotateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .coming-soon-grid {
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .countdown-grid {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .coming-soon-section {
        padding: 4rem 0;
    }
    
    .coming-soon-grid {
        grid-template-columns: 1fr;
    }
    
    .coming-soon-image {
        max-width: 500px;
        margin: 0 auto;
        padding: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .section-description {
        text-align: center;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .countdown-container {
        text-align: center;
    }
    
    .countdown-grid {
        margin: 0 auto;
    }
    
    .notify-form {
        margin: 0 auto;
    }
    
    .social-proof {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .notify-form {
        flex-direction: column;
    }
    
    .notify-form input {
        border-radius: 50px;
        margin-bottom: 0.5rem;
    }
    
    .notify-form button {
        border-radius: 50px;
        justify-content: center;
        padding: 0.8rem;
    }
    
    .social-proof {
        flex-direction: column;
        text-align: center;
    }
    
    .avatars-group {
        justify-content: center;
    }
}

/* ==================== */
/* CONTACT FORM SECTION STYLES */
#service1{
    color: #1e1e1e;
}
/* ==================== */
.contact-form-section1 {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #2a2a2a, #1e1e1e);
    color: #fff;
    overflow: hidden;
}

/* Decoration Elements */
.form-deco1 {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(166,124,82,0.08) 0%, rgba(166,124,82,0) 70%);
    z-index: 0;
}

.shape-11 {
    width: 600px;
    height: 600px;
    top: -300px;
    right: -300px;
}

.shape-21 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -200px;
}

.form-pattern1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23a67c52' stroke-width='0.5' stroke-opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

/* Header Styles */
.form-header1 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}

.section-title1 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-deco1 {
    display: block;
    font-family: var(--font-special);
    font-weight: 600;
    font-size: 1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.section-subtitle1 {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* Form Container */
.form-container1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* Form Column Styles */
.form-column1 {
    background-color: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.consultation-form1 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group1 {
    position: relative;
}

.floating-input1 input,
.floating-select1 select {
    width: 100%;
    padding: 1.2rem 1rem 1.2rem 3rem;
    background-color: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.floating-input1 input:focus,
.floating-select1 select:focus {
    outline: none;
    border-color: var(--accent);
    background-color: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(166,124,82,0.2);
}

.floating-input1 label,
.floating-select1 label {
    position: absolute;
    top: 1.2rem;
    left: 3rem;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.floating-input1 input:focus + label,
.floating-input1 input:not(:placeholder-shown) + label,
.floating-select1 select:focus + label,
.floating-select1 select:not([value=""]) + label {
    top: 0.5rem;
    left: 3rem;
    font-size: 0.8rem;
    color: var(--accent);
}

.input-icon1 {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.floating-input1 input:focus ~ .input-icon1,
.floating-select1 select:focus ~ .input-icon1 {
    color: var(--accent);
}

textarea1 {
    width: 100%;
    padding: 1.2rem 1rem 1.2rem 3rem;
    background-color: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
}

textarea1:focus {
    outline: none;
    border-color: var(--accent);
    background-color: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(166,124,82,0.2);
}

.textarea-icon1 {
    position: absolute;
    left: 1rem;
    top: 1.2rem;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

textarea1:focus ~ .textarea-icon1 {
    color: var(--accent);
}

/* Submit Button */
.form-actions1 {
    margin-top: 1rem;
}

.submit-btn1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-special);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(166,124,82,0.3);
}

.submit-btn1:hover {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(166,124,82,0.4);
}

.submit-btn1:active {
    transform: translateY(1px);
}

.btn-icon1, .btn-loader1 {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.btn-loader1 {
    opacity: 0;
}

.submit-btn1.loading1 .btn-text1 {
    opacity: 0;
}

.submit-btn1.loading1 .btn-icon1 {
    opacity: 0;
    transform: translateY(-50%) translateX(20px);
}

.submit-btn1.loading1 .btn-loader1 {
    opacity: 1;
}

/* Form Footer */
.form-footer1 {
    margin-top: 1rem;
    text-align: center;
}

.privacy-text1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.privacy-text1 i {
    color: var(--accent);
    font-size: 0.9rem;
}

/* Benefits Column */
.benefits-column1 {
    display: flex;
    flex-direction: column;
}

.benefits-card1 {
    background-color: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    height: 100%;
}

.benefits-title1 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-special);
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.benefits-title1 i {
    color: var(--accent);
    font-size: 1.5rem;
}

.benefits-list1 {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list1 li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.benefits-list1 li:last-child {
    border-bottom: none;
}

.benefit-icon1 {
    width: 50px;
    height: 50px;
    background-color: rgba(166,124,82,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    font-size: 1.2rem;
}

.benefit-content1 h4 {
    font-family: var(--font-special);
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.benefit-content1 p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Testimonial Card */
.testimonial-card1 {
    background: linear-gradient(135deg, rgba(86,70,36,0.2), rgba(86,70,36,0.1));
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.testimonial-content1 {
    position: relative;
}

.testimonial-text1 {
    font-style: italic;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text1::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 2.5rem;
    color: rgba(166,124,82,0.3);
    font-family: serif;
    line-height: 1;
}

.testimonial-author1 {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar1 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
}

.author-avatar1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name1 {
    font-family: var(--font-special);
    font-weight: 600;
    color: #fff;
    font-size: 0.9rem;
}

.author-detail1 {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .form-container1 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .contact-form-section1 {
        padding: 4rem 0;
    }
    
    .section-title1 {
        font-size: 2rem;
    }
    
    .form-column1,
    .benefits-card1 {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-title1 {
        font-size: 1.8rem;
    }
    
    .title-deco1 {
        font-size: 0.9rem;
    }
    
    .section-subtitle1 {
        font-size: 1rem;
    }
    
    .floating-input1 input,
    .floating-select1 select,
    textarea1 {
        padding-left: 2.5rem;
    }
    
    .floating-input1 label,
    .floating-select1 label {
        left: 2.5rem;
    }
    
    .input-icon1,
    .textarea-icon1 {
        left: 0.8rem;
    }
    
    .benefits-list1 li {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .benefit-icon1 {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
/* ==================== */
/* BLOG SECTION STYLES */
/* ==================== */
.blog-section0 {
    position: relative;
    padding: 6rem 0;
    background-color: #f9f9f9;
    overflow: hidden;
}

.container0 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
.section-header0 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-title0 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.title-deco0 {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #e67e22;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.section-subtitle0 {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Grid Layout */
.blog-grid0 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

/* Blog Card */
.blog-card0 {
    position: relative;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    background-color: #fff;
}

.blog-section0.animated0 .blog-card0 {
    opacity: 1;
    transform: translateY(0);
}

.card-inner0 {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Image Styles */
.image-wrapper0 {
    position: relative;
    height: 220px;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.6s ease;
}

.blog-section0.animated0 .image-wrapper0 {
    transform: translateY(0);
}

.blog-image0 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-tag0 {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #e67e22;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.hover-overlay0 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(230, 126, 34, 0.2), rgba(230, 126, 34, 0.5));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

/* Card Content */
.card-content0 {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-date0 {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-bottom: 0.8rem;
}

.article-title0 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.article-excerpt0 {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.article-benefits0 {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.article-benefits0 h4 {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.article-benefits0 h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #e67e22;
}

.article-benefits0 ul {
    list-style: none;
}

.article-benefits0 li {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #34495e;
}

.article-benefits0 i {
    color: #e67e22;
    font-size: 0.8rem;
}

/* Botão Leia Mais */
.read-more-btn0 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    background-color: #e67e22;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    position: relative;
    overflow: hidden;
}

.read-more-btn0::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.read-more-btn0:hover::before {
    left: 100%;
}

.read-more-btn0:hover {
    background-color: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.read-more-btn0 i {
    transition: transform 0.3s ease;
}

.read-more-btn0:hover i {
    transform: translateX(5px);
}

/* Section Footer */
.section-footer0 {
    text-align: center;
    margin-top: 3rem;
}

.view-all-btn0 {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background-color: #2c3e50;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(44, 62, 80, 0.2);
    position: relative;
    overflow: hidden;
}

.view-all-btn0::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.view-all-btn0:hover::before {
    transform: translateX(100%);
}

.view-all-btn0:hover {
    background-color: #1a252f;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(44, 62, 80, 0.3);
}

.view-all-btn0 i {
    transition: all 0.4s ease;
}

.view-all-btn0:hover i {
    transform: rotate(-15deg);
}

/* Animations */
@keyframes pulse0 {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .blog-grid0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-section0 {
        padding: 4rem 0;
    }
    
    .blog-grid0 {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title0 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .section-title0 {
        font-size: 1.8rem;
    }
    
    .section-subtitle0 {
        font-size: 1rem;
    }
    
    .read-more-btn0,
    .view-all-btn0 {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Depoimentos Section */
.depoimentos-section {
    padding: 6rem 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.depoimentos-carrossel {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto 0;
    overflow: hidden;
}

.depoimentos-container {
    display: flex;
    transition: transform 0.5s ease;
    padding: 1rem 0;
}

.depoimento-item {
    flex: 0 0 calc(100% / 3);
    padding: 0 1rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.depoimento-img-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

.depoimento-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.depoimento-item:hover .depoimento-img {
    transform: scale(1.03);
}

.carrossel-controle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border: none;
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carrossel-controle:hover {
    background-color: var(--primary);
    color: var(--white);
}

.carrossel-controle.prev {
    left: 1rem;
}

.carrossel-controle.next {
    right: 1rem;
}

.carrossel-indicadores {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

.carrossel-indicadores .indicador {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carrossel-indicadores .indicador.active {
    background-color: var(--primary);
    transform: scale(1.2);
}
/* Depoimentos Section - Correções */
.depoimentos-carrossel {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 50px; /* Espaço para as setas */
}

.depoimentos-container {
    display: flex;
    transition: transform 0.5s ease;
    padding: 1rem 0;
    width: 100%;
}

.depoimento-item {
    flex: 0 0 calc(100% / 3);
    padding: 0 15px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.depoimento-img-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

/* Seta melhor posicionada */
.carrossel-controle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.carrossel-controle:hover {
    background-color: var(--primary);
    color: var(--white);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carrossel-controle.prev {
    left: 0;
}

.carrossel-controle.next {
    right: 0;
}

/* Responsivo */
@media (max-width: 992px) {
    .depoimento-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .depoimentos-carrossel {
        padding: 0 40px;
    }
    
    .depoimento-item {
        flex: 0 0 100%;
    }
    
    .carrossel-controle {
        width: 35px;
        height: 35px;
    }
}
/* Responsivo */
@media (max-width: 992px) {
    .depoimento-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .depoimentos-section {
        padding: 4rem 0;
    }
    
    .depoimento-item {
        flex: 0 0 100%;
    }
    
    .carrossel-controle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
/* mapa */
.mapa-section {
  position: relative;
  width: 100%;
  height: 300px; /* altura ajustável conforme necessidade */
  overflow: hidden;
}

.mapa-section iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.mapa-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #564624;
  opacity: 0.4; /* ajuste a opacidade conforme quiser o efeito */
  pointer-events: none; /* para que o overlay não bloqueie interação no mapa */
}
/* ==================== */
/* FOOTER STYLES */
/* ==================== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(166, 124, 82, 0.3);
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--white) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--white) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-main {
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

/* Footer Brand */
.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo svg {
    width: 200px;
    height: 60px;
}

.footer-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

/* Newsletter */
.footer-newsletter {
    margin-bottom: 2.5rem;
}

.newsletter-title {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.95rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(166, 124, 82, 0.2);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(105, 47, 2, 0.3);
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(166, 124, 82, 0.3);
}

/* Footer Columns */
.footer-column h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    color: var(--accent);
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    border-radius: 3px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.9rem;
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.footer-links a i {
    width: 20px;
    text-align: center;
    color: var(--accent);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent);
}

/* Contact Info */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-icon {
    color: var(--accent);
    margin-right: 1rem;
    margin-top: 0.2rem;
    min-width: 20px;
    font-size: 1.1rem;
}

.contact-item-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.contact-item-label {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.contact-item-content a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-content a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    color: var(--accent) !important;
    font-size: 0.9rem;
}

.map-link i {
    font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-certifications {
    display: flex;
    gap: 1.5rem;
}

.certification img {
    height: 50px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    border-radius: 4px;
}

.certification img:hover {
    opacity: 1;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-align: center;
    flex: 1;
}

.copyright strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom-links a i {
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-main {
        padding: 4rem 0 2rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-brand {
        padding-right: 0;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
        border-radius: 30px;
        height: auto;
        padding: 0.9rem;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .contact-icon {
        display: none;
    }
    
    .footer-bottom-content {
        flex-direction: column;
    }
    
    .footer-certifications {
        order: 1;
    }
    
    .copyright {
        order: 2;
    }
    
    .footer-bottom-links {
        order: 3;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-main {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .footer-certifications {
        flex-direction: column;
        align-items: center;
    }
}