/* ==========================================================================
   CSS RESET & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-primary-navy: #0b1a30;      /* Dark navy for headers/text */
    --color-primary-orange: #ff5e14;    /* Vibrant brand orange */
    --color-primary-blue: #005eff;      /* Premium CTA blue */
    --color-primary-blue-hover: #004ecc;
    --color-neutral-dark: #1e293b;      /* Titles and subtitles */
    --color-neutral-gray: #475569;      /* Body description text */
    --color-neutral-light: #f8fafc;     /* Soft background tint */
    --color-white: #ffffff;
    --color-border: #e2e8f0;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Box Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-premium: 0 30px 60px -15px rgba(15, 23, 42, 0.08);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-neutral-gray);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary-navy);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: var(--transition-normal);
}

.site-header.scrolled {
    padding: 5px 0;
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.95);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    position: relative;
    height: 55px;
    width: 280px;
    transition: var(--transition-normal);
}

.site-header.scrolled .logo-link {
    height: 48px;
    width: 245px;
}

.logo-img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateY(10px);
    height: 192px; /* 50% larger than 128px */
    width: auto;
    max-width: none;
    object-fit: contain;
    transition: var(--transition-normal);
    z-index: 10;
}

.site-header.scrolled .logo-img {
    height: 170px; /* 50% larger than 113px */
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-item {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary-navy);
    position: relative;
    padding: 8px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary-orange);
    transition: var(--transition-normal);
}

.nav-item:hover {
    color: var(--color-primary-orange);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.nav-item.active {
    color: var(--color-primary-orange);
}

/* Header CTA */
.header-phone-cta {
    display: flex;
    align-items: center;
}

.phone-cta-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.phone-cta-link:hover {
    background-color: rgba(255, 94, 20, 0.05);
}

.phone-icon-circle {
    width: 44px;
    height: 44px;
    background-color: transparent;
    border: 1px solid var(--color-primary-orange);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-orange);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.phone-cta-link:hover .phone-icon-circle {
    background-color: var(--color-primary-orange);
    color: var(--color-white);
    transform: scale(1.05);
}

.phone-text-wrapper {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 0.8rem;
    color: var(--color-neutral-gray);
    font-weight: 500;
    line-height: 1.2;
}

.phone-number {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary-blue);
    line-height: 1.2;
}

/* Hamburger Toggle */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-primary-navy);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

/* Hamburger Animations */
.hamburger-menu.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.open .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Drawer Overlay */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(11, 26, 48, 0.35);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.mobile-drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    z-index: 999;
    padding: 110px 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.open {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-item {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary-navy);
    display: block;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
    color: var(--color-primary-orange);
}

.mobile-drawer-cta {
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.phone-cta-link-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--color-primary-blue);
    color: var(--color-white);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    justify-content: center;
}

.phone-cta-link-mobile:hover {
    background-color: var(--color-primary-blue-hover);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding-top: 85px; /* Offset fixed header */
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--color-white);
    overflow: hidden;
}

.hero-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 40px 100px;
    display: grid;
    grid-template-columns: 52% 48%;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 10;
}

/* Hero Content (Left) */
.hero-content {
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.hero-kicker {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary-orange);
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: inline-block;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--color-primary-navy);
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-neutral-gray);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Buttons Group */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Button UI */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    transition: var(--transition-normal);
}

.btn-primary {
    background-color: var(--color-primary-blue);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(0, 94, 255, 0.3);
    gap: 12px;
}

