:root {
            /* Professional healthcare color palette */
            --teal-primary: #30a598;
            --teal-deep: #138192;
            --teal-medium: #93deaa;
             --teal-light: #dbf1ba;
             --blue-dark:#1a4565;
            --blue: #30b7dd;
            --blue-light:#50bbda;
            --orange:#e58530;
            --warm-beige: #f5f1e9;
            --light-gray: #f8f8f8;
            --medium-gray: #e0e0e0;
            --text-dark: #333333;
            --text-medium: #666666;
            --text-light: #999999;
            --white: #ffffff;
            
            /* Typography */
            --font-sans: 'Open Sans', sans-serif;
            --font-serif: 'Merriweather', serif;
            
            /* Spacing */
            --section-padding: 3rem 1.25rem;
            --container-max: 1200px;
        }

        
 ::-webkit-scrollbar {
     width: 5px;
     cursor: grab;
 }

 ::-webkit-scrollbar-thumb {
     background: var(--teal-light);
     border-radius: 20px
 }

 /* Loader */
 .loader-container {
     text-align: center;
     position: absolute;
     top: 0;
     left: 0;
     z-index: 1010;
     background: var(--cream);
     height: 100svh;
     width: 100svw;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
 }

 .loader {
     width: 80px;
     height: 80px;
     position: relative;
     margin: 0 auto 20px;
 }

 .loader-circle {
     width: 100%;
     height: 100%;
     border: 4px solid transparent;
     border-top: 4px solid var(--teal-primary);
     border-radius: 50%;
     animation: spin 1s linear infinite;
 }

 .loader-inner {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 60%;
     height: 60%;
     border: 4px solid transparent;
     border-bottom: 4px solid var(--teal-light);
     border-radius: 50%;
     animation: spin-reverse 0.8s linear infinite;
 }

 .loader-dot {
     position: absolute;
     top: 10%;
     left: 50%;
     transform: translateX(-50%);
     width: 8px;
     height: 8px;
     background-color: var(--teal-medium);
     border-radius: 50%;
     animation: pulse 1.5s ease-in-out infinite;
 }

 @keyframes spin {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 @keyframes spin-reverse {
     0% {
         transform: translate(-50%, -50%) rotate(0deg);
     }

     100% {
         transform: translate(-50%, -50%) rotate(-360deg);
     }
 }

 @keyframes pulse {

     0%,
     100% {
         transform: translateX(-50%) scale(1);
         opacity: 1;
     }

     50% {
         transform: translateX(-50%) scale(1.5);
         opacity: 0.7;
     }
 }


 .loading-text p{
     display: inline-block;
     animation: bounce 1.5s infinite;
 }

 .loading-text p:nth-child(2) {
     animation-delay: 0.1s;
 }

 .loading-text p:nth-child(3) {
     animation-delay: 0.2s;
 }

 .loading-text p:nth-child(4) {
     animation-delay: 0.3s;
 }

 .loading-text p:nth-child(5) {
     animation-delay: 0.4s;
 }

 .loading-text p:nth-child(6) {
     animation-delay: 0.5s;
 }

 .loading-text p:nth-child(7) {
     animation-delay: 0.6s;
 }

 @keyframes bounce {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-5px);
     }
 }

 @keyframes spin {
     to {
         transform: rotate(360deg)
     }
 }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        
        body {
            font-family: var(--font-sans);
            color: var(--text-dark);
            line-height: 1.7;
            background: var(--white);
            overflow-x: hidden;
        }

         .main-container {
     display: none;
     animation: fadeIn 1s linear 1;
 }

 @keyframes fadeIn {
     from {
         opacity: 0
     }
 }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        /* Utility Bar */
        .utility-bar {
            background: var(--teal-deep);
            color: var(--white);
            padding: 0.75rem 1.25rem;
            font-size: 0.875rem;
        }
        
        .utility-content {
            max-width: var(--container-max);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1.5rem;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.75rem;
            /* background:red */
        }
        
        .utility-link {
            color: var(--white);
            text-decoration: none;
            transition: opacity 0.2s;
            font-size: 1rem;
        }
        
        .utility-link:hover {
            opacity: 0.8;
        }
        
        .utility-phone {
            font-weight: 600;
        }
        
        /* Language Switcher */
        .lang-switcher {
            display: flex;
            gap: 0.5rem;
        }
        
        .lang-switcher a {
            padding: 0.25rem 0.5rem;
            border-radius: 3px;
            font-size: 0.8rem;
            font-weight: 600;
            text-decoration: none;
        }
        
        .lang-switcher a.active {
            background: var(--blue);
        }
        
        /* Main Header */
        header {
            background:var(--teal-light);
            border-bottom: 1px solid var(--medium-gray);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        nav {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 1rem 1.25rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            
        }
        
        .logo {
            font-family: var(--font-serif);
            font-size: clamp(1.35rem, 4vw, 1.75rem);
            font-weight: 700;
            color: var(--teal-primary);
            text-decoration: none;
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        
        .logo-sub {
            font-size: 0.5em;
            font-weight: 400;
            color: var(--text-medium);
            margin-top: 0.25rem;
        }
        
        /* Desktop Navigation */
        .nav-menu {
            display: none;
            list-style: none;
            gap: 0.5rem;           
        }
        
        .nav-menu > li {
            position: relative;          
        }

        
        
        .nav-menu > li > a {
            display: block;
            padding: 0.75rem 1.25rem;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: color 0.3s;
            white-space: nowrap;
        }
        
        .nav-menu > li > a:hover {
            color: var(--teal-primary);
        }
        
        /* Dropdown Menus */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            min-width: 250px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            border-top: 3px solid var(--teal-primary);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s;
            z-index: 100;
            list-style-type: none;
           
        }
        
        .nav-menu > li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown li {
            border-bottom: 1px solid var(--medium-gray);
             
        }
        
        .dropdown li:last-child {
            border-bottom: none;
        }
        
        .dropdown a {
            display: block;
            padding: 0.875rem 1.5rem;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.9rem;
            transition: background 0.2s, padding-left 0.2s;
        }
        
        .dropdown a:hover {
            background: var(--light-gray);
            padding-left: 2rem;
            color: var(--teal-primary);
        }
        
        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: flex;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }
        
        .mobile-toggle span {
            width: 28px;
            height: 3px;
            background: var(--teal-primary);
            border-radius: 2px;
            transition: 0.3s;
        }
        
        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }
        
        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        
        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 400px;
            height: 100vh;
            background: var(--white);
            box-shadow: -5px 0 20px rgba(0,0,0,0.2);
            overflow-y: auto;
            transition: right 0.4s;
            z-index: 2000;
            padding: 5rem 0 2rem;
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0,0,0,0.5);
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
            z-index: 1500;
        }
        
        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-menu-list {
            list-style: none;
        }
        
        .mobile-menu-list > li {
            border-bottom: 1px solid var(--medium-gray);
        }
        
        .mobile-menu-list > li > a {
            display: block;
            padding: 1rem 1.5rem;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
        }
        
        .mobile-submenu {
            list-style: none;
            background: var(--light-gray);
            display: none;
        }
        
        .mobile-submenu.show {
            display: block;
        }
        
        .mobile-submenu a {
            display: block;
            padding: 0.75rem 1.5rem 0.75rem 2.5rem;
            color: var(--text-medium);
            text-decoration: none;
            font-size: 0.9rem;
        }
        
        .submenu-toggle {
            float: right;
            padding: 0 1rem;
            cursor: pointer;
            user-select: none;
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            color: var(--white);
            padding: 3rem 1.25rem;
            text-align: center;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .hero-carousel {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }
        
        .hero-slide.active {
            opacity: 1;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(44,95,122,0.25) 0%, rgba(30,69,85,0.80) 100%);
            z-index: 2;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 3;
        }
        
        .hero h1 {
            font-family: var(--font-serif);
            font-size: 68px;
            font-size: clamp(2rem, 7vw, 3.5rem);
            margin-bottom: 1.25rem;
            font-weight: 700;
            line-height: 1.2;
         
        }

        .hero h1 span{
             font-family: var(--font-sans);
            font-size: 48px;
            font-size: clamp(1.5rem, 6vw, 2rem);
            color:var(--blue)
        }
        
        .hero-subtitle {
            font-size: clamp(1rem, 3vw, 1.3rem);
            margin-bottom: 2rem;
            opacity: 0.95;
            line-height: 1.6;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            flex-direction: column;
        }
        
        /* Buttons */
        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            text-align: center;
        }
        
        .btn-primary {
            background: var(--blue);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background: var(--orange);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(217, 125, 78, 0.3);
        }
        
        .btn-secondary {
            background: var(--white);
            color: var(--blue);
            border: 2px solid var(--white);
        }
        
        .btn-secondary:hover {
            background: var(--blue);
            color: var(--white);
        }
        
        /* Trust Bar */
        .trust-bar {
            background: var(--teal-light);
            padding: 1.5rem 1.25rem;
            border-top: 1px solid var(--medium-gray);
            border-bottom: 1px solid var(--medium-gray);
        }
        
        .trust-grid {
            max-width: var(--container-max);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            text-align: center;
        }
        
        .trust-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }
        
        .trust-icon {
            font-size: 2rem;
        }
        
        .trust-text {
            font-size: 0.85rem;
            color: var(--text-dark);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* Section Styles */
        .section {
            padding: var(--section-padding);
        }
        
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        
        .section-title {
            font-family: var(--font-serif);
            font-size: clamp(1.75rem, 5vw, 2.75rem);
            color: var(--teal-deep);
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.1rem);
            color: var(--text-medium);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Services  */
        #services{
background: linear-gradient(-135deg, var(--blue-light) 0%, var(--white) 100%);
        }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .service-card {
            background: var(--white);
            border: 1px solid var(--medium-gray);
            padding: 2rem 1.5rem;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        .service-card:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border-color: var(--teal-primary);
            transform: translateY(-5px);
        }
        
        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .service-card h3 {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            color: var(--teal-primary);
            margin-bottom: 1rem;
        }
        
        .service-card p {
            color: var(--text-medium);
            line-height: 1.7;
        }
        
        /* About Section */
        .about {
            background: linear-gradient(135deg, var(--teal-light) 0%, var(--white) 100%);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
        }
        
        .about-image {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            max-height: 100%;
            position: relative;
        }
        
        .about-carousel {
            position: relative;
            width: 100%;
            height: 730px;
        }
        
        .about-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }
        
        .about-slide.active {
            opacity: 1;
        }
        
        .about-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .about-text {
            order: 2;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            background: var(--white);
            border-radius: 6px;
            border-left: 3px solid var(--teal-medium);
        }
        
        .feature-icon {
            font-size: 1.5rem;
            color: var(--teal-primary);
            flex-shrink: 0;
        }
        
        .feature-text h4 {
            color: var(--teal-deep);
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }
        
        .feature-text p {
            font-size: 0.9rem;
            margin: 0;
            color: var(--text-medium);
        }
        
        /* Why Choose Us */
        #why-bird{
            position:relative;
            transform:rotateY(180deg);

        }
        .why-choose {
            background: linear-gradient(-135deg, var(--blue-light) 0%, var(--white) 100%);
        }
        
        .why-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 2.5rem;
        }
        
        .why-card {
            background: var(--light-gray);
            padding: 2rem 1.5rem;
            border-radius: 6px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid var(--medium-gray);
        }
        
        .why-card:hover {
            background: var(--warm-beige);
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        
        .why-number {
            font-size: 3rem;
            font-weight: 700;
            font-family: var(--font-serif);
            color: var(--teal-primary);
            line-height: 1;
            margin-bottom: 1rem;
            opacity: 0.9;
        }
        
        .why-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: var(--teal-deep);
        }
        
        .why-card p {
            color: var(--text-medium);
        }
        
        /* Contact Section */
        .contact {
            background: var(--white);
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            margin-top: 2.5rem;
        }
        
        .contact-info h3 {
            font-family: var(--font-serif);
            font-size: 1.75rem;
            margin-bottom: 1rem;
            color: var(--teal-deep);
        }
        
        .contact-info > p {
            margin-bottom: 2rem;
            color: var(--text-medium);
        }
        
        .info-items {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.25rem;
            background: var(--light-gray);
            border-radius: 6px;
            transition: all 0.3s;
        }
        
        .info-item:hover {
            background: var(--teal-light);
            transform: translateX(5px);
        }
        
        .info-icon {
            font-size: 1.75rem;
            flex-shrink: 0;
        }
        
        .info-text h4 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
            color: var(--teal-deep);
        }
        
        .info-text p {
            font-size: 0.95rem;
            margin: 0;
            color: var(--text-medium);
        }
        
        .info-text a {
            color: var(--teal-primary);
            text-decoration: none;
        }
        
        .info-text a:hover {
            text-decoration: underline;
        }
        
        .emergency-notice {
            background: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 1.25rem;
            border-radius: 4px;
            font-size: 0.9rem;
            color: #856404;
            line-height: 1.6;
        }
        
        .emergency-notice strong {
            display: block;
            margin-bottom: 0.5rem;
        }
        
        /* Contact Form */
        .contact-form-container {
            background: var(--light-gray);
            padding: 2rem 1.5rem;
            border-radius: 8px;
            border: 1px solid var(--medium-gray);
            transition:background 0.3s ease-in-out;
        }

        .contact-form-container:hover{
background:var(--teal-light)
        }
        
        .contact-form h3 {
            font-family: var(--font-serif);
            font-size: 1.75rem;
            margin-bottom: 0.5rem;
            color: var(--teal-deep);
        }
        
        .form-subtitle {
            color: var(--text-medium);
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            font-weight: 600;
            color: var(--teal-deep);
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 2px solid var(--medium-gray);
            border-radius: 4px;
            font-size: 1rem;
            font-family: var(--font-sans);
            color: var(--text-dark);
            background: var(--white);
            transition: all 0.3s;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--teal-primary);
            box-shadow: 0 0 0 3px rgba(44, 95, 122, 0.1);
        }
        
        .form-group textarea {
            resize: vertical;
            height: 60px;
            line-height: 1.6;
        }
        
        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 12px;
            padding-right: 2.5rem;
        }
        
        .form-privacy {
            background: #e8f4f8;
            padding: 1rem;
            border-radius: 4px;
            margin-bottom: 1.5rem;
            border-left: 3px solid var(--teal-primary);
        }
        
        .form-privacy p {
            margin: 0;
            color: var(--text-dark);
            font-size: 0.85rem;
            line-height: 1.5;
        }
        
        .btn-submit {
            width: 100%;
            padding: 1.125rem 2rem;
            font-size: 1.05rem;
        }
        
       
        
        /* FAQ Section */
        .faq {
            background: linear-gradient(135deg, var(--teal-light) 0%, var(--white) 100%);
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--white);
            margin-bottom: 1rem;
            border-radius: 6px;
            overflow: hidden;
            border: 1px solid var(--medium-gray);
            transition: all 0.3s;
        }
        
        .faq-item:hover {
            border-color: var(--teal-medium);
        }
        
        .faq-question {
            width: 100%;
            padding: 1.25rem 1.5rem;
            background: none;
            border: none;
            text-align: left;
            font-family: var(--font-serif);
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--teal-deep);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            transition: color 0.2s;
        }
        
        .faq-question:hover {
            color: var(--teal-primary);
        }
        
        .faq-icon {
            font-size: 1.5rem;
            color: var(--teal-primary);
            transition: transform 0.3s;
            flex-shrink: 0;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 1.5rem 1.5rem;
        }
        
        .faq-answer p {
            margin-top:1svh;
            color: var(--text-medium);
            font-size: 0.95rem;
            line-height: 1.7;
        }
        
        /* CTA Section */
        #cta-bird{
            position:relative;
            left:70%
        }
        .cta-section {
           background: linear-gradient(135deg, var(--blue-light) 0%, var(--white) 100%);
            text-align: center;
        }
        
        .cta-section h2 {
            font-family: var(--font-serif);
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            color: var(--teal-deep);
            margin-bottom: 1rem;
        }
        
        .cta-section p {
            font-size: clamp(1rem, 2.5vw, 1.1rem);
            color: var(--text-medium);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Footer */
        footer {
            background: var(--teal-deep);
            color: rgba(255,255,255,0.9);
            padding: 2.5rem 1.25rem 1.5rem;
        }
        
        .footer-grid {
            max-width: var(--container-max);
            margin: 0 auto 2rem;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .footer-section h4 {
            color: var(--white);
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s, padding-left 0.2s;
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: var(--blue);
            padding-left: 0.5rem;
        }
        
        .footer-bottom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.2);
            text-align: center;
            font-size: 0.875rem;
            color: rgba(255,255,255,0.7);
        }
        
        .footer-bottom a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
        }
        
        .footer-bottom a:hover {
            color: var(--blue);
        }
        
        /* Tablet Responsive (768px and up) */
        @media (min-width: 768px) {
            :root {
                --section-padding: 4.5rem 2rem;
            }
            
            .mobile-toggle {
                display: none;
            }
            
            .nav-menu {
                display: flex;
    
            }
            
            .hero {
                padding: 5rem 2rem;
                min-height: 68svh;
            }
            
            .hero-buttons {
                flex-direction: row;
            }
            
            .trust-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
            
            .about-content {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }
            
            .about-text {
                order: 0;
            }
            
            .why-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
            
            .contact-content {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }
            
            .info-items {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem;
            }
        }
        
        /* Desktop Responsive (1024px and up) */
        @media (min-width: 1024px) {
            :root {
                --section-padding: 6rem 2rem;
            }
            
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .why-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        /* Accessibility */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }
        
        a:focus,
        button:focus {
            outline: 2px solid var(--teal-primary);
            outline-offset: 2px;
        }
        
        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        
        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        
        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        
        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }
        
        /* Stagger animation delays */
        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }
        .stagger-4 { transition-delay: 0.4s; }
        .stagger-5 { transition-delay: 0.5s; }
        .stagger-6 { transition-delay: 0.6s; }
        
        /* Micro Interactions */
        .btn {
            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.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .btn:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .service-card {
            position: relative;
            overflow: hidden;
        }
        
        .service-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--teal-primary), var(--teal-medium));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .service-card:hover::after {
            transform: scaleX(1);
        }
        
        .why-card {
            position: relative;
            overflow: hidden;
        }
        
        .why-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgb(48, 165, 152, 0.25) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 1s ease;
        }
        
        .why-card:hover::before {
            transform: scale(1);
        }
        
        .info-item {
            position: relative;
        }
        
        .info-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 3px;
            background: var(--teal-primary);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }
        
        .info-item:hover::before {
            transform: scaleY(1);
        }
        
        .trust-item {
            transition: transform 0.3s ease;
        }
        
        .trust-item:hover {
            transform: translateY(-5px);
        }
        
        .footer-links a {
            position: relative;
        }
        
        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--blue);
            transition: width 0.3s ease;
        }
        
        .footer-links a:hover::after {
            width: 100%;
        }