@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #070707;
    color: #F8EEE3;
    line-height: 1.6;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
    -webkit-text-size-adjust: 100%;
    /* Prevent font scaling in landscape on iOS */
}

.no-scroll {
    overflow: hidden;
}

/* Spacer */
.content-spacer {
    padding-top: 180px;
    /* Increased to accommodate larger logo */
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #070707;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.nav-logo,
.hamburger-spacer {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

.hamburger-spacer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.nav-logo img {
    height: 150px;
    width: auto;
}

.nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 3rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-flex: 2;
    -ms-flex: 2;
    -webkit-flex: 2;
    flex: 2;
}

.nav-links a {
    text-decoration: none;
    color: #F8EEE3;
    font-size: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
    position: relative;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
    z-index: 1;
}

/* Smoke Hover Effect */
.nav-links a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: #B6DC12;
    border-radius: 50%;
    -webkit-filter: blur(4px);
    filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

.nav-links a:hover {
    color: #B6DC12;
}

.nav-links a:hover::after {
    -webkit-animation: illustrativePuff 0.8s infinite linear;
    animation: illustrativePuff 0.8s infinite linear;
}

@-webkit-keyframes illustrativePuff {
    0% {
        -webkit-transform: translateY(-50%) scale(0.4);
        transform: translateY(-50%) scale(0.4);
        opacity: 0;
        box-shadow:
            5px -5px 0 0 #B6DC12,
            5px 5px 0 0 #B6DC12;
    }

    20% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(60px, -50%) scale(3);
        transform: translate(60px, -50%) scale(3);
        opacity: 0;
        box-shadow:
            20px -20px 0 5px rgba(182, 220, 18, 0),
            20px 20px 0 5px rgba(182, 220, 18, 0);
    }
}

@keyframes illustrativePuff {
    0% {
        -webkit-transform: translateY(-50%) scale(0.4);
        transform: translateY(-50%) scale(0.4);
        opacity: 0;
        box-shadow:
            5px -5px 0 0 #B6DC12,
            5px 5px 0 0 #B6DC12;
    }

    20% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(60px, -50%) scale(3);
        transform: translate(60px, -50%) scale(3);
        opacity: 0;
        box-shadow:
            20px -20px 0 5px rgba(182, 220, 18, 0),
            20px 20px 0 5px rgba(182, 220, 18, 0);
    }
}

/* Hamburger Styles */
.hamburger {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #F8EEE3;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(7, 7, 7, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 2rem;
    -webkit-transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    text-decoration: none;
    color: #F8EEE3;
    font-size: 2.5rem;
    font-family: 'Bebas Neue', cursive;
    text-transform: uppercase;
    -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
    transition: color 0.3s ease, -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease, color 0.3s ease;
    transition: transform 0.3s ease, color 0.3s ease;
    transition: transform 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
    letter-spacing: 2px;
}

.mobile-menu a:hover {
    color: #B6DC12;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 180px);
    min-height: calc(100dvh - 180px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 0 7%;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    z-index: 2;
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 8rem;
    line-height: 1;
    color: #F8EEE3;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #F8EEE3;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 100%;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 1rem;
}

.badge {
    background-color: #B6DC12;
    color: #070707;
    padding: 0.2rem 1rem;
    border-radius: 4px;
    font-weight: 700;
    display: inline-block;
}

.cta-button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3.5rem;
    background-color: #B6DC12;
    color: #070707;
    text-decoration: none;
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    border-radius: 4px;
    letter-spacing: 1px;
    position: relative;
    -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
    transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
    -o-transition: background-color 0.3s ease, transform 0.3s ease;
    transition: background-color 0.3s ease, transform 0.3s ease;
    transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
    border: none;
    z-index: 10;
}

.cta-button svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5px;
}

.cta-button:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(182, 220, 18, 0.4);
}

/* Flash border effect */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid #B6DC12;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s;
}

.cta-button:hover::before {
    opacity: 1;
    -webkit-animation: flashBorder 1.5s linear infinite;
    animation: flashBorder 1.5s linear infinite;
}