.btn-primary i {
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.btn-primary:hover {
    background-color: var(--color-primary-blue-hover);
    box-shadow: 0 6px 20px rgba(0, 94, 255, 0.4);
    transform: translateY(-2px);
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-secondary {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    color: var(--color-primary-navy);
    padding: 12px 24px;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.btn-secondary i {
    font-size: 1.3rem;
    color: var(--color-neutral-dark);
    transition: var(--transition-fast);
}

.btn-secondary-text {
    display: flex;
    flex-direction: column;
}

.btn-label {
    font-size: 0.75rem;
    color: var(--color-neutral-gray);
    font-weight: 500;
    line-height: 1.2;
}

.btn-phone {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary-navy);
    line-height: 1.2;
}

.btn-secondary:hover {
    border-color: var(--color-primary-orange);
    background-color: var(--color-neutral-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover i {
    color: var(--color-primary-orange);
    transform: rotate(15deg);
}

/* Trust Badges */
.hero-badges {
    display: flex;
    align-items: center;
    gap: 32px;
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}

/* Dividers between badges on desktop */
@media (min-width: 1025px) {
    .badge-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -20px;
        top: 15%;
        height: 70%;
        width: 1px;
        background-color: var(--color-border);
    }
    /* Adjust gap in flex row to accommodate separator spacing */
    .hero-badges {
        gap: 40px;
    }
}

.badge-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background-color: rgba(0, 94, 255, 0.05);
    border: 1px solid rgba(0, 94, 255, 0.1);
    color: var(--color-primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.badge-icon-svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-primary-blue);
    transition: var(--transition-normal);
}

.badge-item:hover .badge-icon-wrapper {
    background-color: var(--color-primary-blue);
    color: var(--color-white);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 94, 255, 0.2);
}

.badge-item:hover .badge-icon-svg {
    stroke: var(--color-white);
}

/* Gas Safe Logo styling */
.gas-safe-logo {
    width: 48px;
    height: 48px;
    transition: var(--transition-normal);
}

.gas-safe-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.badge-item:hover .gas-safe-logo {
    transform: translateY(-4px) scale(1.05) rotate(-5deg);
}

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

.badge-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary-navy);
    line-height: 1.2;
}

.badge-sub {
    font-size: 0.85rem;
    color: var(--color-neutral-gray);
    font-weight: 500;
    line-height: 1.2;
}

/* Hero Visual (Right & Background) */
.hero-visual {
    position: absolute;
    top: -60px; /* Offset parent container's padding-top to touch navbar line */
    right: -40px; /* Offset parent container's padding-right to touch screen edge */
    width: 48vw;
    height: calc(100% + 160px); /* Extend height to cover top and bottom padding offsets */
    z-index: 1;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* The magic gradient blend overlay */
.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        #ffffff 0%, 
        rgba(255, 255, 255, 0.95) 10%, 
        rgba(255, 255, 255, 0.7) 25%, 
        rgba(255, 255, 255, 0) 60%
    );
    z-index: 2;
    pointer-events: none;
}

/* Wave Separator */
.hero-wave-container {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 15;
    line-height: 0;
    pointer-events: none;
}

.waves-svg {
    position: relative;
    width: 100%;
    height: 90px;
    min-height: 60px;
    max-height: 120px;
    transition: var(--transition-normal);
}

/* Parallax Water Wave Animations */
.parallax-waves > use {
    animation: move-wave 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax-waves > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax-waves > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax-waves > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax-waves > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-wave {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

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

@keyframes pulseOrange {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 94, 20, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 94, 20, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 94, 20, 0);
    }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay, 0ms);
}

