/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1f86d2;
    --primary-dark: #2f3333;
    --secondary-color: #4ba8e4;
    --secondary-dark: #2f3333;
    --text-dark: #2f3333;
    --text-light: #545858;
    --bg-light: #f5f7f9;
    --bg-white: #ffffff;
    --accent-blue: #4ba8e4;
    --muted-grey: #bebebe;
    --success-green: #388e3c;
    --shadow: 0 2px 12px rgba(47, 51, 51, 0.12);
    --shadow-lg: 0 12px 45px rgba(47, 51, 51, 0.18);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 100px;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  position: relative;
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

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

.container {
    max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar, .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background: #ffffff;
    border-bottom: 1px solid rgba(31, 134, 210, 0.08);
    box-shadow: 0 14px 45px rgba(31, 134, 210, 0.08);
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled, .site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(31, 134, 210, 0.16);
    box-shadow: var(--shadow-lg);
}

.site-header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0.4);
    opacity: 0;
    transform-origin: center;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.site-header.scrolled::after {
    opacity: 1;
    transform: scaleX(1);
}

.site-header .container,
.nav-container {
  display: flex;
  justify-content: space-between;
    align-items: center;
    padding: 0.85rem 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.logo, .brand {
    display: flex;
  align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
  text-decoration: none;
}

/* Adjust logo sizing for new colour palette */
.brand img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(31, 134, 210, 0.2));
}

.logo i {
    font-size: 2rem;
}

.nav-menu, .nav-list {
  display: flex;
  list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link, .nav-list a:not(.btn) {
    position: relative;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.45rem 0;
    transition: color 0.3s ease;
}

.nav-link::after, .nav-list a:not(.btn)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 999px;
}

.nav-link:hover, .nav-list a:not(.btn):hover {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-list a:not(.btn):hover::after,
.nav-list a.active::after {
    transform: scaleX(1);
}

.nav-list a.active {
    color: var(--primary-color);
}

.emergency-btn {
    background: var(--primary-color);
    color: white !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hamburger, .nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(47, 51, 51, 0.12);
    padding: 0.5rem;
    border-radius: 999px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(47, 51, 51, 0.08);
}

.nav-toggle span {
    background: var(--text-dark);
}

.nav-toggle.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    box-shadow: 0 16px 35px rgba(31, 134, 210, 0.25);
}

.nav-toggle.active::before,
.nav-toggle.active::after,
.nav-toggle.active span {
    background: #ffffff;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Phone CTA adopts core brand blue */
.header-cta .tel {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(31, 134, 210, 0.16);
    padding: 0.45rem 1.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(31, 134, 210, 0.16), rgba(75, 168, 228, 0.1));
    box-shadow: 0 12px 25px rgba(31, 134, 210, 0.18);
}

.header-cta .tel:hover {
    color: white;
    transform: translateY(-1px);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 18px 32px rgba(31, 134, 210, 0.35);
}

/* Hero Section - Split layout with visual cards */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2f3333 0%, #1c5d8a 50%, #1f86d2 100%);
    margin-top: -100px;
    padding: 180px 0 100px;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Subtle dot pattern overlay across entire hero */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(75, 168, 228, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(31, 134, 210, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(190, 190, 190, 0.05) 0%, transparent 60%),
        radial-gradient(circle, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 25px 25px;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}

@keyframes subtle-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes heat-pulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.22;
    }
    50% {
        transform: translateY(-52%) scale(1.05);
        opacity: 0.35;
    }
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(31, 134, 210, 0.08), transparent 55%);
}

/* Left-aligned hero content for asymmetric design */
.hero-content, .hero .container {
    position: relative;
    z-index: 1;
    color: white;
    padding: 3rem 20px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

/* Hero left column */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

.hero-title, .hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.15;
    animation: fadeInUp 0.8s ease;
    color: white;
    background: none;
    -webkit-text-fill-color: white;
    letter-spacing: -0.02em;
}

.hero-subtitle, .hero .lead {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.92;
    animation: fadeInUp 0.8s ease 0.2s both;
    color: white;
    line-height: 1.7;
    font-weight: 400;
}

.hero-buttons, .hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.cta .hero-buttons,
.cta .hero-ctas {
    justify-content: center;
    text-align: center;
}

/* Hero right column with feature cards */
.hero-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    animation: fadeInRight 0.8s ease 0.6s both;
}

.hero-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.hero-card:hover::before {
    opacity: 1;
}