@-webkit-keyframes flashBorder {

    0%,
    100% {
        -webkit-clip-path: inset(0 0 98% 0);
        clip-path: inset(0 0 98% 0);
    }

    25% {
        -webkit-clip-path: inset(0 98% 0 0);
        clip-path: inset(0 98% 0 0);
    }

    50% {
        -webkit-clip-path: inset(98% 0 0 0);
        clip-path: inset(98% 0 0 0);
    }

    75% {
        -webkit-clip-path: inset(0 0 0 98%);
        clip-path: inset(0 0 0 98%);
    }
}

@keyframes flashBorder {

    0%,
    100% {
        -webkit-clip-path: inset(0 0 98% 0);
        clip-path: inset(0 0 98% 0);
    }

    25% {
        -webkit-clip-path: inset(0 98% 0 0);
        clip-path: inset(0 98% 0 0);
    }

    50% {
        -webkit-clip-path: inset(98% 0 0 0);
        clip-path: inset(98% 0 0 0);
    }

    75% {
        -webkit-clip-path: inset(0 0 0 98%);
        clip-path: inset(0 0 0 98%);
    }
}

.hero-visual {
    -webkit-box-flex: 1.2;
    -ms-flex: 1.2;
    -webkit-flex: 1.2;
    flex: 1.2;
    height: 70vh;
    position: relative;
    cursor: -webkit-grab;
    cursor: grab;
}

.hero-visual:active {
    cursor: grabbing;
}

#three-container {
    width: 100%;
    height: 100%;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Services Section */
.services-section {
    position: relative;
    padding: 10rem 0 0;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 8rem;
    text-align: center;
    margin-bottom: 5rem;
    letter-spacing: 2px;

    /* Reveal Animation Setup */
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #B6DC12), color-stop(50%, #444));
    background: -webkit-linear-gradient(left, #B6DC12 50%, #444 50%);
    background: -o-linear-gradient(left, #B6DC12 50%, #444 50%);
    background: linear-gradient(to right, #B6DC12 50%, #444 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    will-change: background-position;
}

.services-pin-container {
    height: 100vh;
    height: 100dvh;
    position: relative;
    width: 100%;
}

.service-card {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    height: 100dvh;
    will-change: transform;
}

.service-card {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 0 7%;
    background-color: #070707;
    z-index: 1;
}

/* We'll use JS to handle the stacking/reveal, but setting base styles here */
.service-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    z-index: 2;
    padding-right: 5%;
}

.service-content h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 4.5rem;
    color: #F8EEE3;
    margin-bottom: 1.5rem;
    line-height: 1;
    text-transform: uppercase;
}

.service-content p {
    font-size: 1.4rem;
    color: #F8EEE3;
    opacity: 0.9;
    max-width: 450px;
    font-weight: 300;
}

.service-image {
    -webkit-box-flex: 1.2;
    -ms-flex: 1.2;
    -webkit-flex: 1.2;
    flex: 1.2;
    height: 70vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.service-card:hover .service-image img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

/* Locations Section */
.locations-section {
    position: relative;
    padding: 10rem 0;
    background-color: #070707;
    width: 100%;
}

.locations-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 7%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    gap: 4rem;
}

.locations-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

.locations-subtitle {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    color: #F8EEE3;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.locations-list {
    list-style: none;
    padding: 0;
}

.locations-list li {
    font-size: 1.5rem;
    color: #F8EEE3;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 2rem;
    font-weight: 300;
}

.locations-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #B6DC12;
    border-radius: 50%;
}

.locations-map {
    -webkit-box-flex: 1.2;
    -ms-flex: 1.2;
    -webkit-flex: 1.2;
    flex: 1.2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

#map-container svg {
    width: 100%;
    height: auto;
    max-height: 70vh;
}

#map-container svg path {
    fill: #B6DC12;
    -webkit-transition: fill 0.4s ease;
    -o-transition: fill 0.4s ease;
    transition: fill 0.4s ease;
}


/* Why Us Section */
.why-us-section {
    padding: 10rem 0;
    background-color: #070707;
    width: 100%;
}

.reasons-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0 auto 8rem;
    padding: 0 7%;
    gap: 3rem;
}

