:root {
            --primary: #0891b2;
            --primary-light: #22d3ee;
            --primary-dark: #0e7490;
            --primary-gradient: linear-gradient(135deg, #0891b2 0%, #22d3ee 50%, #06b6d4 100%);
            --secondary: #164e63;
            --accent: #f0fdfa;
            --white: #ffffff;
            --gray-50: #f8fafc;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-600: #475569;
            --gray-800: #1e293b;
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--gray-800);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: none;
            background: transparent;
        }

        .logo-icon img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-text span:first-child {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--secondary);
            line-height: 1.2;
        }

        .logo-text span:last-child {
            font-size: 0.7rem;
            color: var(--primary);
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--gray-600);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--primary-gradient);
            color: white !important;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .nav-cta::after {
            display: none !important;
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 3px;
            background: var(--secondary);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(135deg, var(--accent) 0%, var(--white) 50%, #e0f2fe 100%);
            overflow: hidden;
            padding-top: 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: var(--primary-gradient);
            border-radius: 50%;
            opacity: 0.08;
            animation: float 8s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 50%;
            height: 80%;
            background: linear-gradient(135deg, #22d3ee 0%, #0891b2 100%);
            border-radius: 50%;
            opacity: 0.05;
            animation: float 10s ease-in-out infinite reverse;
        }

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

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            animation: slideInLeft 1s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--primary);
            font-weight: 500;
            box-shadow: var(--shadow);
            margin-bottom: 1.5rem;
        }

        .hero-badge::before {
            content: '✨';
        }

        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.1;
            color: var(--secondary);
            margin-bottom: 1.5rem;
        }

        .hero h1 span {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 1.15rem;
            color: var(--gray-600);
            margin-bottom: 2rem;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--primary-gradient);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            box-shadow: var(--shadow-lg);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-xl);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: white;
            color: var(--primary);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border: 2px solid var(--primary-light);
        }

        .btn-secondary:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        .hero-image {
            position: relative;
            animation: slideInRight 1s ease-out;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-image img {
            width: 100%;
            max-width: 550px;
            border-radius: 30px;
            box-shadow: var(--shadow-xl);
        }

        .hero-stats {
            position: absolute;
            bottom: -20px;
            left: -30px;
            background: white;
            padding: 1.5rem 2rem;
            border-radius: 20px;
            box-shadow: var(--shadow-xl);
            display: flex;
            gap: 2rem;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--gray-600);
        }

        /* Services Section */
        .services {
            padding: 6rem 2rem;
            background: white;
        }

        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 4rem;
        }

        .section-subtitle {
            display: inline-block;
            background: var(--accent);
            color: var(--primary);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        .section-description {
            color: var(--gray-600);
            font-size: 1.05rem;
        }

        .services-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        /* Services Carousel */
        .services-carousel-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0 1rem;
        }

        .services-carousel {
            overflow: hidden;
            width: 100%;
            border-radius: 20px;
        }

        .services-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 1.5rem;
        }

        .service-card-new,
        a.service-card-new {
            min-width: calc(33.333% - 1rem);
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: all 0.4s ease;
            cursor: pointer;
            flex-shrink: 0;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .service-card-new:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .service-img {
            width: 100%;
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px 16px 0 0;
            margin: 12px;
            margin-bottom: 0;
            width: calc(100% - 24px);
            border-radius: 16px;
        }

        .service-img svg {
            width: 80px;
            height: 80px;
            opacity: 0.8;
        }

        .service-label {
            background: linear-gradient(135deg, #0891b2, #22d3ee);
            color: white;
            text-align: center;
            padding: 1rem 1.5rem;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin: 12px;
            border-radius: 12px;
        }

        .carousel-arrow {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: none;
            background: white;
            box-shadow: var(--shadow-lg);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .carousel-arrow:hover {
            background: var(--accent);
            transform: scale(1.1);
        }

        .carousel-arrow svg {
            width: 24px;
            height: 24px;
            fill: var(--secondary);
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary-light);
            opacity: 0.4;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            opacity: 1;
            background: var(--secondary);
            transform: scale(1.2);
        }

        .service-card {
            background: var(--gray-50);
            border-radius: 24px;
            padding: 2.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary-gradient);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            background: white;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow);
        }

        .service-icon svg {
            width: 35px;
            height: 35px;
            fill: white;
        }

        .service-card h3 {
            font-size: 1.35rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--gray-600);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* About Section */
        .about {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            max-width: 500px;
            border-radius: 30px;
            box-shadow: var(--shadow-xl);
        }

        .about-decoration {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 150px;
            height: 150px;
            background: var(--primary-gradient);
            border-radius: 30px;
            opacity: 0.2;
            z-index: -1;
        }

        .about-content h2 {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
        }

        .about-content h2 span {
            color: var(--primary);
        }

        .about-content p {
            color: var(--gray-600);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .about-feature-icon {
            width: 40px;
            height: 40px;
            background: var(--accent);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .about-feature-icon svg {
            width: 20px;
            height: 20px;
            fill: var(--primary);
        }

        .about-feature span {
            font-weight: 500;
            color: var(--gray-800);
            font-size: 0.95rem;
        }

        /* Specialties Section */
        .specialties {
            padding: 6rem 2rem;
            background: var(--secondary);
            position: relative;
            overflow: hidden;
        }

        .specialties::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2322d3ee' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .specialties .section-header {
            position: relative;
            z-index: 1;
        }

        .specialties .section-subtitle {
            background: rgba(34, 211, 238, 0.2);
            color: var(--primary-light);
        }

        .specialties .section-title {
            color: white;
        }

        .specialties .section-description {
            color: rgba(255, 255, 255, 0.8);
        }

        .specialties-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .specialty-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 3rem;
            text-align: center;
            transition: all 0.4s ease;
        }

        .specialty-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-10px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .specialty-card-bg {
            position: relative;
            background-size: cover !important;
            background-position: center !important;
            background-repeat: no-repeat !important;
            overflow: hidden;
            padding: 0;
        }

        .specialty-card-bg .specialty-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(8, 51, 68, 0.55) 0%, rgba(8, 51, 68, 0.85) 100%);
            border-radius: 24px;
            z-index: 1;
            transition: background 0.4s ease;
        }

        .specialty-card-bg:hover .specialty-card-overlay {
            background: linear-gradient(180deg, rgba(8, 51, 68, 0.45) 0%, rgba(8, 51, 68, 0.75) 100%);
        }

        .specialty-card-bg .specialty-card-content {
            position: relative;
            z-index: 2;
            padding: 3rem;
        }

        .specialty-card-bg:hover {
            background-color: transparent;
        }

        .specialty-card-bg.specialty-card-light-overlay .specialty-card-overlay {
            background: linear-gradient(180deg, rgba(8, 51, 68, 0.3) 0%, rgba(8, 51, 68, 0.65) 100%);
        }

        .specialty-card-bg.specialty-card-light-overlay:hover .specialty-card-overlay {
            background: linear-gradient(180deg, rgba(8, 51, 68, 0.2) 0%, rgba(8, 51, 68, 0.55) 100%);
        }

        .specialty-card-bg.specialty-card-light-overlay {
            background-size: cover !important;
            background-position: center !important;
            background-color: transparent;
        }

        .specialty-card-bg.specialty-card-light-overlay::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: inherit;
            background-size: cover;
            background-position: center;
            filter: brightness(1.8) contrast(1.1);
            border-radius: 24px;
            z-index: 0;
        }

        .specialty-icon {
            width: 90px;
            height: 90px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: 0 10px 40px -10px rgba(8, 145, 178, 0.5);
        }

        .specialty-icon svg {
            width: 45px;
            height: 45px;
            fill: white;
        }

        .specialty-card h3 {
            font-size: 1.5rem;
            color: white;
            margin-bottom: 1rem;
        }

        .specialty-card p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 2rem;
            background: white;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        .contact-info > p {
            color: var(--gray-600);
            margin-bottom: 2rem;
            font-size: 1.05rem;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--accent);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon svg {
            width: 24px;
            height: 24px;
            fill: var(--primary);
        }

        .contact-text h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            color: var(--secondary);
            margin-bottom: 0.25rem;
        }

        .contact-text p, .contact-text a {
            color: var(--gray-600);
            font-size: 0.95rem;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-text a:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: var(--primary-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }

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

        .social-link svg {
            width: 22px;
            height: 22px;
            fill: white;
        }

        .contact-map {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            height: 100%;
            min-height: 400px;
        }

        .contact-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* CTA Section */
        .cta {
            padding: 5rem 2rem;
            background: var(--primary-gradient);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta h2 {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 1rem;
        }

        .cta p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.15rem;
            margin-bottom: 2rem;
        }

        .cta .btn-primary {
            background: white;
            color: var(--primary);
        }

        .cta .btn-primary:hover {
            background: var(--gray-50);
        }

        /* Footer */
        footer {
            background: var(--secondary);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
        }

        .footer-brand .logo-text span:first-child {
            color: white;
        }

        .footer-brand .logo-text span:last-child {
            color: var(--primary-light);
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            margin-top: 1rem;
            font-size: 0.9rem;
            line-height: 1.7;
        }

        .footer-column h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            margin-bottom: 1.5rem;
            color: white;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 0.75rem;
        }

        .footer-column a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: var(--primary-light);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
        }

        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        @keyframes pulse {
            0% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
            50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6); }
            100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container,
            .about-container,
            .contact-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content {
                order: 1;
            }

            .hero-image {
                order: 0;
            }

            .hero-stats {
                position: relative;
                bottom: 0;
                left: 0;
                justify-content: center;
                margin-top: 2rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-description {
                margin: 0 auto 2rem;
            }

            .about-image {
                display: flex;
                justify-content: center;
            }

            .about-features {
                justify-content: center;
            }

            .footer-container {
                grid-template-columns: 1fr 1fr;
            }

            .specialties-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .service-card-new {
                min-width: calc(50% - 0.75rem);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 1rem;
                gap: 0;
                box-shadow: var(--shadow-lg);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                padding: 1rem;
                border-bottom: 1px solid var(--gray-100);
            }

            .mobile-menu-btn {
                display: flex;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .specialties-grid {
                grid-template-columns: 1fr;
            }

            .service-card-new {
                min-width: calc(100% - 0rem);
            }

            .carousel-arrow {
                width: 36px;
                height: 36px;
            }

            .carousel-arrow svg {
                width: 18px;
                height: 18px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero-stats {
                flex-direction: column;
                gap: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .about-features {
                grid-template-columns: 1fr;
            }
        }

        /* Hero Carousel */
        .hero-carousel {
            position: relative;
            width: 100%;
            max-width: 550px;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            aspect-ratio: 4/3;
        }
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }
        .hero-slide.active {
            opacity: 1;
        }
        /* Team Section */
        .team-section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-grid {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .team-card-horizontal {
            display: flex;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: transform 0.3s ease;
            height: 320px;
        }

        .team-card-horizontal:hover {
            transform: translateY(-5px);
        }

        .team-img-horizontal {
            width: 40%;
            min-width: 280px;
            overflow: hidden;
            background: var(--gray-100);
            flex-shrink: 0;
        }

        .team-img-horizontal img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        .team-info-horizontal {
            padding: 2rem 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            flex: 1;
        }

        .team-info-horizontal h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .team-info-horizontal .team-specialty {
            display: inline-block;
            color: var(--secondary);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .team-info-horizontal p {
            color: var(--gray-600);
            font-size: 0.92rem;
            line-height: 1.7;
            text-align: left;
        }

        /* Card invertida: texto izquierda, imagen derecha */
        .team-card-reversed {
            flex-direction: row;
        }

        @media (max-width: 768px) {
            .team-card-horizontal {
                flex-direction: column;
                height: auto;
            }

            .team-card-reversed {
                flex-direction: column;
            }

            .team-card-reversed .team-img-horizontal {
                order: -1;
            }

            .team-img-horizontal {
                width: 100%;
                min-width: unset;
                height: 280px;
            }
        }