.hero-card i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.hero-card:hover i {
    color: white;
    transform: scale(1.1);
}

.hero-card > div {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.hero-card strong {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    display: block;
}

.hero-card span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

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

/* Redesigned buttons - more geometric, less rounded */
.btn {
    padding: 0.95rem 2.2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border: none;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0.01em;
}

.btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(2px);
}


.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 12px 30px rgba(31, 134, 210, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 40px rgba(31, 134, 210, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    color: white;
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.site-header .nav-list .btn {
    background: var(--primary-color);
    color: #ffffff;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    border: none;
    box-shadow: none;
    transform: none;
    transition: none;
    outline: none;
    max-width: 100%;
    width: auto;
    height: auto;
}

.site-header .nav-list .btn:hover,
.site-header .nav-list .btn:focus,
.site-header .nav-list .btn:active,
.site-header .nav-list .btn:focus-visible {
    background: var(--primary-dark);
    color: #ffffff;
    transform: none;
    outline: none;
    border: none;
    box-shadow: none;
    padding: 0.65rem 1.5rem;
}

.site-header .nav-list .btn i,
.site-header .nav-list .btn:hover i,
.site-header .nav-list .btn:focus i,
.site-header .nav-list .btn:active i {
    transition: none;
    transform: none;
}

.btn-full {
    width: 100%;
}

/* Feature badges - redesigned layout */
.hero-features, .usp {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
    list-style: none;
    max-width: 700px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    font-weight: 500;
}

.hero-feature i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    text-shadow: 0 4px 12px rgba(75, 168, 228, 0.5);
    background: rgba(255, 255, 255, 0.12);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.usp li {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    padding: 0.85rem 1.35rem;
    font-weight: 500;
    color: white;
    box-shadow: 0 8px 20px rgba(47, 51, 51, 0.2);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.4rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 50px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto;
}

/* Sections */
.section, .services, .about, .testimonials, .contact, .coverage, .faqs, .cta {
    padding: 5rem 0;
    position: relative;
}

.section .container > .section:not(:first-child) {
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .section .container > .section:not(:first-child) {
        margin-top: 2rem;
    }
}

.section::before, .services::before, .about::before, .testimonials::before, .contact::before, .coverage::before, .faqs::before, .cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(75, 168, 228, 0.09), transparent 55%),
                radial-gradient(circle at bottom left, rgba(47, 51, 51, 0.07), transparent 60%);
    pointer-events: none;
    opacity: 0.9;
}

