

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
     --primary-navy: #003b6f;
     --secondary-blue: #0084d1;
     --accent-red: #e11b22;
     --white: #ffffff;
     --light-gray: #f4f4f4;
     --dark: #111827;
     --text-muted: #6b7280;
     --border: #e5e7eb;
     --shadow: 0 4px 24px rgba(0, 59, 111, 0.10);
     --shadow-lg: 0 8px 40px rgba(0, 59, 111, 0.16);
     --radius: 12px;
     --font-display: 'Poppins', sans-serif;
     --font-body: 'Open Sans', sans-serif;
 }

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

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: var(--font-body);
     color: var(--dark);
     background: var(--white);
     overflow-x: hidden;
 }

 img {
     max-width: 100%;
     display: block;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

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

 /* ─── EMERGENCY BAR ─── */
 .emergency-bar {
     background: var(--accent-red);
     color: var(--white);
     text-align: center;
     padding: 9px 20px;
     font-family: var(--font-display);
     font-size: 1rem;
     font-weight: 600;
     letter-spacing: .05em;
     position: relative;
     z-index: 1000;
 }

 .emergency-bar a {
     color: var(--white);
     text-decoration: underline;
 }

 .emergency-bar .pulse {
     display: inline-block;
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: #fff;
     margin-right: 8px;
     animation: pulse 1.4s infinite;
 }

 @keyframes pulse {

     0%,
     100% {
         opacity: 1;
         transform: scale(1)
     }

     50% {
         opacity: .5;
         transform: scale(1.3)
     }
 }

 /* ─── HEADER ─── */
 header {
     position: sticky;
     top: 0;
     z-index: 999;
     background: var(--white);
     box-shadow: 0 2px 16px rgba(0, 59, 111, 0.10);
     transition: box-shadow .3s;
 }

 .header-inner {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 12px 20px;
     max-width: 1200px;
     margin: 0 auto;
     gap: 16px;
 }

 .logo {
     display: flex;
     align-items: center;
     gap: 12px;
     flex-shrink: 0;
 }

 .logo img {
     height: 56px;
     width: auto;
     object-fit: contain;
 }

 .logo-text {
     line-height: 1.2;
 }

 .logo-text strong {
     font-family: var(--font-display);
     font-size: 1.3rem;
     font-weight: 800;
     color: var(--primary-navy);
     letter-spacing: .02em;
 }

 .logo-text span {
     font-size: .75rem;
     color: var(--accent-red);
     font-weight: 600;
     letter-spacing: .04em;
     text-transform: uppercase;
 }

 nav {
     display: flex;
     align-items: center;
     gap: 6px;
 }

 nav a {
     font-family: var(--font-body);
     font-size: .9rem;
     font-weight: 500;
     color: var(--primary-navy);
     padding: 7px 13px;
     border-radius: 6px;
     transition: background .2s, color .2s;
 }

 nav a:hover,
 nav a.active {
     background: var(--primary-navy);
     color: var(--white);
 }

 .header-ctas {
     display: flex;
     gap: 10px;
     align-items: center;
     flex-shrink: 0;
 }

 .btn {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 10px 20px;
     border-radius: 8px;
     font-family: var(--font-display);
     font-size: 1rem;
     font-weight: 700;
     letter-spacing: .04em;
     cursor: pointer;
     border: none;
     transition: transform .18s, box-shadow .18s, filter .18s;
     text-transform: uppercase;
 }

 .btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
 }

 .btn-red {
     background: var(--accent-red);
     color: var(--white);
 }

 .btn-green {
     background: #25D366;
     color: var(--white);
 }

 .btn-outline {
     background: transparent;
     border: 2px solid var(--primary-navy);
     color: var(--primary-navy);
 }

 .btn-outline:hover {
     background: var(--primary-navy);
     color: var(--white);
 }

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

 .btn-blue {
     background: var(--secondary-blue);
     color: var(--white);
 }

 .hamburger {
     display: none;
     background: none;
     border: none;
     cursor: pointer;
     padding: 6px;
 }

 .hamburger span {
     display: block;
     width: 25px;
     height: 3px;
     background: var(--primary-navy);
     margin: 5px 0;
     border-radius: 2px;
     transition: .3s;
 }

 /* ─── HERO SLIDER ─── */
 .hero {
     position: relative;
     overflow: hidden;
     height: 92vh;
     min-height: 560px;
     max-height: 900px;
 }

 .slider {
     position: relative;
     width: 100%;
     height: 100%;
 }

 .slide {
     position: absolute;
     inset: 0;
     opacity: 0;
     transition: opacity .9s ease;
     background-size: cover;
     background-position: center;
 }

 .slide.active {
     opacity: 1;
 }

 .slide::after {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(90deg, rgba(0, 21, 41, .75) 0%, rgba(0, 59, 111, .45) 50%, transparent 100%);
 }

 .slide-1 {
     background-image: url('../image/24-hour-ambulance-1408-768.png');
 }

 .slide-2 {
     background-image: url('../image/amit-ambulance-985-739.jpeg');
 }

 .slide-3 {
     background-image: url('../image/AC Ambulance Services.webp');
 }

 .slide-content {
     position: absolute;
     z-index: 2;
     top: 50%;
     left: 8%;
     transform: translateY(-50%);
     color: var(--white);
     max-width: 580px;
 }

 .slide-badge {
     display: inline-flex;
     align-items: center;
     gap: 7px;
     background: var(--accent-red);
     color: var(--white);
     font-family: var(--font-display);
     font-size: .9rem;
     font-weight: 700;
     padding: 5px 14px;
     border-radius: 4px;
     letter-spacing: .08em;
     text-transform: uppercase;
     margin-bottom: 16px;
     animation: fadeDown .6s ease both;
 }

 .slide-content h1 {
     font-family: var(--font-display);
     font-size: clamp(2.4rem, 5vw, 3.8rem);
     font-weight: 800;
     line-height: 1.1;
     letter-spacing: .01em;
     margin-bottom: 18px;
     text-shadow: 0 2px 10px rgba(0, 0, 0, .3);
     animation: fadeUp .7s .15s ease both;
 }

 .slide-content p {
     font-size: 1.1rem;
     opacity: .92;
     margin-bottom: 28px;
     line-height: 1.6;
     animation: fadeUp .7s .3s ease both;
 }

 .slide-btns {
     display: flex;
     gap: 14px;
     flex-wrap: wrap;
     animation: fadeUp .7s .45s ease both;
 }

 .slider-nav {
     position: absolute;
     bottom: 28px;
     left: 50%;
     transform: translateX(-50%);
     z-index: 10;
     display: flex;
     gap: 10px;
 }

 .slider-dot {
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: rgba(255, 255, 255, .45);
     cursor: pointer;
     border: 2px solid rgba(255, 255, 255, .6);
     transition: background .3s, transform .3s;
 }

 .slider-dot.active {
     background: var(--white);
     transform: scale(1.3);
 }

 .slider-arrow {
     position: absolute;
     top: 50%;
     z-index: 10;
     transform: translateY(-50%);
     background: rgba(255, 255, 255, .18);
     border: 2px solid rgba(255, 255, 255, .4);
     color: var(--white);
     width: 46px;
     height: 46px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     font-size: 1.1rem;
     transition: background .2s;
     backdrop-filter: blur(4px);
 }

 .slider-arrow:hover {
     background: var(--accent-red);
     border-color: var(--accent-red);
 }

 .slider-arrow.prev {
     left: 20px;
 }

 .slider-arrow.next {
     right: 20px;
 }

 @keyframes fadeUp {
     from {
         opacity: 0;
         transform: translateY(22px)
     }

     to {
         opacity: 1;
         transform: translateY(0)
     }
 }

 @keyframes fadeDown {
     from {
         opacity: 0;
         transform: translateY(-16px)
     }

     to {
         opacity: 1;
         transform: translateY(0)
     }
 }

 /* ─── BOOKING FORM ─── */
 .booking-strip {
     background: var(--primary-navy);
     padding: 40px 0;
 }

 .booking-strip .container {
     display: flex;
     gap: 32px;
     align-items: center;
     flex-wrap: wrap;
 }

 .booking-strip-title {
     flex-shrink: 0;
 }

 .booking-strip-title h2 {
     font-family: var(--font-display);
     font-size: 1.9rem;
     font-weight: 800;
     color: var(--white);
     line-height: 1.1;
 }

 .booking-strip-title span {
     color: var(--accent-red);
 }

 .booking-strip-title p {
     color: rgba(255, 255, 255, .7);
     font-size: .9rem;
     margin-top: 6px;
 }

 .booking-form {
     flex: 1;
     display: flex;
     gap: 10px;
     flex-wrap: wrap;
 }

 .booking-form input,
 .booking-form select {
     flex: 1 1 160px;
     padding: 13px 16px;
     border: 2px solid rgba(255, 255, 255, .2);
     border-radius: 8px;
     background: rgba(255, 255, 255, .1);
     color: var(--white);
     font-family: var(--font-body);
     font-size: .95rem;
     outline: none;
     transition: border .2s;
 }

 .booking-form input::placeholder {
     color: rgba(255, 255, 255, .6);
 }

 .booking-form select option {
     color: var(--dark);
     background: var(--white);
 }

 .booking-form input:focus,
 .booking-form select:focus {
     border-color: var(--secondary-blue);
 }

 .booking-form .btn {
     flex-shrink: 0;
     padding: 13px 26px;
     font-size: 1rem;
 }

 /* ─── SECTION STYLES ─── */
 section {
     padding: 20px 0;
 }

 .section-label {
     display: inline-block;
     font-family: var(--font-display);
     font-size: .85rem;
     font-weight: 700;
     letter-spacing: .14em;
     text-transform: uppercase;
     color: var(--accent-red);
     margin-bottom: 10px;
 }

 .section-title {
     font-family: var(--font-display);
     font-size: clamp(1.9rem, 3.5vw, 2.8rem);
     font-weight: 800;
     color: var(--primary-navy);
     line-height: 1.1;
     margin-bottom: 16px;
 }

 .section-sub {
     color: var(--text-muted);
     font-size: 1.05rem;
     line-height: 1.7;
     max-width: 640px;
 }

 .section-head {
     margin-bottom: 52px;
 }

 .section-head.center {
     text-align: center;
 }

 .section-head.center .section-sub {
     margin: 0 auto;
 }

 .divider {
     width: 56px;
     height: 4px;
     border-radius: 2px;
     background: linear-gradient(90deg, var(--accent-red), var(--secondary-blue));
     margin: 14px 0 20px;
 }

 .divider.center {
     margin-left: auto;
     margin-right: auto;
 }

 /* ─── STATS BAR ─── */
 .stats-bar {
     background: var(--light-gray);
     padding: 36px 0;
 }

 .stats-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
     text-align: center;
 }

 .stat-item {
     padding: 16px;
 }

 .stat-number {
     font-family: var(--font-display);
     font-size: 2.8rem;
     font-weight: 800;
     color: var(--primary-navy);
     line-height: 1;
 }

 .stat-number span {
     color: var(--accent-red);
 }

 .stat-label {
     font-size: .9rem;
     color: var(--text-muted);
     margin-top: 6px;
     font-weight: 500;
 }

 /* ─── ABOUT ─── */
 .about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
 }

 .about-img-wrap {
     position: relative;
 }

 .about-img-wrap img {
     border-radius: var(--radius);
     box-shadow: var(--shadow-lg);
     object-fit: cover;
     width: 100%;
     height: 440px;
 }

 .about-badge {
     position: absolute;
     bottom: -20px;
     right: -20px;
     background: var(--accent-red);
     color: var(--white);
     padding: 18px 24px;
     border-radius: var(--radius);
     text-align: center;
     box-shadow: var(--shadow);
 }

 .about-badge strong {
     font-family: var(--font-display);
     font-size: 2rem;
     font-weight: 800;
     display: block;
 }

 .about-badge span {
     font-size: .82rem;
     opacity: .9;
 }

 .about-points {
     list-style: none;
     margin: 28px 0 32px;
 }

 .about-points li {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     padding: 10px 0;
     border-bottom: 1px solid var(--border);
     font-size: .97rem;
     color: var(--dark);
 }

 .about-points li:last-child {
     border: none;
 }

 .about-points .icon {
     color: var(--accent-red);
     font-size: 1.1rem;
     margin-top: 2px;
     flex-shrink: 0;
 }

 .about-points strong {
     font-weight: 600;
 }

 /* ─── SERVICES ─── */
 .services {
     background: var(--light-gray);
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
     gap: 24px;
 }

 .service-card {
     background: var(--white);
     border-radius: var(--radius);
     overflow: hidden;
     box-shadow: var(--shadow);
     transition: transform .3s, box-shadow .3s;
     cursor: pointer;
 }

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

 .service-card:hover .service-img img {
     transform: scale(1.06);
 }

 .service-img {
     overflow: hidden;
     height: 180px;
     position: relative;
 }

 .service-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform .5s;
 }

 .service-tag {
     position: absolute;
     top: 12px;
     left: 12px;
     background: var(--accent-red);
     color: var(--white);
     font-family: var(--font-display);
     font-size: .75rem;
     font-weight: 700;
     padding: 3px 10px;
     border-radius: 4px;
     letter-spacing: .06em;
     text-transform: uppercase;
 }

 .service-body {
     padding: 20px;
 }

 .service-body h3 {
     font-family: var(--font-display);
     font-size: 1.15rem;
     font-weight: 700;
     color: var(--primary-navy);
     margin-bottom: 8px;
 }

 .service-body p {
     font-size: .88rem;
     color: var(--text-muted);
     line-height: 1.6;
 }

 .service-icon {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 38px;
     height: 38px;
     background: rgba(0, 59, 111, .08);
     border-radius: 8px;
     color: var(--primary-navy);
     font-size: 1.1rem;
     margin-bottom: 10px;
 }

 .services-cta {
     text-align: center;
     margin-top: 42px;
 }

 /* ─── WHY US ─── */
 .why-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
     gap: 24px;
 }

 .why-card {
     background: var(--white);
     border-radius: var(--radius);
     padding: 32px 24px;
     box-shadow: var(--shadow);
     text-align: center;
     border-top: 4px solid transparent;
     transition: border-color .3s, transform .3s;
 }

 .why-card:hover {
     border-color: var(--accent-red);
     transform: translateY(-6px);
 }

 .why-icon {
     width: 64px;
     height: 64px;
     background: linear-gradient(135deg, var(--primary-navy), var(--secondary-blue));
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 16px;
     color: var(--white);
     font-size: 1.6rem;
 }

 .why-card h3 {
     font-family: var(--font-display);
     font-size: 1.1rem;
     font-weight: 700;
     color: var(--primary-navy);
     margin-bottom: 8px;
 }

 .why-card p {
     font-size: .88rem;
     color: var(--text-muted);
     line-height: 1.6;
 }

 /* ─── TESTIMONIALS ─── */
 .testimonials {
     background: var(--primary-navy);
 }

 .testimonials .section-title {
     color: var(--white);
 }

 .testimonials .section-sub {
     color: rgba(255, 255, 255, .7);
 }

 .testimonials .section-label {
     color: #fbbf24;
 }

 .testi-slider {
     position: relative;
     overflow: hidden;
 }

 .testi-track {
     display: flex;
     transition: transform .5s ease;
 }

 .testi-card {
     min-width: 100%;
     padding: 0 20px;
 }

 .testi-card-inner {
     background: rgba(255, 255, 255, .08);
     border: 1px solid rgba(255, 255, 255, .14);
     border-radius: var(--radius);
     padding: 36px;
     max-width: 700px;
     margin: 0 auto;
     position: relative;
 }

 .testi-quote {
     font-size: 4rem;
     line-height: 1;
     color: var(--accent-red);
     position: absolute;
     top: 16px;
     left: 28px;
     font-family: Georgia, serif;
 }

 .testi-text {
     font-size: 1.1rem;
     color: rgba(255, 255, 255, .92);
     line-height: 1.8;
     margin-bottom: 24px;
     padding-top: 20px;
 }

 .testi-stars {
     color: #fbbf24;
     font-size: 1.1rem;
     margin-bottom: 16px;
 }

 .testi-author {
     display: flex;
     align-items: center;
     gap: 14px;
 }

 .testi-avatar {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--secondary-blue), var(--accent-red));
     display: flex;
     align-items: center;
     justify-content: center;
     font-family: var(--font-display);
     font-size: 1.3rem;
     font-weight: 800;
     color: var(--white);
     flex-shrink: 0;
 }

 .testi-name {
     font-family: var(--font-display);
     font-size: 1rem;
     font-weight: 700;
     color: var(--white);
 }

 .testi-role {
     font-size: .82rem;
     color: rgba(255, 255, 255, .55);
 }

 .testi-nav {
     display: flex;
     justify-content: center;
     gap: 10px;
     margin-top: 32px;
 }

 .testi-dot {
     width: 9px;
     height: 9px;
     border-radius: 50%;
     background: rgba(255, 255, 255, .3);
     cursor: pointer;
     transition: background .3s;
     border: none;
 }

 .testi-dot.active {
     background: var(--white);
 }

 /* ─── GALLERY ─── */
 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 12px;
 }

 .gallery-item {
     position: relative;
     overflow: hidden;
     border-radius: 10px;
     cursor: pointer;
     aspect-ratio: 1 / 1;
 }

 .gallery-item:nth-child(1) {
     grid-row: unset;
 }

 .gallery-item:nth-child(5) {
     grid-column: unset;
 }

 .gallery-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform .5s;
 }

 .gallery-item:hover img {
     transform: scale(1.08);
 }

 .gallery-overlay {
     position: absolute;
     inset: 0;
     background: rgba(0, 59, 111, .55);
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: opacity .3s;
 }

 .gallery-item:hover .gallery-overlay {
     opacity: 1;
 }

 .gallery-overlay i {
     color: var(--accent-red);
     font-size: 1.8rem;
     margin-right: 8px;
 }

 .overlay-text {
     display: flex;
     align-items: center;
     gap: 8px;
     font-weight: 800;
     font-size: 1.3rem;
     letter-spacing: 0.08em;
     color: var(--white);
     text-transform: uppercase;
     text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
 }

 /* Lightbox */
 .lightbox {
     display: none;
     position: fixed;
     inset: 0;
     z-index: 9999;
     background: rgba(0, 0, 0, .9);
     align-items: center;
     justify-content: center;
 }

 .lightbox.open {
     display: flex;
 }

 .lightbox img {
     max-width: 90vw;
     max-height: 88vh;
     border-radius: 10px;
     box-shadow: 0 8px 40px rgba(0, 0, 0, .4);
 }

 .lightbox-close {
     position: absolute;
     top: 20px;
     right: 24px;
     color: var(--white);
     font-size: 2rem;
     cursor: pointer;
     background: none;
     border: none;
 }

 .lightbox-prev,
 .lightbox-next {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(255, 255, 255, .1);
     border: 2px solid rgba(255, 255, 255, .3);
     color: var(--white);
     font-size: 1.4rem;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: background .2s;
 }

 .lightbox-prev:hover,
 .lightbox-next:hover {
     background: var(--accent-red);
     border-color: var(--accent-red);
 }

 .lightbox-prev {
     left: 20px;
 }

 .lightbox-next {
     right: 20px;
 }

 /* ─── CONTACT ─── */
 .contact {
     background: var(--light-gray);
 }

 .contact-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 48px;
     align-items: start;
 }

 .contact-map {
     border-radius: var(--radius);
     overflow: hidden;
     box-shadow: var(--shadow);
 }

 .contact-map iframe {
     width: 100%;
     height: 380px;
     border: none;
     display: block;
 }

 .contact-info-card {
     background: var(--white);
     border-radius: var(--radius);
     padding: 36px;
     box-shadow: var(--shadow);
 }

 .contact-info-card h3 {
     font-family: var(--font-display);
     font-size: 1.5rem;
     font-weight: 800;
     color: var(--primary-navy);
     margin-bottom: 24px;
 }

 .contact-item {
     display: flex;
     align-items: flex-start;
     gap: 14px;
     padding: 14px 0;
     border-bottom: 1px solid var(--border);
 }

 .contact-item:last-child {
     border: none;
 }

 .contact-item .icon {
     width: 42px;
     height: 42px;
     border-radius: 10px;
     flex-shrink: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.1rem;
     color: var(--white);
 }

 .contact-item .icon.red {
     background: var(--accent-red);
 }

 .contact-item .icon.navy {
     background: var(--primary-navy);
 }

 .contact-item .icon.green {
     background: #25D366;
 }

 .contact-item-text strong {
     font-size: .8rem;
     color: var(--text-muted);
     text-transform: uppercase;
     letter-spacing: .06em;
     display: block;
     margin-bottom: 2px;
 }

 .contact-item-text span {
     font-size: 1rem;
     font-weight: 600;
     color: var(--dark);
 }

 .contact-cta {
     margin-top: 28px;
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
 }

 .contact-cta .btn {
     flex: 1;
     justify-content: center;
     font-size: .95rem;
 }

 /* ─── FOOTER ─── */
 footer {
     background: #001e3a;
     color: rgba(255, 255, 255, .8);
     padding: 64px 0 0;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: 1.6fr 1fr 1.4fr 1fr;
     gap: 40px;
     margin-bottom: 48px;
 }

 .footer-brand .logo {
     margin-bottom: 16px;
 }

 .footer-brand .logo img {
     height: 52px;
 }

 .footer-brand .logo-text strong {
     color: var(--white);
 }

 .footer-brand p {
     font-size: .88rem;
     line-height: 1.7;
     color: rgba(255, 255, 255, .6);
     margin-bottom: 20px;
 }

 .footer-social {
     display: flex;
     gap: 10px;
 }

 .footer-social a {
     width: 36px;
     height: 36px;
     border-radius: 8px;
     background: rgba(255, 255, 255, .08);
     display: flex;
     align-items: center;
     justify-content: center;
     color: rgba(255, 255, 255, .7);
     font-size: .95rem;
     transition: background .2s, color .2s;
 }

 .footer-social a:hover {
     background: var(--accent-red);
     color: var(--white);
 }

 .footer-col h4 {
     font-family: var(--font-display);
     font-size: 1.05rem;
     font-weight: 700;
     color: var(--white);
     letter-spacing: .06em;
     text-transform: uppercase;
     margin-bottom: 20px;
     padding-bottom: 10px;
     border-bottom: 2px solid rgba(255, 255, 255, .08);
 }

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

 .footer-links li {
     margin-bottom: 9px;
 }

 .footer-links a {
     font-size: .88rem;
     color: rgba(255, 255, 255, .6);
     transition: color .2s;
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .footer-links a::before {
     content: '›';
     color: var(--accent-red);
     font-size: 1rem;
 }

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

 .footer-contact-item {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     margin-bottom: 14px;
     font-size: .88rem;
     color: rgba(255, 255, 255, .65);
 }

 .footer-contact-item i {
     color: var(--accent-red);
     margin-top: 3px;
     flex-shrink: 0;
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, .08);
     padding: 18px 0;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 10px;
 }

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

 /* ─── FLOATING BUTTONS ─── */
 .float-wa {
     position: fixed;
     bottom: 80px;
     right: 22px;
     z-index: 999;
     width: 58px;
     height: 58px;
     border-radius: 50%;
     background: #25D366;
     color: var(--white);
     font-size: 1.6rem;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
     animation: floatBounce 2.5s ease-in-out infinite;
     transition: transform .2s;
 }

 .float-wa:hover {
     transform: scale(1.12);
 }

 .float-call {
     position: fixed;
     bottom: 22px;
     right: 22px;
     z-index: 999;
     width: 58px;
     height: 58px;
     border-radius: 50%;
     background: var(--accent-red);
     color: var(--white);
     font-size: 1.4rem;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 6px 24px rgba(225, 27, 34, .4);
     animation: floatBounce 2.5s .5s ease-in-out infinite;
 }

 .float-call:hover {
     transform: scale(1.12);
 }

 @keyframes floatBounce {

     0%,
     100% {
         transform: translateY(0)
     }

     50% {
         transform: translateY(-7px)
     }
 }

 .scroll-top {
     position: fixed;
     bottom: 22px;
     left: 22px;
     z-index: 999;
     width: 44px;
     height: 44px;
     border-radius: 10px;
     background: var(--primary-navy);
     color: var(--white);
     font-size: 1rem;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     border: none;
     opacity: 0;
     pointer-events: none;
     transition: opacity .3s, transform .2s;
     box-shadow: var(--shadow);
 }

 .scroll-top.visible {
     opacity: 1;
     pointer-events: all;
 }

 .scroll-top:hover {
     transform: translateY(-3px);
 }

 /* ─── MOBILE NAV ─── */
 .mobile-nav {
     display: none;
     position: fixed;
     inset: 0;
     z-index: 9998;
     background: var(--white);
     padding: 80px 24px 32px;
     flex-direction: column;
     gap: 4px;
 }

 .mobile-nav.open {
     display: flex;
 }

 .mobile-nav a {
     font-family: var(--font-body);
     font-size: 1.2rem;
     font-weight: 600;
     color: var(--primary-navy);
     padding: 14px 0;
     border-bottom: 1px solid var(--border);
 }

 .mobile-nav .btn {
     margin-top: 16px;
     justify-content: center;
 }

 .mobile-nav-close {
     position: absolute;
     top: 18px;
     right: 22px;
     background: none;
     border: none;
     font-size: 1.6rem;
     cursor: pointer;
     color: var(--dark);
 }

 /* ─── RESPONSIVE ─── */
 @media (max-width: 1024px) {
     .footer-grid {
         grid-template-columns: 1fr 1fr;
     }

     .about-grid {
         gap: 36px;
     }
 }

 @media (max-width: 768px) {

     nav,
     .header-ctas {
         display: none;
     }

     .hamburger {
         display: block;
     }

     .hero {
         height: 78vh;
         min-height: 480px;
     }

     .slide-content {
         left: 5%;
         right: 5%;
         max-width: 100%;
     }

     .slide-content h1 {
         font-size: 2rem;
     }

     .slide-btns .btn {
         padding: 10px 16px;
         font-size: .9rem;
     }

     .booking-strip .container {
         flex-direction: column;
         gap: 20px;
     }

     .booking-form {
         width: 100%;
     }

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

     .about-img-wrap img {
         height: 300px;
     }

     .about-badge {
         bottom: -14px;
         right: 12px;
     }

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

     .gallery-grid {
         grid-template-columns: 1fr 1fr;
         grid-auto-rows: 160px;
     }

     .gallery-item:nth-child(1) {
         grid-row: span 1;
     }

     .gallery-item:nth-child(5) {
         grid-column: span 1;
     }

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

     .footer-grid {
         grid-template-columns: 1fr;
         gap: 28px;
     }

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

     section {
         padding: 56px 0;
     }
 }

 @media (max-width: 480px) {
     .stats-grid {
         grid-template-columns: 1fr 1fr;
     }

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

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

 /* ─── ANIMATIONS ─── */
 .reveal {
     opacity: 0;
     transform: translateY(28px);
     transition: opacity .6s ease, transform .6s ease;
 }

 .reveal.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .reveal-delay-1 {
     transition-delay: .1s;
 }

 .reveal-delay-2 {
     transition-delay: .2s;
 }

 .reveal-delay-3 {
     transition-delay: .3s;
 }

 /* ─── CTA SECTION ─── */
 .cta-section {
     background: linear-gradient(135deg, var(--primary-navy) 0%, #005a9e 100%);
     padding: 72px 0;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .cta-section::before {
     content: '';
     position: absolute;
     inset: 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='%23ffffff' fill-opacity='0.03'%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");
 }

 .cta-section h2 {
     font-family: var(--font-display);
     font-size: clamp(2rem, 4vw, 3rem);
     font-weight: 800;
     color: var(--white);
     margin-bottom: 12px;
     position: relative;
 }

 .cta-section p {
     color: rgba(255, 255, 255, .75);
     font-size: 1.1rem;
     margin-bottom: 36px;
     position: relative;
 }

 .cta-btns {
     display: flex;
     gap: 16px;
     justify-content: center;
     flex-wrap: wrap;
     position: relative;
 }

 .cta-phone {
     font-family: var(--font-display);
     font-size: 2rem;
     font-weight: 800;
     color: var(--white);
     margin-bottom: 28px;
     display: block;
     position: relative;
 }

 .cta-phone a {
     color: #fbbf24;
 }


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

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: var(--font-body);
     color: var(--dark);
     background: var(--white);
     overflow-x: hidden;
 }

 img {
     max-width: 100%;
     display: block;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

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

 /* ─── EMERGENCY BAR ─── */
 .emergency-bar {
     background: var(--accent-red);
     color: var(--white);
     text-align: center;
     padding: 9px 20px;
     font-family: var(--font-display);
     font-size: 1rem;
     font-weight: 600;
     letter-spacing: .05em;
     position: relative;
     z-index: 1000;
 }

 .emergency-bar a {
     color: var(--white);
     text-decoration: underline;
 }

 .emergency-bar .pulse {
     display: inline-block;
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: #fff;
     margin-right: 8px;
     animation: pulse 1.4s infinite;
 }

 @keyframes pulse {

     0%,
     100% {
         opacity: 1;
         transform: scale(1)
     }

     50% {
         opacity: .5;
         transform: scale(1.3)
     }
 }

 /* ─── HEADER ─── */
 header {
     position: sticky;
     top: 0;
     z-index: 999;
     background: var(--white);
     box-shadow: 0 2px 16px rgba(0, 59, 111, 0.10);
 }

 .header-inner {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 12px 20px;
     max-width: 1200px;
     margin: 0 auto;
     gap: 16px;
 }

 .logo {
     display: flex;
     align-items: center;
     gap: 12px;
     flex-shrink: 0;
 }

 .logo img {
     height: 56px;
     width: auto;
     object-fit: contain;
 }

 .logo-text {
     line-height: 1.2;
 }

 .logo-text strong {
     font-family: var(--font-display);
     font-size: 1.3rem;
     font-weight: 800;
     color: var(--primary-navy);
     letter-spacing: .02em;
 }

 .logo-text span {
     font-size: .75rem;
     color: var(--accent-red);
     font-weight: 600;
     letter-spacing: .04em;
     text-transform: uppercase;
 }

 nav {
     display: flex;
     align-items: center;
     gap: 6px;
 }

 nav a {
     font-family: var(--font-body);
     font-size: .9rem;
     font-weight: 500;
     color: var(--primary-navy);
     padding: 7px 13px;
     border-radius: 6px;
     transition: background .2s, color .2s;
 }

 nav a:hover,
 nav a.active {
     background: var(--primary-navy);
     color: var(--white);
 }

 .header-ctas {
     display: flex;
     gap: 10px;
     align-items: center;
     flex-shrink: 0;
 }

 .btn {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 10px 20px;
     border-radius: 8px;
     font-family: var(--font-display);
     font-size: 1rem;
     font-weight: 700;
     letter-spacing: .04em;
     cursor: pointer;
     border: none;
     transition: transform .18s, box-shadow .18s;
     text-transform: uppercase;
 }

 .btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
 }

 .btn-red {
     background: var(--accent-red);
     color: var(--white);
 }

 .btn-green {
     background: #25D366;
     color: var(--white);
 }

 .btn-outline {
     background: transparent;
     border: 2px solid var(--primary-navy);
     color: var(--primary-navy);
 }

 .btn-outline:hover {
     background: var(--primary-navy);
     color: var(--white);
 }

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

 .btn-blue {
     background: var(--secondary-blue);
     color: var(--white);
 }

 .hamburger {
     display: none;
     background: none;
     border: none;
     cursor: pointer;
     padding: 6px;
 }

 .hamburger span {
     display: block;
     width: 25px;
     height: 3px;
     background: var(--primary-navy);
     margin: 5px 0;
     border-radius: 2px;
 }

 /* ─── PAGE HERO ─── */
 .page-hero {
     background: linear-gradient(135deg, var(--primary-navy) 0%, #005a9e 60%, #0069b3 100%);
     padding: 80px 0 72px;
     position: relative;
     overflow: hidden;
 }

 .page-hero::before {
     content: '';
     position: absolute;
     inset: 0;
     background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M44 44v-4h-4v4h-4v4h4v4h4v-4h4v-4h-4zM44 14V10h-4v4h-4v4h4v4h4v-4h4v-4h-4zM14 44v-4h-4v4H6v4h4v4h4v-4h4v-4h-4z'/%3E%3C/g%3E%3C/svg%3E");
 }

 .page-hero-inner {
     position: relative;
     z-index: 2;
     text-align: center;
 }

 .page-hero .badge {
     display: inline-flex;
     align-items: center;
     gap: 7px;
     background: var(--accent-red);
     color: var(--white);
     font-family: var(--font-display);
     font-size: .9rem;
     font-weight: 700;
     padding: 5px 16px;
     border-radius: 4px;
     letter-spacing: .08em;
     text-transform: uppercase;
     margin-bottom: 18px;
 }

 .page-hero h1 {
     font-family: var(--font-display);
     font-size: clamp(2.4rem, 5vw, 3.8rem);
     font-weight: 800;
     color: var(--white);
     line-height: 1.1;
     margin-bottom: 16px;
 }

 .page-hero p {
     color: rgba(255, 255, 255, .8);
     font-size: 1.1rem;
     max-width: 600px;
     margin: 0 auto 32px;
     line-height: 1.7;
 }

 .breadcrumb {
     display: flex;
     justify-content: center;
     gap: 8px;
     align-items: center;
     font-size: .88rem;
     color: rgba(255, 255, 255, .6);
 }

 .breadcrumb a {
     color: rgba(255, 255, 255, .7);
     transition: color .2s;
 }

 .breadcrumb a:hover {
     color: var(--white);
 }

 .breadcrumb span {
     color: rgba(255, 255, 255, .4);
 }

 .page-hero-btns {
     display: flex;
     gap: 14px;
     justify-content: center;
     flex-wrap: wrap;
     margin-bottom: 24px;
 }

 /* ─── SECTION STYLES ─── */
 .section-label {
     display: inline-block;
     font-family: var(--font-display);
     font-size: .85rem;
     font-weight: 700;
     letter-spacing: .14em;
     text-transform: uppercase;
     color: var(--accent-red);
     margin-bottom: 10px;
 }

 .section-title {
     font-family: var(--font-display);
     font-size: clamp(1.9rem, 3.5vw, 2.8rem);
     font-weight: 800;
     color: var(--primary-navy);
     line-height: 1.1;
     margin-bottom: 16px;
 }

 .section-sub {
     color: var(--text-muted);
     font-size: 1.05rem;
     line-height: 1.7;
     max-width: 640px;
 }

 .section-head {
     margin-bottom: 52px;
 }

 .section-head.center {
     text-align: center;
 }

 .section-head.center .section-sub {
     margin: 0 auto;
 }

 .divider {
     width: 56px;
     height: 4px;
     border-radius: 2px;
     background: linear-gradient(90deg, var(--accent-red), var(--secondary-blue));
     margin: 14px 0 20px;
 }

 .divider.center {
     margin-left: auto;
     margin-right: auto;
 }

 /* ─── SERVICE CATEGORY TABS ─── */
 .filter-bar {
     background: var(--white);
     padding: 28px 0;
     border-bottom: 2px solid var(--border);
     position: sticky;
     top: 73px;
     z-index: 98;
 }

 .filter-tabs {
     display: flex;
     gap: 10px;
     flex-wrap: wrap;
     justify-content: center;
 }

 .filter-tab {
     font-family: var(--font-display);
     font-size: .9rem;
     font-weight: 700;
     letter-spacing: .04em;
     text-transform: uppercase;
     padding: 9px 20px;
     border-radius: 8px;
     border: 2px solid var(--border);
     background: var(--white);
     color: var(--text-muted);
     cursor: pointer;
     transition: all .22s;
 }

 .filter-tab:hover {
     border-color: var(--secondary-blue);
     color: var(--secondary-blue);
 }

 .filter-tab.active {
     background: var(--primary-navy);
     border-color: var(--primary-navy);
     color: var(--white);
 }

 /* ─── SERVICE CARDS ─── */
 .services-section {
     padding: 80px 0;
 }

 .services-section.alt {
     background: var(--light-gray);
 }

 .service-cat-title {
     display: flex;
     align-items: center;
     gap: 14px;
     font-family: var(--font-display);
     font-size: 1.5rem;
     font-weight: 800;
     color: var(--primary-navy);
     margin-bottom: 30px;
     padding-bottom: 14px;
     border-bottom: 3px solid var(--border);
 }

 .service-cat-title .cat-icon {
     width: 44px;
     height: 44px;
     border-radius: 10px;
     background: linear-gradient(135deg, var(--primary-navy), var(--secondary-blue));
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     font-size: 1.2rem;
     flex-shrink: 0;
 }

 .service-cat-title .cat-icon.red {
     background: linear-gradient(135deg, var(--accent-red), #c62828);
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
     gap: 28px;
 }

 .svc-card {
     background: var(--white);
     border-radius: var(--radius);
     overflow: hidden;
     box-shadow: var(--shadow);
     transition: transform .3s, box-shadow .3s;
     display: flex;
     flex-direction: column;
 }

 .svc-card:hover {
     transform: translateY(-10px);
     box-shadow: var(--shadow-lg);
 }

 .svc-card:hover .svc-img img {
     transform: scale(1.07);
 }

 .svc-img {
     overflow: hidden;
     height: 210px;
     position: relative;
 }

 .svc-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform .5s;
 }

 .svc-tag {
     position: absolute;
     top: 14px;
     left: 14px;
     background: var(--accent-red);
     color: var(--white);
     font-family: var(--font-display);
     font-size: .78rem;
     font-weight: 700;
     padding: 4px 12px;
     border-radius: 5px;
     letter-spacing: .07em;
     text-transform: uppercase;
 }

 .svc-tag.blue {
     background: var(--secondary-blue);
 }

 .svc-tag.navy {
     background: var(--primary-navy);
 }

 .svc-body {
     padding: 24px;
     flex: 1;
     display: flex;
     flex-direction: column;
 }

 .svc-icon-row {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 12px;
 }

 .svc-icon {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     border-radius: 10px;
     font-size: 1.1rem;
     flex-shrink: 0;
 }

 .svc-icon.red {
     background: rgba(225, 27, 34, .1);
     color: var(--accent-red);
 }

 .svc-icon.navy {
     background: rgba(0, 59, 111, .08);
     color: var(--primary-navy);
 }

 .svc-icon.blue {
     background: rgba(0, 132, 209, .1);
     color: var(--secondary-blue);
 }

 .svc-body h3 {
     font-family: var(--font-display);
     font-size: 1.2rem;
     font-weight: 800;
     color: var(--primary-navy);
     line-height: 1.2;
 }

 .svc-body p {
     font-size: .9rem;
     color: var(--text-muted);
     line-height: 1.7;
     margin-bottom: 18px;
     flex: 1;
 }

 .svc-features {
     list-style: none;
     margin-bottom: 20px;
 }

 .svc-features li {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: .85rem;
     color: var(--dark);
     padding: 4px 0;
 }

 .svc-features li i {
     color: var(--accent-red);
     font-size: .8rem;
     flex-shrink: 0;
 }

 .svc-footer {
     display: flex;
     gap: 10px;
 }

 .svc-footer .btn {
     flex: 1;
     justify-content: center;
     font-size: .88rem;
     padding: 10px 14px;
 }

 /* ─── SERVICE DETAIL MODAL ─── */
 .svc-detail-section {
     background: var(--light-gray);
     padding: 72px 0;
 }

 .svc-detail-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 48px;
     align-items: center;
 }

 .svc-detail-img img {
     border-radius: var(--radius);
     box-shadow: var(--shadow-lg);
     width: 100%;
     height: 380px;
     object-fit: cover;
 }

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

 .svc-detail-list {
     list-style: none;
     margin: 20px 0 28px;
 }

 .svc-detail-list li {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     padding: 10px 0;
     border-bottom: 1px solid var(--border);
     font-size: .95rem;
 }

 .svc-detail-list li i {
     color: var(--secondary-blue);
     margin-top: 3px;
     flex-shrink: 0;
 }

 /* ─── CTA BAND ─── */
 .cta-band {
     background: var(--accent-red);
     padding: 40px 0;
 }

 .cta-band .container {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 24px;
     flex-wrap: wrap;
 }

 .cta-band-text h3 {
     font-family: var(--font-display);
     font-size: 1.8rem;
     font-weight: 800;
     color: var(--white);
 }

 .cta-band-text p {
     color: rgba(255, 255, 255, .85);
     font-size: 1rem;
     margin-top: 4px;
 }

 .cta-band-btns {
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
 }

 .btn-white {
     background: var(--white);
     color: var(--accent-red);
 }

 .btn-white:hover {
     background: #f8f8f8;
 }

 .btn-outline-white {
     background: transparent;
     border: 2px solid rgba(255, 255, 255, .6);
     color: var(--white);
 }

 .btn-outline-white:hover {
     background: rgba(255, 255, 255, .1);
 }

 /* ─── FAQ ─── */
 .faq {
     padding: 80px 0;
 }

 .faq-grid {
     max-width: 820px;
     margin: 0 auto;
 }

 .faq-item {
     border: 1px solid var(--border);
     border-radius: 10px;
     margin-bottom: 12px;
     overflow: hidden;
 }

 .faq-q {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 18px 22px;
     cursor: pointer;
     font-family: var(--font-display);
     font-size: 1.05rem;
     font-weight: 700;
     color: var(--primary-navy);
     background: var(--white);
     transition: background .2s;
 }

 .faq-q:hover {
     background: var(--light-gray);
 }

 .faq-q i {
     transition: transform .3s;
     color: var(--secondary-blue);
     flex-shrink: 0;
 }

 .faq-item.open .faq-q i {
     transform: rotate(180deg);
 }

 .faq-a {
     max-height: 0;
     overflow: hidden;
     transition: max-height .4s ease, padding .3s;
     padding: 0 22px;
     font-size: .93rem;
     color: var(--text-muted);
     line-height: 1.7;
 }

 .faq-item.open .faq-a {
     max-height: 200px;
     padding: 0 22px 18px;
 }

 /* ─── FOOTER ─── */
 footer {
     background: #001e3a;
     color: rgba(255, 255, 255, .8);
     padding: 64px 0 0;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: 1.6fr 1fr 1.4fr 1fr;
     gap: 40px;
     margin-bottom: 48px;
 }

 .footer-brand .logo {
     margin-bottom: 16px;
 }

 .footer-brand .logo img {
     height: 52px;
 }

 .footer-brand .logo-text strong {
     color: var(--white);
 }

 .footer-brand p {
     font-size: .88rem;
     line-height: 1.7;
     color: rgba(255, 255, 255, .6);
     margin-bottom: 20px;
 }

 .footer-social {
     display: flex;
     gap: 10px;
 }

 .footer-social a {
     width: 36px;
     height: 36px;
     border-radius: 8px;
     background: rgba(255, 255, 255, .08);
     display: flex;
     align-items: center;
     justify-content: center;
     color: rgba(255, 255, 255, .7);
     font-size: .95rem;
     transition: background .2s, color .2s;
 }

 .footer-social a:hover {
     background: var(--accent-red);
     color: var(--white);
 }

 .footer-col h4 {
     font-family: var(--font-display);
     font-size: 1.05rem;
     font-weight: 700;
     color: var(--white);
     letter-spacing: .06em;
     text-transform: uppercase;
     margin-bottom: 20px;
     padding-bottom: 10px;
     border-bottom: 2px solid rgba(255, 255, 255, .08);
 }

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

 .footer-links li {
     margin-bottom: 9px;
 }

 .footer-links a {
     font-size: .88rem;
     color: rgba(255, 255, 255, .6);
     transition: color .2s;
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .footer-links a::before {
     content: '›';
     color: var(--accent-red);
     font-size: 1rem;
 }

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

 .footer-contact-item {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     margin-bottom: 14px;
     font-size: .88rem;
     color: rgba(255, 255, 255, .65);
 }

 .footer-contact-item i {
     color: var(--accent-red);
     margin-top: 3px;
     flex-shrink: 0;
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, .08);
     padding: 18px 0;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 10px;
 }

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

 /* ─── FLOATING BUTTONS ─── */
 .float-wa {
     position: fixed;
     bottom: 80px;
     right: 22px;
     z-index: 999;
     width: 58px;
     height: 58px;
     border-radius: 50%;
     background: #25D366;
     color: var(--white);
     font-size: 1.6rem;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
     animation: floatBounce 2.5s ease-in-out infinite;
 }

 .float-wa:hover {
     transform: scale(1.12);
 }

 .float-call {
     position: fixed;
     bottom: 22px;
     right: 22px;
     z-index: 999;
     width: 58px;
     height: 58px;
     border-radius: 50%;
     background: var(--accent-red);
     color: var(--white);
     font-size: 1.4rem;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 6px 24px rgba(225, 27, 34, .4);
     animation: floatBounce 2.5s .5s ease-in-out infinite;
 }

 @keyframes floatBounce {

     0%,
     100% {
         transform: translateY(0)
     }

     50% {
         transform: translateY(-7px)
     }
 }

 .scroll-top {
     position: fixed;
     bottom: 22px;
     left: 22px;
     z-index: 999;
     width: 44px;
     height: 44px;
     border-radius: 10px;
     background: var(--primary-navy);
     color: var(--white);
     font-size: 1rem;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     border: none;
     opacity: 0;
     pointer-events: none;
     transition: opacity .3s;
     box-shadow: var(--shadow);
 }

 .scroll-top.visible {
     opacity: 1;
     pointer-events: all;
 }

 /* ─── MOBILE NAV ─── */
 .mobile-nav {
     display: none;
     position: fixed;
     inset: 0;
     z-index: 9998;
     background: var(--white);
     padding: 80px 24px 32px;
     flex-direction: column;
     gap: 4px;
 }

 .mobile-nav.open {
     display: flex;
 }

 .mobile-nav a {
     font-family: var(--font-body);
     font-size: 1.2rem;
     font-weight: 600;
     color: var(--primary-navy);
     padding: 14px 0;
     border-bottom: 1px solid var(--border);
 }

 .mobile-nav .btn {
     margin-top: 16px;
     justify-content: center;
 }

 .mobile-nav-close {
     position: absolute;
     top: 18px;
     right: 22px;
     background: none;
     border: none;
     font-size: 1.6rem;
     cursor: pointer;
     color: var(--dark);
 }

 /* ─── REVEAL ─── */
 .reveal {
     opacity: 0;
     transform: translateY(28px);
     transition: opacity .6s ease, transform .6s ease;
 }

 .reveal.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .reveal-delay-1 {
     transition-delay: .1s;
 }

 .reveal-delay-2 {
     transition-delay: .2s;
 }

 .reveal-delay-3 {
     transition-delay: .3s;
 }

 /* ─── RESPONSIVE ─── */
 @media (max-width: 1024px) {
     .footer-grid {
         grid-template-columns: 1fr 1fr;
     }
 }

 @media (max-width: 768px) {

     nav,
     .header-ctas {
         display: none;
     }

     .hamburger {
         display: block;
     }

     .filter-bar {
         top: 65px;
     }

     .filter-tabs {
         gap: 7px;
     }

     .filter-tab {
         padding: 7px 14px;
         font-size: .82rem;
     }

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

     .svc-detail-grid {
         grid-template-columns: 1fr;
     }

     .svc-detail-img img {
         height: 260px;
     }

     .cta-band .container {
         flex-direction: column;
         text-align: center;
     }

     .footer-grid {
         grid-template-columns: 1fr;
         gap: 28px;
     }

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

 @media (max-width: 480px) {
     .services-grid {
         grid-template-columns: 1fr;
     }

     .page-hero h1 {
         font-size: 2rem;
     }
 }


 .fa-phone-alt{
    transform: rotate(90deg);
 }