        :root {
            --primary: #14213d;
            --secondary: #1d3557;
            --accent: #c8a977;
            --accent-light: #e6d5ba;
            --text: #333;
            --light: #f5f5f5;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        @keyframes slideIn {
            from { transform: translateX(-100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes fadeScale {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        @keyframes ripple {
            0% { transform: scale(1); opacity: 0.4; }
            100% { transform: scale(2); opacity: 0; }
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Cormorant Garamond', Georgia, serif;
        }

        .scroll-reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: var(--transition);
        }

        .scroll-reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

               header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            padding: 0.5rem 0;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            color: var(--primary);
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: translateX(5px);
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: rotate(-10deg);
            transition: all 0.4s ease;
        }

        .logo:hover .logo-icon {
            transform: rotate(0deg);
        }

        .logo-icon i {
            color: var(--accent);
            font-size: 1.5rem;
            transition: all 0.4s ease;
        }

        .logo:hover .logo-icon i {
            transform: scale(1.1);
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-link {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent);
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary);
            background: rgba(200, 169, 119, 0.1);
        }

        .nav-link:hover::after {
            width: 80%;
        }

        .nav-link i {
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }

        .nav-link:hover i {
            transform: translateY(-2px);
        }

        .cta-button {
            background: var(--accent);
            color: white !important;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            border: 2px solid var(--accent);
        }

        .cta-button:hover {
            background: transparent;
            color: var(--accent) !important;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(200, 169, 119, 0.3);
        }

        .mobile-menu {
            display: none;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            align-items: center;
            justify-content: center;
            background: rgba(200, 169, 119, 0.1);
            transition: all 0.3s ease;
        }

        .mobile-menu i {
            font-size: 1.2rem;
            color: var(--primary);
            transition: transform 0.3s ease;
        }

        .mobile-menu:hover {
            background: rgba(200, 169, 119, 0.2);
        }

        .mobile-menu.active i {
            transform: rotate(90deg);
        }

        @media (max-width: 992px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                padding: 1rem;
                flex-direction: column;
                gap: 1rem;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu {
                display: flex;
            }

            .nav-link, .cta-button {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .logo-text {
                font-size: 1.2rem;
            }

            .logo-icon {
                width: 35px;
                height: 35px;
            }

            .nav-container {
                padding: 1rem;
            }
        }
            .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, 
                rgba(20, 33, 61, 0.9), 
                rgba(20, 33, 61, 0.8)),
                url('/api/placeholder/1920/1080') center/cover fixed;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding-top: 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('/api/placeholder/100/100') repeat;
            opacity: 0.03;
            animation: backgroundScroll 30s linear infinite;
        }

        @keyframes backgroundScroll {
            from { transform: translateY(0); }
            to { transform: translateY(-100%); }
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            color: white;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            opacity: 0;
            animation: fadeInUp 1s ease 0.3s forwards;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 2.5rem;
            background: var(--accent);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.4s ease;
            opacity: 0;
            animation: fadeInUp 1s ease 0.6s forwards;
            border: 2px solid var(--accent);
        }

        .hero-cta:hover {
            background: transparent;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .hero-cta i {
            transition: transform 0.3s ease;
        }

        .hero-cta:hover i {
            transform: translateX(5px);
        }

        .hero-badges {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
        }

        .badge {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .badge:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.2);
        }

        .badge i {
            font-size: 1.5rem;
            color: var(--accent);
        }

        .badge span {
            font-weight: 600;
            font-size: 1.1rem;
        }

        .hero-scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 2rem;
            cursor: pointer;
            animation: bounce 2s infinite;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .hero-scroll-indicator:hover {
            opacity: 1;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-20px) translateX(-50%);
            }
            60% {
                transform: translateY(-10px) translateX(-50%);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3.5rem;
            }

            .hero-subtitle {
                font-size: 1.3rem;
            }

            .hero-badges {
                flex-wrap: wrap;
                gap: 1rem;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.8rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .badge {
                padding: 0.8rem 1.2rem;
            }

            .badge i {
                font-size: 1.2rem;
            }

            .badge span {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.2rem;
            }

            .hero-badges {
                flex-direction: column;
                align-items: center;
            }

            .badge {
                width: 100%;
                justify-content: center;
            }
        }