.services, .testimonials {
    background: var(--bg-white);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(31, 134, 210, 0.05), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.about, .contact, .coverage, .faqs {
    background: linear-gradient(180deg, rgba(245, 247, 249, 0.85), rgba(245, 247, 249, 0.95));
}

/* Services Section - Redesigned with horizontal layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
}

/* Redesigned service cards - horizontal layout with numbered badge */
.service-card, .card {
    background: white;
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(47, 51, 51, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(47, 51, 51, 0.08);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 140px 1fr;
    counter-increment: service-counter;
}

.service-card::before {
    content: counter(service-counter, decimal-leading-zero);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(31, 134, 210, 0.06);
    line-height: 1;
    z-index: 0;
}

.service-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 140px;
    background: linear-gradient(165deg, rgba(31, 134, 210, 0.08), rgba(75, 168, 228, 0.12));
    z-index: 0;
}

.service-card:hover, .card:hover {
    transform: translateY(-4px) translateX(4px);
    box-shadow: 0 12px 40px rgba(31, 134, 210, 0.18);
}

.service-card:hover::after {
    background: linear-gradient(165deg, rgba(31, 134, 210, 0.12), rgba(75, 168, 228, 0.18));
}

/* Reset counter for each services section */
.services-grid {
    counter-reset: service-counter;
}

.service-icon {
    width: 140px;
    height: 100%;
    min-height: 200px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0;
    box-shadow: none;
    position: relative;
    z-index: 1;
    padding: 2rem 1rem;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon::before {
    opacity: 0.08;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

/* Content wrapper for horizontal cards */
.service-card > div:not(.service-icon) {
    padding: 2rem 2rem 2rem 1.5rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.85rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-list, .ticks {
    list-style: none;
    margin-top: 0.75rem;
    margin-bottom: auto;
}

.service-list li, .ticks li {
    padding: 0.4rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-list li::before, .ticks li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.service-card .service-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.service-card .btn {
    flex: 1;
    min-width: 100px;
    justify-content: center;
    padding: 0.7rem 1.3rem;
    font-size: 0.9rem;
    border-radius: 6px;
}

.service-card .btn-primary {
    background: var(--primary-color);
    box-shadow: 0 4px 12px rgba(31, 134, 210, 0.2);
}

.service-card .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.service-card .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Service Rows */
.service-row, .services-overview .service-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem 0;
}

.service-row.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.service-row .media {
    margin: 0;
}

.service-row .media img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.service-row .content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.service-row .content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-row .content h3 a:hover {
    color: var(--primary-color);
}

.service-row .content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.service-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* About Section */
.about-content {
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-timing {
    position: relative;
    background: linear-gradient(135deg, rgba(75, 168, 228, 0.12), rgba(31, 134, 210, 0.08));
    border-radius: 24px;
    padding: 3.5rem 3rem;
    box-shadow: 0 25px 60px rgba(31, 134, 210, 0.12);
    overflow: hidden;
    border: 1px solid rgba(31, 134, 210, 0.12);
    margin-top: 3rem;
}

.service-timing::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.35), transparent 65%);
    opacity: 0.8;
    pointer-events: none;
}

.service-timing .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.service-timing .section-header h2 {
    color: var(--text-dark);
}

.service-timing .section-header p {
    color: rgba(47, 51, 51, 0.7);
}

.service-timing-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: stretch;
}

.service-timing .about-text {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    padding: 2.4rem;
    box-shadow: 0 18px 40px rgba(47, 51, 51, 0.12);
    border: 1px solid rgba(47, 51, 51, 0.08);
}

.service-timing .about-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.service-timing .service-list {
    margin: 0;
}

.service-timing .service-list li {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.55rem 0;
    padding-left: 2.1rem;
}

.service-timing .service-list li::before {
    content: '✔';
    font-size: 0.95rem;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.service-timing .service-list li {
    position: relative;
}

.service-timing-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-timing .about-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 18px 45px rgba(31, 134, 210, 0.18);
    border: 1px solid rgba(31, 134, 210, 0.18);
    text-align: center;
}

.service-timing .about-card i {
    color: var(--primary-color);
}

.service-timing .about-card h3 {
    color: var(--text-dark);
    font-size: 1.75rem;
}

.service-timing .about-card p {
    color: rgba(47, 51, 51, 0.7);
    font-weight: 500;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.about-feature {
    display: flex;
  gap: 1rem;
    align-items: flex-start;
}

.about-feature i {
    font-size: 1.5rem;
    color: var(--success-green);
    margin-top: 0.3rem;
}

.about-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.about-feature p {
    font-size: 0.95rem;
    margin: 0;
}

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

.about-card {
    background: white;
    padding: 2.2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(47, 51, 51, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(47, 51, 51, 0.06);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(31, 134, 210, 0.15);
}


.about-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.about-card p {
    color: var(--text-light);
    margin: 0;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Redesigned testimonial cards */
.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(47, 51, 51, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(47, 51, 51, 0.06);
    border-top: 3px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 4rem;
    color: rgba(31, 134, 210, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(31, 134, 210, 0.15);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Contact Section */
.contact {
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(31, 134, 210, 0.08), transparent 55%), radial-gradient(circle at top right, rgba(75, 168, 228, 0.12), transparent 65%);
    opacity: 1;
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    padding: 3.5rem;
    box-shadow: 0 30px 60px rgba(47, 51, 51, 0.12);
    border: 1px solid rgba(31, 134, 210, 0.1);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-content: start;
}

.contact-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.85));
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(31, 134, 210, 0.12);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(31, 134, 210, 0.16);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 134, 210, 0.12), rgba(75, 168, 228, 0));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(31, 134, 210, 0.2);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card i {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    color: white;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 12px 24px rgba(31, 134, 210, 0.3);
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-card p {
    color: rgba(47, 51, 51, 0.7);
    margin: 0.35rem 0;
    line-height: 1.6;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-note {
    font-size: 0.88rem !important;
    font-style: normal;
    color: rgba(47, 51, 51, 0.6);
}

.contact-form-wrapper, .contact-form {
    background: rgba(255, 255, 255, 0.96);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 24px 55px rgba(31, 134, 210, 0.15);
    border: 1px solid rgba(31, 134, 210, 0.12);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(31, 134, 210, 0.12), rgba(75, 168, 228, 0));
    opacity: 0.6;
    pointer-events: none;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.95rem 1.25rem;
    border: 1px solid rgba(47, 51, 51, 0.12);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(245, 247, 249, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 4px 12px rgba(31, 134, 210, 0.12);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
}

/* Breadcrumb */
.breadcrumb {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--primary-color);
}

.breadcrumb li {
  color: var(--text-light);
}

.breadcrumb li + li::before {
  content: '›';
  margin-right: 0.5rem;
  color: var(--text-light);
  font-weight: bold;
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Coverage Areas */
.areas {
  display: grid;
    grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  list-style: none;
  margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.areas li, .areas li a {
  display: block;
  background: white;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
    color: var(--text-dark);
  text-decoration: none;
    transition: all 0.3s ease;
}

.areas li:hover, .areas li a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
  transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* FAQs */
.faqs {
  max-width: 800px;
  margin: 0 auto;
}

.faqs details {
  background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
  padding: 0;
  margin-bottom: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
  overflow: hidden;
}

.faqs details[open] {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.faqs summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.faqs summary::-webkit-details-marker {
  display: none;
}

.faqs summary::after {
  content: '+';
  font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faqs details[open] summary::after {
  transform: rotate(45deg);
}

.faqs summary:hover {
    color: var(--primary-color);
    background: var(--bg-light);
}

.faqs details p {
  padding: 0 1.5rem 1.25rem;
    color: var(--text-light);
  line-height: 1.6;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

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

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

.cta .btn-primary:hover {
    background: #f5f5f5;
  transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Footer */
.footer, .site-footer {
    position: relative;
    background: radial-gradient(circle at top left, rgba(75, 168, 228, 0.22), transparent 55%), var(--text-dark);
    color: white;
    padding: 3.5rem 0 1.5rem;
    overflow: hidden;
}

.footer::before, .site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom right, rgba(31, 134, 210, 0.18), transparent 60%);
    opacity: 0.65;
    pointer-events: none;
}

.footer::after, .site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.85;
}

.footer-content, .footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    z-index: 1;
}

.footer-section h3, .site-footer h2 {
    margin-bottom: 1.25rem;
    color: white;
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    position: relative;
}

.footer-section h3::after, .site-footer h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.4rem;
    width: 36px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
}

.footer-section p, .site-footer p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
}

.footer-section ul, .footer-nav, .trust {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li, .footer-nav li {
    margin-bottom: 0.65rem;
}

.footer-section ul li a, .footer-nav a, .site-footer a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-section ul li a::after, .footer-nav a::after, .site-footer a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 999px;
}

.footer-section ul li a:hover,
.footer-nav a:hover,
.site-footer a:hover {
    color: white;
}

.footer-section ul li a:hover::after,
.footer-nav a:hover::after,
.site-footer a:hover::after {
    transform: scaleX(1);
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.gas-safe-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(16, 185, 129, 0.18);
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    margin-top: 1.2rem;
    color: #34d399;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.45);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.25);
}

.gas-safe-badge i {
    font-size: 1.1rem;
}

.footer-bottom, .legal {
    position: relative;
    text-align: center;
    padding-top: 2.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.footer-bottom p, .legal p {
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.03em;
}

.trust li {
  padding-left: 1.5rem;
  position: relative;
  color: rgba(255,255,255,0.8);
    margin-bottom: 0.75rem;
}

.trust li::before {
  content: '✓';
  position: absolute;
  left: 0;
    color: var(--secondary-color);
}

.hours {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .site-header .container {
  gap: 0.5rem;
        max-width: 100%;
        overflow: hidden;
        padding: 1rem 15px;
        justify-content: space-between;
    }

    .service-timing {
        padding: 3rem 2.25rem;
    }

    .service-timing-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    .brand {
        flex: 0 0 auto;
        max-width: 40%;
    }
    
    .site-nav {
        order: 3;
        flex: 0 0 auto;
    }

    .header-cta {
        margin-left: auto;
        flex: 0 0 auto;
        max-width: 35%;
        margin-right: 1rem;
    }

    .header-cta .tel {
        font-size: 1.1rem;
        padding: 0.4rem 0.6rem;
        white-space: nowrap;
    }

    .nav-menu, .nav-list {
        position: fixed;
        left: -100%;
        top: 140px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 0;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.open, .nav-list.open {
        left: 0;
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li, .nav-list li {
        margin: 1rem 0;
        width: 100%;
    }

    .nav-list a {
        display: block;
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .hamburger, .nav-toggle {
        display: flex;
        margin-left: 0.5rem;
        background: transparent;
        border: none;
        padding: 0.3rem;
        cursor: pointer;
        position: relative;
        width: 30px;
        height: 24px;
        flex-direction: column;
        flex: 0 0 auto;
        justify-content: space-between;
    }
    
    .nav-toggle::before,
    .nav-toggle::after,
    .nav-toggle {
        font-size: 0;
    }
    
    .nav-toggle::before {
        content: '';
        position: absolute;
        width: 25px;
        height: 3px;
        background: var(--text-dark);
        top: 0;
        transition: all 0.3s ease;
    }
    
    .nav-toggle::after {
        content: '';
        position: absolute;
        width: 25px;
        height: 3px;
        background: var(--text-dark);
        bottom: 0;
        transition: all 0.3s ease;
    }
    
    .nav-toggle span {
        content: '';
        width: 25px;
        height: 3px;
        background: var(--text-dark);
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.3s ease;
    }
    
    .service-card .service-actions {
        flex-direction: column;
    }
    
    .service-card .btn {
        width: 100%;
    }

    .nav-toggle.active::before {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span {
        opacity: 0;
    }

    .nav-toggle.active::after {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero-content, .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .hero-subtitle, .hero .lead {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        padding: 3rem 2.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
  
    .service-row,
    .service-row.reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
    body {
        padding-top: 140px;
    }

    .hero {
        padding: 130px 0 80px;
        margin-top: -120px;
    }

    .site-header .container {
        padding: 0.75rem 10px;
        gap: 0.25rem;
        justify-content: space-between;
    }

    .service-timing {
        border-radius: 20px;
        padding: 2.6rem 1.85rem;
    }

    .service-timing .about-text {
        padding: 2rem;
    }

    .service-timing-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .header-cta .tel {
        padding: 0.3rem 0.5rem;
        font-size: 1.1rem;
    }
    
    .brand {
        max-width: 35%;
    }
    
    .header-cta {
        max-width: 40%;
        margin-right: 0.75rem;
    }
    
    .site-nav {
        flex: 0 0 auto;
    }

    .hero-content, .hero .container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem 1rem;
    }

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

    .contact-content {
        padding: 2.6rem 1.75rem;
        border-radius: 22px;
    }

    .contact-form-wrapper, .contact-form {
        padding: 2.5rem;
    }

    .hero-buttons, .hero-ctas {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        gap: 0.8rem;
    }

    .hero-right {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-card {
        padding: 1.2rem;
    }

    .hero-features, .usp {
        flex-direction: column;
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
    }

    .service-card {
        margin: 0 0.5rem;
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }
    
    .service-card::after {
        width: 100%;
        height: 120px;
        background: linear-gradient(180deg, rgba(31, 134, 210, 0.08), rgba(75, 168, 228, 0.12));
    }
    
    .service-card::before {
        top: 0.75rem;
        right: 0.75rem;
        font-size: 2rem;
    }
    
    .service-icon {
        width: 100%;
        min-height: 120px;
        height: auto;
        padding: 1.5rem;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .service-card > div:not(.service-icon) {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .footer-content, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .site-header .container {
        padding: 0.5rem 8px;
        gap: 0.1rem;
    }
    
    .hero {
        padding: 120px 0 70px;
        margin-top: -130px;
    }

    .service-timing {
        padding: 2.3rem 1.35rem;
    }

    .service-timing .about-text {
        padding: 1.7rem;
    }

    .service-timing-highlights {
        grid-template-columns: 1fr;
    }

    .contact-content {
        padding: 2.2rem 1.25rem;
        border-radius: 20px;
    }

    .contact-form-wrapper, .contact-form {
        padding: 2rem;
        border-radius: 20px;
    }

    .brand {
        max-width: 30%;
    }
    
    .header-cta {
        max-width: 45%;
        margin-right: 0.5rem;
    }
    
    .header-cta .tel {
        font-size: 1.2rem;
        padding: 0.25rem 0.4rem;
    }
    
    .nav-toggle {
        width: 28px;
        height: 22px;
    }
    
    .nav-toggle::before,
    .nav-toggle::after,
    .nav-toggle span {
        width: 22px;
    }

    .hero-title, .hero h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle, .hero .lead {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

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

/* Skip Link */
.skip-link {
  position: absolute;
    left: -9999px;
    z-index: 999;
}

.skip-link:focus {
    position: fixed;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}