/* Scroll Reveal Classes */
.reveal-on-scroll {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll[data-reveal="fade-right"] {
    transform: translateX(-50px);
}

.reveal-on-scroll[data-reveal="fade-left"] {
    transform: translateX(50px);
}

.reveal-on-scroll[data-reveal="fade-up"] {
    transform: translateY(50px);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translate(0);
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-section {
    padding: 100px 0 120px;
    background-color: var(--color-white);
    position: relative;
}

.about-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 46% 54%;
    gap: 70px;
    align-items: center;
    width: 100%;
}

.about-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 4px solid var(--color-white);
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-visual:hover .about-img {
    transform: scale(1.03);
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-kicker {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary-blue);
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: inline-block;
}

.about-title {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 800;
    color: var(--color-primary-navy);
    margin-bottom: 24px;
}

.about-desc {
    font-size: 1.1rem;
    color: var(--color-neutral-gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid var(--color-border);
    padding-top: 35px;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.stat-icon-box {
    color: var(--color-primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.stat-icon-svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-primary-blue);
    transition: var(--transition-normal);
}

.stat-item:hover .stat-icon-svg {
    transform: scale(1.1) rotate(5deg);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary-blue);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-neutral-dark);
    line-height: 1.3;
}

/* ==========================================================================
   OUR SERVICES SECTION
   ========================================================================== */
.services-section {
    padding: 100px 0 120px;
    background-color: var(--color-neutral-light); /* Soft background contrast */
    position: relative;
}

.services-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-primary-navy);
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.text-blue {
    color: var(--color-primary-blue);
}

.services-divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-primary-orange);
    border-radius: var(--radius-full);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Floating Service Cards */
.service-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative; /* Contain the absolute positioned floating icon */
}

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

.card-image-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
    width: 100%;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Floating icon overlapping bottom-left of image */
.card-icon-floating {
    position: absolute;
    top: 176px; /* Positioned relative to service-card, overlapping the 200px image boundary */
    left: 24px;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--color-white);
    z-index: 5;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .card-icon-floating {
    transform: scale(1.1);
}

.bg-blue {
    background-color: var(--color-primary-blue);
    color: var(--color-white);
}

.bg-orange {
    background-color: var(--color-primary-orange);
    color: var(--color-white);
}

.bg-yellow {
    background-color: #fdd835;
    color: var(--color-primary-navy);
}

.card-icon-svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.card-content {
    padding: 38px 24px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary-navy);
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.card-desc {
    font-size: 0.95rem;
    color: var(--color-neutral-gray);
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary-blue);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    align-self: flex-start;
}

.card-link i {
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.card-link:hover {
    color: var(--color-primary-blue-hover);
}

.card-link:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.choose-section {
    padding: 100px 0 120px;
    background-color: var(--color-white);
    position: relative;
}

.choose-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.choose-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.choose-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-primary-navy);
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.choose-divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-primary-orange);
    border-radius: var(--radius-full);
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* Feature Cards styling */
.choose-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 40px 18px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    height: 100%;
}

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(0, 94, 255, 0.15);
}

.feature-icon-wrapper-large {
    margin-bottom: 24px;
    color: var(--color-primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.choose-card:hover .feature-icon-wrapper-large {
    transform: scale(1.1) translateY(-2px);
}

.feature-icon-svg {
    width: 44px;
    height: 44px;
    stroke: var(--color-primary-blue);
    stroke-width: 1.8;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary-navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--color-neutral-gray);
    line-height: 1.5;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.reviews-section {
    padding: 100px 0 120px;
    background-color: var(--color-neutral-light); /* Contrasting background */
    position: relative;
}

.reviews-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-primary-navy);
    letter-spacing: -0.5px;
}

.reviews-section-title .text-blue {
    position: relative;
    display: inline-block;
}

/* Center orange line specifically under the word "CUSTOMERS" matching design */
.reviews-section-title .text-blue::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 65px;
    height: 3.5px;
    background-color: var(--color-primary-orange);
    border-radius: var(--radius-full);
}

.reviews-slider-wrapper {
    overflow: hidden;
    width: 100%;
    padding-bottom: 45px; /* Spacing for swiper bullets */
    position: relative;
}

.reviews-track {
    display: flex;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.review-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 38px 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    height: auto; /* Let swiper flexbox stretch match cards height */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(0, 94, 255, 0.15);
}

.review-stars {
    color: #f59e0b; /* Golden star rating */
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
    font-size: 0.95rem;
}