.reason-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 2rem;
    background: rgba(182, 220, 18, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(182, 220, 18, 0.1);
    -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease;
    transition: background 0.3s ease, -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease, background 0.3s ease;
    transition: transform 0.3s ease, background 0.3s ease;
    transition: transform 0.3s ease, background 0.3s ease, -webkit-transform 0.3s ease;
}

.reason-item:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    background: rgba(182, 220, 18, 0.1);
}

.reason-item i {
    width: 40px;
    height: 40px;
    color: #B6DC12;
    flex-shrink: 0;
}

.reason-item h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: #F8EEE3;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.reviews-widget-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 7%;
}

/* How It Works Section */
.how-section {
    padding: 10rem 0;
    background-color: #070707;
    width: 100%;
}

.how-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 7%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 6rem;
}

.progress-line {
    position: absolute;
    left: 10.5%;
    top: 50px;
    bottom: 50px;
    width: 2px;
    background: rgba(248, 238, 227, 0.1);
    z-index: 1;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #B6DC12;
    box-shadow: 0 0 15px #B6DC12;
}

.how-step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
    opacity: 0.3;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    -o-transition: opacity 0.5s ease, transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.how-step.active {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: #070707;
    border: 2px solid rgba(182, 220, 18, 0.3);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: border-color 0.5s ease, -webkit-box-shadow 0.5s ease;
    transition: border-color 0.5s ease, -webkit-box-shadow 0.5s ease;
    -o-transition: border-color 0.5s ease, box-shadow 0.5s ease;
    transition: border-color 0.5s ease, box-shadow 0.5s ease;
    transition: border-color 0.5s ease, box-shadow 0.5s ease, -webkit-box-shadow 0.5s ease;
}

.how-step.active .step-icon {
    border-color: #B6DC12;
    box-shadow: 0 0 20px rgba(182, 220, 18, 0.2);
}

.step-icon i {
    width: 35px;
    height: 35px;
    color: #F8EEE3;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.how-step.active .step-icon i {
    color: #B6DC12;
}

.step-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

.step-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: #B6DC12;
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.step-content h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: #F8EEE3;
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 1;
}

.step-content p {
    font-size: 1.2rem;
    color: #F8EEE3;
    opacity: 0.8;
    max-width: 500px;
}

.step-content a {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
}

/* Footer */
.footer {
    background-color: #070707;
    padding: 5rem 0 3rem;
    width: 100%;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 7%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 4rem;
}

.footer-left,
.footer-right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

.footer-center {
    -webkit-box-flex: 1.5;
    -ms-flex: 1.5;
    -webkit-flex: 1.5;
    flex: 1.5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    text-align: center;
}

.footer-info-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.footer-info-item i {
    color: #B6DC12;
    width: 20px;
    height: 20px;
}