.services {
            padding: 8rem 2rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 4rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--accent);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            cursor: pointer;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .service-card:hover::before {
            opacity: 0.95;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--accent);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            position: relative;
            transition: all 0.4s ease;
            transform: rotate(-10deg);
        }

        .service-card:hover .service-icon {
            transform: rotate(0) scale(1.1);
            background: white;
        }

        .service-icon i {
            font-size: 2rem;
            color: var(--primary);
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon i {
            color: var(--accent);
        }

        .service-card h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
        }

        .service-card:hover h3 {
            color: white;
            transform: translateY(-5px);
        }

        .service-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
            position: relative;
            z-index: 2;
        }

        .service-card li {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            color: var(--text);
            transition: all 0.4s ease;
        }

        .service-card:hover li {
            color: white;
            transform: translateX(10px);
        }

        .service-card li i {
            color: var(--accent);
            font-size: 0.9rem;
            transition: all 0.4s ease;
        }

        .service-card:hover li i {
            color: var(--accent-light);
        }

        .service-hover {
            position: absolute;
            bottom: 2.5rem;
            left: 2.5rem;
            right: 2.5rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
            z-index: 2;
        }

        .service-card:hover .service-hover {
            opacity: 1;
            transform: translateY(0);
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.8rem 1.5rem;
            background: var(--accent);
            border-radius: 30px;
            transition: all 0.3s ease;
        }

        .service-link:hover {
            background: white;
            color: var(--accent);
            transform: translateX(5px);
        }

        /* Animation pour l'apparition au scroll */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scroll-reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }

            .services-grid {
                gap: 1.5rem;
            }

            .service-card {
                padding: 2rem;
            }
        }

        @media (max-width: 480px) {
            .services {
                padding: 4rem 1rem;
            }

            .service-icon {
                width: 60px;
                height: 60px;
            }
        }
      /* Styles pour la section contact */
        .contact {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 6rem 2rem;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact h2 {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 3rem;
            position: relative;
        }

        .contact h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 3rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .contact-info {
            background: var(--primary);
            padding: 3rem;
            color: white;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-card {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            transition: transform 0.3s ease;
        }

        .contact-card:hover {
            transform: translateX(10px);
            background: rgba(255, 255, 255, 0.15);
        }

        .contact-card i {
            font-size: 2rem;
            color: var(--accent);
        }

        .contact-card h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--accent);
        }

        .contact-card p {
            font-size: 1rem;
            opacity: 0.9;
        }

        .contact-form {
            padding: 3rem;
            display: grid;
            gap: 1.5rem;
        }

        .form-group {
            position: relative;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem 1rem 1rem 3rem;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group i {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary);
            opacity: 0.5;
            transition: all 0.3s ease;
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(200, 169, 119, 0.2);
            outline: none;
        }

        .form-group input:focus + i,
        .form-group textarea:focus + i {
            color: var(--accent);
            opacity: 1;
        }

        .submit-btn {
            background: var(--accent);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Styles pour le footer */
        footer {
            background: var(--primary);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
        }

        .footer-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-logo {
            max-width: 150px;
            height: auto;
            margin-bottom: 1rem;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-links h4,
        .footer-social h4 {
            color: var(--accent);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            opacity: 0.8;
        }

        .footer-links a:hover {
            opacity: 1;
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            opacity: 0.8;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .footer-info {
                align-items: center;
            }

            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .contact-grid {
                margin: 0 -2rem;
                border-radius: 0;
            }
        }
                /* Section Expertise */
        .expertise {
            padding: 8rem 2rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .expertise-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .expertise-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .expertise-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .expertise-icon i {
            font-size: 2.5rem;
            color: white;
            transition: all 0.4s ease;
        }

        .expertise-card:hover .expertise-icon {
            transform: rotate(360deg);
            background: var(--primary);
        }

        .expertise-title {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .expertise-text {
            color: var(--text);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .expertise-stats {
            display: flex;
            justify-content: space-around;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #eee;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text);
        }

        /* Section Équipe */
        .team {
            padding: 8rem 2rem;
            background: white;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .team-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .team-image {
            position: relative;
            height: 400px;
            overflow: hidden;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .team-card:hover .team-image img {
            transform: scale(1.1);
        }

        .team-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 2rem;
            color: white;
            transform: translateY(100px);
            transition: all 0.4s ease;
        }

        .team-card:hover .team-info {
            transform: translateY(0);
        }

        .team-name {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .team-position {
            color: var(--accent);
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .team-description {
            font-size: 0.9rem;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease 0.2s;
        }

        .team-card:hover .team-description {
            opacity: 1;
            transform: translateY(0);
        }

        .team-social {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            width: 35px;
            height: 35px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .expertise-grid,
            .team-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .team-image {
                height: 350px;
            }
        }
/* ====== Reset basique ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
}

/* ====== Section Titles ====== */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

/* ====== Testimonials ====== */
.testimonials-container {
    display: grid;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
}
.testimonial-quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}
.testimonial-quote i {
    color: #3498db;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonial-author img {
    border-radius: 50%;
}

/* ====== FAQ ====== */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}
.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.faq-question {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    background: #ecf0f1;
    font-weight: bold;
}
.faq-answer {
    padding: 1rem;
    display: none;
}
.faq-item.active .faq-answer {
    display: block;
}

/* ====== Blog ====== */
.blog-container {
    display: grid;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
}
.blog-image {
    position: relative;
}
.blog-image img {
    width: 100%;
    display: block;
}
.blog-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #3498db;
    color: white;
    padding: 0.5rem;
    text-align: center;
    border-radius: 6px;
}
.blog-content {
    padding: 1.5rem;
}
.blog-link {
    display: inline-block;
    margin-top: 1rem;
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}
.blog-more {
    text-align: center;
    margin-top: 2rem;
}
.blog-more-link {
    background: #3498db;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}
.blog-more-link:hover {
    background: #2980b9;
}

/* ====== Resources ====== */
.resources-container {
    padding: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.resources-intro {
    text-align: center;
    margin-bottom: 2rem;
}
.resources-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.resource-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.resource-icon i {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}
.resource-download {
    display: inline-block;
    margin-top: 1rem;
    color: #e74c3c;
    font-weight: bold;
    text-decoration: none;
}

/* ====== Client Area ====== */
.client-area-container {
    background: #ecf0f1;
    padding: 2rem;
}
.client-area-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.client-area-info {
    flex: 1 1 400px;
}
.client-area-features {
    margin: 1rem 0;
    list-style: none;
}
.client-area-features li {
    margin-bottom: 0.5rem;
}
.client-area-buttons {
    margin-top: 1.5rem;
}
.client-area-btn {
    display: inline-block;
    margin-right: 1rem;
    background: #3498db;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s;
}
.client-area-btn:hover {
    background: #2980b9;
}
.client-area-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* ====== Location ====== */
.location-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.location-map, .location-info {
    flex: 1 1 500px;
}
.map-placeholder {
    width: 100%;
    border-radius: 10px;
}
.location-details {
    margin-top: 2rem;
}
.location-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.location-directions {
    display: inline-block;
    margin-top: 1rem;
    background: #2ecc71;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
}
.location-directions:hover {
    background: #27ae60;
}

/* ====== Scroll Reveal Animation ====== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
    .client-area-content, .location-container {
        flex-direction: column;
    }
}
