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

        :root {
            --primary: #1e293b;           /* Slightly warmer dark blue-gray */
            --accent: #0d9488;            /* Warmer teal (shifted from cyan) */
            --accent-light: #f0fdfa;      /* Warm mint background */
            --accent-dark: #0f766e;       /* Deep teal */
            --text-primary: #1e293b;      /* Matches primary */
            --text-secondary: #64748b;    /* Unchanged - good neutral */
            --text-light: #94a3b8;        /* Unchanged - good neutral */
            --bg-white: #ffffff;          /* Unchanged */
            --bg-light: #f8fafc;          /* Unchanged */
            --bg-gradient: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%); /* Warm mint gradient */
            --border: #e2e8f0;            /* Unchanged */
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
            --shadow-md: 0 6px 12px rgba(0,0,0,0.08);
            --shadow-lg: 0 12px 30px rgba(0,0,0,0.12);
            --shadow-xl: 0 25px 50px rgba(0,0,0,0.15);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--bg-white);
            overflow-x: hidden;
        }

        /* Typography */
        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.1;
            color: var(--text-primary);
        }

        h2 {
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 600;
            letter-spacing: -0.015em;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: -0.01em;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

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

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px) saturate(180%);
            -webkit-backdrop-filter: blur(12px) saturate(180%);
            border-bottom: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.99);
            box-shadow: var(--shadow-md);
        }

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

        .logo {
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            color: var(--text-primary);
        }

        .logo span {
            color: var(--accent);
            font-weight: 700;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        .nav-menu a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 400;
            transition: color 0.2s ease;
            position: relative;
        }

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

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

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

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .menu-toggle span {
            display: block;
            width: 24px;
            height: 1.5px;
            background: var(--text-primary);
            margin: 5px 0;
            transition: 0.3s;
        }

        /* Hero Section with Animation */
        .hero {
            margin-top: 80px;
            min-height: calc(100vh - 80px);
            display: flex;
            align-items: center;
            padding: 4rem 2rem;
            background: linear-gradient(to bottom, var(--bg-white), var(--bg-light));
            position: relative;
            overflow: hidden;
        }

        /* Floating shapes animation */
        .hero::before,
        .hero::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            opacity: 0.03;
            animation: float 20s infinite ease-in-out;
        }

        .hero::before {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            animation-delay: 0s;
        }

        .hero::after {
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
            bottom: -300px;
            left: -300px;
            animation-delay: -10s;
        }

        /* Additional floating elements */
        .hero-bg-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.02;
            background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
            animation: float 25s infinite ease-in-out;
        }

        .hero-bg-shape:nth-child(1) {
            width: 400px;
            height: 400px;
            top: 20%;
            left: 10%;
            animation-delay: -5s;
        }

        .hero-bg-shape:nth-child(2) {
            width: 300px;
            height: 300px;
            bottom: 20%;
            right: 20%;
            animation-delay: -15s;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg) scale(1);
            }
            25% {
                transform: translate(30px, -30px) rotate(90deg) scale(1.1);
            }
            50% {
                transform: translate(-20px, 20px) rotate(180deg) scale(0.9);
            }
            75% {
                transform: translate(-30px, -20px) rotate(270deg) scale(1.05);
            }
        }

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

        .hero-content {
            animation: fadeInUp 0.8s ease 0.1s both;
        }

        .hero-badge {
            display: inline-block;
            padding: 0.625rem 1.25rem;
            background: var(--accent-light);
            color: var(--accent);
            font-size: 0.875rem;
            font-weight: 600;
            border-radius: 100px;
            margin-bottom: 2rem;
            border: 2px solid rgba(8, 145, 178, 0.1);
            box-shadow: 0 2px 8px rgba(8, 145, 178, 0.1);
        }

        .hero h1 {
            margin-bottom: 1.5rem;
        }

        .hero-description {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            font-weight: 300;
        }

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

        .btn {
            padding: 0.875rem 1.75rem;
            border-radius: var(--radius-md);
            font-size: 0.9375rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            letter-spacing: 0.01em;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary {
            background: var(--accent);
            color: white;
            box-shadow: 0 2px 8px rgba(8, 145, 178, 0.2);
        }

        .btn-primary:hover {
            background: var(--accent-dark);
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(13, 148, 136, 0.4);
        }

        .btn-primary:active {
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: var(--bg-white);
            color: var(--text-primary);
            border: 2px solid var(--border);
        }

        .btn-secondary:hover {
            background: var(--accent-light);
            border-color: var(--accent);
            color: var(--accent);
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(13, 148, 136, 0.15);
        }

        .btn-secondary:active {
            transform: translateY(-2px);
        }

        .hero-image {
            position: relative;
            animation: slideInRight 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
        }

        .image-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .image-placeholder {
            aspect-ratio: 1;
            background: var(--bg-light);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 0.875rem;
            border: 1px solid var(--border);
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-sm);
        }

        .image-placeholder:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: var(--shadow-md);
        }

        .image-placeholder.large {
            grid-column: span 2;
            aspect-ratio: 2/1;
        }

        /* Professional Medical Clinic Hero Layout */
        .hero-image-wrapper {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            max-width: 480px;
            margin: 0 auto;
        }

        .hero-doctor-card {
            position: relative;
            background: var(--bg-white);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            border: 3px solid var(--bg-white);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-doctor-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.12);
        }

        .doctor-portrait {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            object-position: center 20%;
        }

        .doctor-badge {
            position: absolute;
            bottom: 1.25rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(12px);
            padding: 0.75rem 1.5rem;
            border-radius: 100px;
            box-shadow: var(--shadow-lg);
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--accent);
            border: 2px solid var(--accent-light);
            white-space: nowrap;
        }

        .doctor-badge svg {
            flex-shrink: 0;
        }

        .hero-facility-card {
            position: relative;
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 2px solid var(--border);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-facility-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-xl);
            border-color: var(--accent-light);
        }

        .facility-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            aspect-ratio: 16 / 10;
        }

        .facility-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(12px);
            padding: 0.625rem 1rem;
            border-radius: 100px;
            box-shadow: var(--shadow-md);
            font-size: 0.8125rem;
            font-weight: 500;
            color: var(--text-primary);
            border: 1px solid var(--border);
        }

        .facility-badge svg {
            flex-shrink: 0;
            color: var(--accent);
        }

        /* Section Styles */
        section {
            padding: 6rem 2rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeInUp 0.8s ease;
        }

        .section-subtitle {
            color: var(--accent);
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 1rem;
            display: inline-block;
            padding: 0.5rem 1rem;
            background: var(--accent-light);
            border-radius: 100px;
        }

        /* Location Section - Clean & Simple */
        .location-section {
            background: var(--bg-light);
        }

        .location-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .location-main-card {
            background: var(--bg-white);
            padding: 3rem;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-xl);
            border: 1px solid var(--border);
            text-align: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .location-main-card:hover {
            box-shadow: 0 30px 60px rgba(0,0,0,0.12);
            transform: translateY(-4px);
        }

        .location-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: var(--accent-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
        }

        .location-main-card h3 {
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .location-address {
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--border);
        }

        .location-address p {
            font-size: 1.125rem;
            color: var(--text-secondary);
            margin: 0.25rem 0;
        }

        .location-doctor-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2.5rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--border);
        }

        .doctor-info-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            color: var(--text-secondary);
            font-size: 1rem;
        }

        .doctor-info-item svg {
            flex-shrink: 0;
            color: var(--accent);
        }

        .location-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .location-actions .btn {
            flex: 1;
            min-width: 200px;
        }

        /* Updated Contact Section */
        .contact-section {
            background: linear-gradient(135deg, var(--accent-light) 0%, var(--bg-white) 100%);
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
            opacity: 0.3;
            border-radius: 50%;
        }

        .contact-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-main {
            background: var(--bg-white);
            border-radius: var(--radius-xl);
            padding: 3rem;
            box-shadow: var(--shadow-xl);
            margin-bottom: 2rem;
            border: 1px solid var(--border);
        }

        .contact-cta-group {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .contact-cta-card {
            padding: 1.75rem;
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            border: 2px solid var(--border);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .contact-cta-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .contact-cta-card:hover::before {
            left: 100%;
        }

        .contact-cta-card:hover {
            border-color: var(--accent);
            background: var(--bg-light);
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .cta-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 1rem;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .contact-cta-card h4 {
            font-size: 1.1rem;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .contact-cta-card p {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .contact-cta-card .number {
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--accent);
        }

        .contact-hours {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .hours-card {
            padding: 1.5rem;
            background: var(--bg-white);
            border-radius: var(--radius-md);
            border: 2px solid var(--border);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
        }

        .hours-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--accent-dark));
            transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .hours-card:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }

        .hours-card:hover::after {
            width: 100%;
        }

        .hours-card h5 {
            font-size: 0.875rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.75rem;
        }

        .hours-card p {
            color: var(--text-primary);
            font-weight: 500;
        }

        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 999;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.15) rotate(10deg);
            box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
            animation: glow 0.6s ease-in-out;
        }

        .whatsapp-float:active {
            transform: scale(1.1) rotate(0deg);
        }

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

        /* Reviews Section */
        .reviews-section {
            background: var(--bg-light);
        }

        .reviews-track {
            display: flex;
            gap: 1.5rem;
            overflow-x: auto;
            padding: 1rem 0 2rem;
            scroll-snap-type: x mandatory;
            scrollbar-width: thin;
            scrollbar-color: var(--border) transparent;
        }

        .reviews-track::-webkit-scrollbar {
            height: 6px;
        }

        .reviews-track::-webkit-scrollbar-track {
            background: transparent;
        }

        .reviews-track::-webkit-scrollbar-thumb {
            background: var(--border);
            border-radius: 100px;
        }

        .review-card {
            min-width: 380px;
            background: var(--bg-white);
            padding: 2rem;
            border-radius: var(--radius-lg);
            border: 2px solid var(--border);
            scroll-snap-align: start;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: var(--shadow-sm);
            position: relative;
        }

        .review-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--accent-dark), transparent);
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

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

        .review-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-8px);
            border-color: var(--accent-light);
        }

        .review-header {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            align-items: start;
        }

        .review-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--accent-light);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
            flex-shrink: 0;
        }

        .review-meta h4 {
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 0.25rem;
        }

        .review-rating {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 0.25rem;
        }

        .star {
            color: #fbbf24;
            font-size: 0.875rem;
        }

        .review-date {
            font-size: 0.875rem;
            color: var(--text-light);
        }

        .review-text {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .google-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 100px;
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin-top: 2rem;
        }

        /* 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: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        .footer-links h4 {
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.5);
        }

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

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.95rem;
            line-height: 2;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.875rem;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

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

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

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

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }
            100% {
                background-position: 1000px 0;
            }
        }

        @keyframes glow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(13, 148, 136, 0.3);
            }
            50% {
                box-shadow: 0 0 30px rgba(13, 148, 136, 0.5);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                border-bottom: 1px solid var(--border);
                flex-direction: column;
                padding: 1rem 2rem;
                gap: 1rem;
            }

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

            .menu-toggle {
                display: block;
            }

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

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

            .location-main-card {
                padding: 2rem 1.5rem;
            }

            .location-actions {
                flex-direction: column;
            }

            .location-actions .btn {
                min-width: 100%;
            }

            .contact-cta-group {
                grid-template-columns: 1fr;
            }

            .contact-hours {
                grid-template-columns: 1fr;
            }

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

            .review-card {
                min-width: 320px;
            }
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Accessibility - Focus indicators for keyboard navigation */
        *:focus-visible {
            outline: 3px solid var(--accent);
            outline-offset: 2px;
            border-radius: 2px;
        }

        .btn:focus-visible {
            outline: 3px solid var(--accent-dark);
            outline-offset: 2px;
            box-shadow: 0 0 0 6px rgba(91, 130, 138, 0.15);
        }

        .nav-menu a:focus-visible {
            outline: 3px solid var(--accent);
            outline-offset: 4px;
        }

        .menu-toggle:focus-visible {
            outline: 3px solid var(--accent);
            outline-offset: 4px;
            background: var(--accent-light);
        }

        .whatsapp-float:focus-visible {
            outline: 3px solid white;
            outline-offset: 3px;
            transform: scale(1.1);
        }

        /* Skip to main content link for keyboard users */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--accent);
            color: white;
            padding: 8px 16px;
            text-decoration: none;
            border-radius: 0 0 4px 0;
            font-weight: 500;
            z-index: 1001;
            transition: top 0.3s;
        }

        .skip-link:focus {
            top: 0;
            outline: 3px solid white;
            outline-offset: 2px;
        }

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    /* Stop floating background animations */
    .hero::before,
    .hero::after,
    .hero-bg-shape {
        animation: none !important;
    }
}