.footer-info-item p,
.footer-info-item a {
    font-size: 1.1rem;
    color: #F8EEE3;
    opacity: 0.8;
    text-decoration: none;
    -webkit-transition: opacity 0.3s ease, color 0.3s ease;
    -o-transition: opacity 0.3s ease, color 0.3s ease;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-info-item a:hover {
    color: #B6DC12;
    opacity: 1;
}

.footer-logo-main {
    height: 120px;
    margin-bottom: 1.5rem;
}

.footer-side-image {
    height: 120px;
    width: 180px;
    object-fit: contain;
    /* Changed from cover to avoid cutoff */
    border-radius: 8px;
    float: right;
    opacity: 0.8;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.footer-side-image:hover {
    opacity: 1;
}

.designer-credit {
    font-size: 0.9rem;
    color: #F8EEE3;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.designer-credit a {
    color: #B6DC12;
    text-decoration: none;
    font-weight: 500;
}

.designer-credit a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 0.8rem;
    color: #F8EEE3;
    opacity: 0.4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Unified Media Queries */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 6rem;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        -webkit-transform: translateY(8px) rotate(45deg);
        -ms-transform: translateY(8px) rotate(45deg);
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        -webkit-transform: translateY(-8px) rotate(-45deg);
        -ms-transform: translateY(-8px) rotate(-45deg);
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-visual {
        width: 100%;
        height: 50vh;
        margin-top: 2rem;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        white-space: nowrap;
        font-size: 1.6rem;
    }

    .services-section {
        padding-top: 5rem;
    }

    .section-title {
        font-size: 5rem;
        margin-bottom: 3rem;
    }

    .service-card {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        text-align: center;
        padding: 4rem 2rem;
        height: 100vh;
        height: 100dvh;
    }

    .service-content {
        padding-right: 0;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .service-content h3 {
        font-size: 3rem;
    }

    .service-image {
        width: 100%;
        height: 40vh;
    }

    .nav-logo img {
        height: 100px;
    }

    .content-spacer {
        padding-top: 130px;
    }

    .locations-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .locations-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: left;
        -ms-flex-align: left;
        -webkit-align-items: left;
        align-items: left;
    }

    .locations-list li {
        width: fit-content;
        text-align: left;
        margin-bottom: 1rem;
    }

    .locations-list li::before {
        display: block;
        /* Re-enable bullets */
    }

    .locations-subtitle {
        font-size: 2.5rem;
    }

    .locations-map {
        width: 100%;
        max-width: 500px;
    }

    .why-us-section {
        padding: 5rem 0;
    }

    .reasons-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 5rem;
    }

    .reason-item {
        width: 100%;
        max-width: 400px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
    }

    /* How It Works Mobile */
    .how-section {
        padding: 5rem 0;
    }

    .how-container {
        gap: 4rem;
    }

    .progress-line {
        left: 30px;
    }

    .how-step {
        gap: 2rem;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon i {
        width: 25px;
        height: 25px;
    }

    .step-content h3 {
        font-size: 2rem;
    }

    /* Footer Mobile */
    .footer-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .footer-left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: left;
        -ms-flex-align: left;
        -webkit-align-items: left;
        align-items: left;
    }

    .footer-right {
        display: none;
        /* Hide side logo on mobile to reduce clutter */
    }

    .footer-logo-main {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        white-space: nowrap;
        gap: 0.5rem;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .service-content h3 {
        font-size: 2.2rem;
    }

    .service-content p {
        font-size: 1.1rem;
    }

    .nav-logo img {
        height: 80px;
    }

    .content-spacer {
        padding-top: 110px;
    }

    .locations-subtitle {
        font-size: 2rem;
    }

    .locations-list li {
        font-size: 1.2rem;
    }

    .reason-item h3 {
        font-size: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.6rem;
    }

    .step-content p {
        font-size: 1rem;
    }

    .footer-info-item p,
    .footer-info-item a {
        font-size: 1rem;
        align-items: left;
    }

    .copyright {
        font-size: 0.7rem;
    }
}

/* Landscape Responsiveness */
@media (max-height: 500px) and (orientation: landscape) {
    .content-spacer {
        padding-top: 80px;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .nav-logo img {
        height: 60px;
    }

    .hero {
        min-height: auto;
        padding: 4rem 7%;
        flex-direction: row;
        text-align: left;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-visual {
        height: 80vh;
        height: 80dvh;
        margin-top: 0;
    }

    .hero-subtitle {
        margin: 0 0 1.5rem 0;
        justify-content: flex-start;
    }

    .section-title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .services-section {
        padding: 5rem 0 0;
    }

    /* Pinned sections in landscape need to handle height carefully */
    .services-pin-container,
    .service-card {
        height: auto !important;
        min-height: 100vh;
        min-height: 100dvh;
        position: relative !important;
        top: auto !important;
        transform: none !important;
    }

    .service-card {
        flex-direction: row;
        padding: 4rem 7%;
        gap: 2rem;
    }

    .service-content {
        flex: 1;
        text-align: left;
    }

    .service-image {
        flex: 0.8;
        height: 60vh;
        height: 60dvh;
    }

    .locations-container {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .locations-map {
        max-width: 40%;
    }

    .reasons-container {
        flex-direction: row;
        justify-content: center;
    }

    .reason-item {
        width: auto;
    }

    .how-container {
        gap: 3rem;
    }

    .progress-line {
        top: 40px;
        bottom: 40px;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .step-icon i {
        width: 20px;
        height: 20px;
    }

    .mobile-menu {
        gap: 1rem;
        overflow-y: auto;
        padding: 2rem 0;
    }

    .mobile-menu a {
        font-size: 1.5rem;
    }
}