.review-text {
    font-size: 1.05rem;
    color: var(--color-neutral-gray);
    line-height: 1.6;
    margin-bottom: 28px;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto; /* Push author info to alignment line at bottom */
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--color-primary-blue);
    flex-shrink: 0;
}

.author-meta {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary-navy);
    line-height: 1.2;
    margin-bottom: 2px;
}

.author-location {
    font-size: 0.85rem;
    color: var(--color-neutral-gray);
    font-weight: 500;
}

/* Custom Swiper Pagination Dots Styling */
.reviews-dots {
    position: relative;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 10;
}

.reviews-dots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--color-border);
    opacity: 1;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0 !important; /* Reset swiper margin default spacing */
}

.reviews-dots .swiper-pagination-bullet-active {
    width: 28px;
    background-color: var(--color-primary-blue);
    border-radius: var(--radius-full);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: 100px 0 120px;
    background-color: var(--color-white);
    position: relative;
}

.contact-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.contact-card {
    display: grid;
    grid-template-columns: 43% 57%;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--color-border);
}

/* Left Column: Faucet BG info box */
.contact-info-col {
    position: relative;
    padding: 60px 50px;
    background-size: cover;
    background-position: center right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--color-white);
    overflow: hidden;
    z-index: 1;
}

.info-col-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 94, 255, 0.98) 0%, 
        rgba(0, 94, 255, 0.94) 45%, 
        rgba(0, 94, 255, 0.6) 80%, 
        rgba(0, 94, 255, 0.25) 100%
    );
    z-index: 2;
}

.info-col-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.info-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.25;
}

.info-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 420px;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 45px;
}

.info-link {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    transition: var(--transition-fast);
}

.info-link:hover {
    color: var(--color-primary-orange);
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-white);
    transition: var(--transition-normal);
}

.info-link:hover .info-icon {
    background-color: var(--color-primary-orange);
    border-color: var(--color-primary-orange);
    transform: scale(1.1);
}

.btn-orange {
    background-color: var(--color-primary-orange);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(255, 94, 20, 0.3);
    gap: 12px;
    align-self: flex-start;
    padding: 16px 30px;
}

.btn-orange i {
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.btn-orange:hover {
    background-color: #e04f0d;
    box-shadow: 0 6px 20px rgba(255, 94, 20, 0.4);
    transform: translateY(-2px);
}

.btn-orange:hover i {
    transform: translateX(4px);
}

/* Right Column: Interactive Form */
.contact-form-col {
    padding: 60px 65px;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.form-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-primary-navy);
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.4s ease;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-primary-navy);
    background-color: var(--color-neutral-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input::placeholder, .form-textarea::placeholder {
    color: var(--color-neutral-gray);
    opacity: 0.7;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    background-color: var(--color-white);
    border-color: var(--color-primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 94, 255, 0.1);
}

/* Select wrapper and chevron styling */
.select-wrapper {
    position: relative;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 45px;
}

.form-select:invalid {
    color: var(--color-neutral-gray);
    opacity: 0.7;
}

.select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-neutral-gray);
    pointer-events: none;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.form-select:focus + .select-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: var(--color-primary-blue);
}

.form-textarea {
    resize: none;
}

.btn-submit-blue {
    background-color: var(--color-primary-blue);
    color: var(--color-white);
    padding: 18px;
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 94, 255, 0.2);
    gap: 12px;
}

.btn-submit-blue:hover {
    background-color: var(--color-primary-blue-hover);
    box-shadow: 0 6px 20px rgba(0, 94, 255, 0.3);
    transform: translateY(-2px);
}

.submit-spinner {
    font-size: 1rem;
}

.hidden {
    display: none !important;
}

/* Toast Success Animation Styles */
.form-success-msg {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
    animation: fadeInScale 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.success-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-full);
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.success-checkmark {
    width: 36px;
    height: 36px;
    stroke: currentColor;
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: drawCheckmark 0.6s 0.2s ease-out forwards;
}

@keyframes drawCheckmark {
    to {
        stroke-dashoffset: 0;
    }
}

.success-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary-navy);
    margin-bottom: 12px;
}

.success-desc {
    font-size: 1.05rem;
    color: var(--color-neutral-gray);
    max-width: 320px;
    line-height: 1.5;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
    background-color: var(--color-white);
    padding-top: 80px;
    border-top: 1px solid var(--color-border);
    position: relative;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 30% 20% 22% 28%;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Column 1: Branding */
.footer-brand-col {
    align-items: flex-start;
}

.footer-logo-link {
    display: inline-block;
    height: 140px;
    margin-bottom: 24px;
}

.footer-logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.footer-brand-text {
    font-size: 0.95rem;
    color: var(--color-neutral-gray);
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: left;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon-link {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background-color: var(--color-neutral-light);
    color: var(--color-primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon-link:hover {
    background-color: var(--color-primary-blue);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 94, 255, 0.15);
}

/* Columns 2 & 3: Title and lists */
.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary-navy);
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links-list a {
    font-size: 0.95rem;
    color: var(--color-neutral-gray);
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-links-list a:hover {
    color: var(--color-primary-blue);
    transform: translateX(4px);
}

/* Column 4: Contact Info (with left border) */
.footer-contact-col {
    border-left: 1px solid var(--color-border);
    padding-left: 45px;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-link {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: var(--color-neutral-gray);
    transition: var(--transition-fast);
}

.footer-contact-link:not(.no-hover):hover {
    color: var(--color-primary-blue);
}

.footer-contact-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-blue);
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: inherit;
}

/* Bottom Bar: Copyright */
.footer-copyright-bar {
    background-color: var(--color-primary-blue);
    color: var(--color-white);
    padding: 22px 40px;
    text-align: center;
}

.footer-copyright-bar p {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 1.2;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Large screens adjustment */
@media (min-width: 1600px) {
    .hero-container {
        padding-top: 100px;
        padding-bottom: 140px;
    }
    .hero-title {
        font-size: 4.4rem;
    }
}

/* Notebook / Small Desktop */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }
    .nav-list {
        gap: 20px;
    }
}

/* Tablet / Landscape Mobile */
@media (max-width: 1024px) {
    .nav-menu, .header-phone-cta {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 100%;
        padding-bottom: 80px;
    }

    .hero-content {
        padding-right: 0;
        max-width: 680px;
        margin: 0 auto;
        text-align: center;
        align-items: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    /* Floating bathroom visual card styling on mobile/tablet */
    .hero-visual {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        height: 400px;
        margin-top: 50px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-premium);
        border: 4px solid var(--color-white);
        overflow: hidden;
    }

    .hero-image-overlay {
        background: linear-gradient(to bottom, 
            rgba(255, 255, 255, 0.4) 0%, 
            rgba(255, 255, 255, 0) 50%
        );
    }

    .hero-wave-container {
        bottom: 0;
    }

    .about-container {
        grid-template-columns: 100%;
        gap: 50px;
        padding: 0 40px;
    }

    .about-content {
        text-align: center;
        align-items: center;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        justify-items: center;
        text-align: left;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .choose-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .contact-card {
        grid-template-columns: 1fr;
    }
    .contact-info-col {
        padding: 50px 40px;
        height: 360px;
    }
    .contact-form-col {
        padding: 50px 40px;
    }

    /* Footer Section Tablet */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
    .footer-contact-col {
        border-left: none;
        padding-left: 0;
    }
}

/* Mobile Devices */
@media (max-width: 640px) {
    .nav-container {
        padding: 12px 20px;
    }

    .logo-link {
        height: 48px;
        width: 245px;
    }

    .logo-img {
        height: 170px; /* 50% larger than 113px */
    }

    .hero-container {
        padding: 40px 20px 60px;
    }

    .hero-title {
        font-size: 2.3rem;
        font-weight: 800;
        line-height: 1.25;
        letter-spacing: -0.5px;
    }

    .hero-kicker {
        font-size: 0.8rem;
        font-weight: 700;
        background-color: rgba(255, 94, 20, 0.08);
        border: 1px solid rgba(255, 94, 20, 0.15);
        color: var(--color-primary-orange);
        padding: 5px 12px;
        border-radius: var(--radius-full);
        letter-spacing: 1.5px;
        display: inline-block;
        margin-bottom: 18px;
        box-shadow: 0 2px 8px rgba(255, 94, 20, 0.04);
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 35px;
    }

    .btn {
        width: 100%;
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--color-primary-blue) 0%, #0052e0 100%);
        box-shadow: 0 4px 15px rgba(0, 94, 255, 0.25);
    }

    .btn-secondary {
        background-color: var(--color-white);
        border: 1px solid rgba(226, 232, 240, 0.8);
        box-shadow: 0 4px 12px rgba(11, 26, 48, 0.02);
    }

    /* Premium horizontal grid layout for mobile badges */
    .hero-badges {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        width: 100%;
        padding-top: 24px;
        border-top: 1px solid rgba(226, 232, 240, 0.8);
    }

    .badge-item {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.8) 100%);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 12px 4px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.6);
        box-shadow: 0 4px 15px rgba(11, 26, 48, 0.03);
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }

    .badge-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 94, 255, 0.08);
    }

    .gas-safe-logo {
        width: 36px;
        height: 36px;
    }

    .badge-icon-wrapper {
        width: 36px;
        height: 36px;
        border-radius: var(--radius-sm);
        background-color: rgba(0, 94, 255, 0.05);
        border: 1px solid rgba(0, 94, 255, 0.1);
    }

    .badge-icon-svg {
        width: 16px;
        height: 16px;
    }

    .badge-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .badge-title {
        font-size: 0.75rem;
        font-weight: 700;
        line-height: 1.25;
        margin-bottom: 2px;
    }

    .badge-sub {
        font-size: 0.65rem;
        line-height: 1.2;
    }

    .hero-visual {
        height: 320px;
        margin-top: 40px;
    }

    .waves-svg {
        height: 45px;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        justify-items: start;
        text-align: left;
    }
    
    .stat-item {
        width: 100%;
        background-color: var(--color-neutral-light);
        padding: 16px 20px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(226, 232, 240, 0.6);
        box-shadow: var(--shadow-sm);
    }

    /* Services Section Mobile */
    .services-section {
        padding: 80px 0;
    }

    .services-section-title {
        font-size: 2.2rem;
    }

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

    /* Why Choose Us Mobile */
    .choose-section {
        padding: 80px 0;
    }

    .choose-section-title {
        font-size: 2.2rem;
    }

    .choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Testimonials Mobile */
    .reviews-section {
        padding: 80px 0;
    }

    .reviews-section-title {
        font-size: 2.2rem;
    }

    .review-card {
        padding: 30px 20px;
    }

    /* Contact Section Mobile */
    .contact-section {
        padding: 80px 0;
    }

    .contact-container {
        padding: 0 20px;
    }

    .contact-info-col {
        padding: 40px 24px;
        height: 320px;
    }

    .info-title {
        font-size: 1.8rem;
    }

    .info-desc {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .info-details {
        gap: 16px;
        margin-bottom: 30px;
    }

    .info-link {
        font-size: 1rem;
    }

    .info-icon {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .contact-form-col {
        padding: 40px 24px;
    }

    .form-title {
        font-size: 1.8rem;
        margin-bottom: 24px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-input, .form-select, .form-textarea {
        padding: 14px 18px;
    }

    /* Footer Section Mobile */
    .site-footer {
        padding-top: 60px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }
    .footer-logo-link {
        height: 120px;
        margin-bottom: 18px;
    }
    .footer-col-title {
        margin-bottom: 18px;
    }
    .footer-copyright-bar {
        padding: 18px 20px;
    }
}
