@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
    --white: #ffffffff;
    --castleton-green: #115133ff;
    --dark-green: #092715ff;
    --jade: #2bac69ff;
    --onyx: #3c3c3cff;
    --black: #000000ff;
    --dark-bg: #1a1a1aff;
}

html {
    scroll-behavior: smooth;
    overscroll-behavior: none;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--black);
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    overscroll-behavior: none;
}

body::before {
    content: '';
    position: absolute;
    top: 100vh;
    left: 0;
    width: 100%;
    height: var(--bg-max-height, auto);
    background-image: url('../images/city_green_2.jpg?v=1761765250');
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: -2;
    transform: translateY(var(--parallax-y, 0px));
    will-change: transform;
    pointer-events: none;
    opacity: var(--bg-before-opacity, 1);
    transition: opacity 0.5s ease;
}

body::after {
    content: '';
    position: absolute;
    top: var(--bg-after-top, calc(100vh + var(--bg-max-height, 0px)));
    left: 0;
    width: 100%;
    height: var(--bg-after-max-height, calc(100vh));
    background-image: url('../images/city_green_2.jpg?v=1761765250');
    background-size: 100% auto;
    background-position: var(--bg-after-position, center center);
    background-repeat: no-repeat;
    z-index: -1;
    transform: translateY(var(--parallax-y-duplicate, 0px));
    will-change: transform, opacity;
    overflow: hidden;
    pointer-events: none;
    opacity: var(--bg-after-opacity, 0);
}

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

/* Header Styles */
.header {
    background: var(--black);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(43, 172, 105, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
}

.header .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

.logo {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 6px;
    margin-bottom: 8px;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav {
    margin-right: 20px;
}

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

.nav a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: var(--jade);
}


/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* Loading Indicator */
.hero-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.5s ease-out;
}

.hero-loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid #2bac69;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    border-top-color: #2bac69;
    animation-duration: 1.5s;
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    border-top-color: #2bac69;
    animation-duration: 0.8s;
}

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

.loading-text {
    color: #2bac69;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.loading-progress {
    width: 200px;
    height: 4px;
    background: rgba(43, 172, 105, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #2bac69, #4ade80);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-bg) 50%, var(--onyx) 100%);
    background-size: cover;
    background-position: center;
    z-index: 1;
    box-shadow: inset 0 -50px 80px rgba(0, 0, 0, 1), inset 0 -100px 150px rgba(0, 0, 0, 0.8);
}

.hero-background.current {
    transform: translateX(0);
    z-index: 3;
}

.hero-background.next {
    transform: translateX(100%);
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
}

.hero-title {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 1;
    padding: 40px;
    text-align: right;
}

.hero-title h1 {
    font-size: clamp(2rem, 8vw, 6rem);
    font-weight: 900;
    color: rgba(43, 172, 105, 0.5) !important;
    text-shadow: 0 0 5px rgba(255,255,255,0.3), 0 0 10px rgba(255,255,255,0.2);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    transform: translateX(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
    visibility: visible;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.current-title {
    z-index: 3;
    opacity: 1;
    visibility: visible;
}

.next-title {
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
}


.cta-button {
    background: var(--jade);
    border: 2px solid var(--jade);
    color: var(--white);
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--castleton-green);
    border-color: var(--castleton-green);
    color: var(--white);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 5;
}

.carousel-btn {
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(0,0,0,0.7);
}

.carousel-btn:disabled {
    background: rgba(0,0,0,0.2);
    color: rgba(255,255,255,0.3);
    cursor: not-allowed;
    opacity: 0.5;
}

.carousel-btn:disabled:hover {
    background: rgba(0,0,0,0.2);
}

/* What We Do Section */
.what-we-do {
    background: rgba(26, 26, 26, 0.9);
    padding: 80px 0;
    backdrop-filter: blur(2px);
    transition: margin 0.3s ease;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.left-column h2 {
    font-size: 36px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 15px;
}

.title-line {
    width: 60px;
    height: 3px;
    background: var(--jade);
    margin-bottom: 30px;
}

.left-column p {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.8;
}

.view-more-btn {
    background: var(--jade);
    border: 2px solid var(--jade);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-more-btn:hover {
    background: var(--castleton-green);
    border-color: var(--castleton-green);
    color: var(--white);
}

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

.service-card {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(43, 172, 105, 0.3);
    backdrop-filter: blur(2px);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(43, 172, 105, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--jade);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 24px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--white);
}

.service-card p {
    font-size: 14px;
    color: var(--white);
    line-height: 1.6;
    opacity: 0.8;
}

/* Contact Section */
.contact-section {
    background: rgba(0, 0, 0, 0.9);
    padding: 80px 0;
    backdrop-filter: blur(2px);
    transition: margin 0.3s ease;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.contact-form {
    width: 100%;
    max-width: 800px;
}

.contact-form h2 {
    font-size: 36px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 20px;
    text-align: center;
}


.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid rgba(43, 172, 105, 0.3);
    border-radius: 5px;
    font-size: 14px;
    background: var(--dark-bg);
    color: var(--white);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--jade);
}

/* Google reCAPTCHA v2 Styles */
.captcha-container {
    margin: 20px 0;
    padding: 15px;
    background: rgba(43, 172, 105, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(43, 172, 105, 0.3);
    display: flex;
    justify-content: center;
}

.g-recaptcha {
    transform: scale(0.9);
    transform-origin: center;
}

.send-btn {
    background: var(--jade);
    border: 2px solid var(--jade);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.send-btn:hover {
    background: var(--castleton-green);
    border-color: var(--castleton-green);
    color: var(--white);
}

/* Map Section */
.map-section {
    height: 400px;
    background: rgba(26, 26, 26, 0.9);
    position: relative;
    backdrop-filter: blur(2px);
    transition: margin 0.3s ease;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-info {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--black);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    max-width: 300px;
    border: 1px solid rgba(43, 172, 105, 0.3);
    z-index: 10;
}

.map-info h3 {
    font-size: 18px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 10px;
}

.map-info p {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 15px;
    opacity: 0.8;
}

.map-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.map-links a {
    color: var(--jade);
    text-decoration: none;
    font-size: 12px;
    padding: 6px 12px;
    border: 1px solid rgba(43, 172, 105, 0.3);
    border-radius: 4px;
    background: rgba(43, 172, 105, 0.1);
    transition: all 0.3s ease;
}

.map-links a:hover {
    background: rgba(43, 172, 105, 0.2);
    border-color: var(--jade);
    transform: translateY(-1px);
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    color: #ffd700;
    font-size: 16px;
}

.map-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.map-links a {
    color: var(--jade);
    text-decoration: none;
    font-size: 14px;
}

.map-links a:hover {
    text-decoration: underline;
}


/* Google Map Styles */
.google-map-container {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background: var(--dark-bg);
    border: 1px solid var(--jade);
    z-index: 1;
    position: relative;
    top: 5px;
    bottom: 5px;
}

.google-map-container iframe {
    border-radius: 10px;
    filter: invert(100%) grayscale(0%) sepia(92%) hue-rotate(102deg) saturate(0%);
}

/* Google Maps Preloader */
.map-preloader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 10px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.map-preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.map-preloader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(43, 172, 105, 0.3);
    border-top: 4px solid var(--jade);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.map-preloader-text {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    opacity: 0.9;
}

.map-preloader-subtext {
    color: var(--white);
    font-size: 12px;
    text-align: center;
    opacity: 0.7;
    margin-top: 8px;
}

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


/* Footer */
.footer {
    background: var(--black);
    padding: 40px 0;
    border-top: 1px solid rgba(43, 172, 105, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    color: var(--white);
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
}

.scroll-to-top {
    background: var(--jade);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(43, 172, 105, 0.3);
}

.scroll-to-top:hover {
    background: var(--castleton-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(43, 172, 105, 0.4);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

.floating-left {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: auto;
}

.floating-right {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: auto;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    transition: all 0.3s ease;
}

.floating-btn.settings {
    background: var(--jade);
}

.floating-btn.chat {
    background: var(--castleton-green);
}

.floating-btn.cart {
    background: var(--dark-green);
}

.floating-btn.price {
    background: var(--jade);
}

.floating-btn.bag {
    background: var(--jade);
}

.floating-btn:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        z-index: 1000;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        height: 60px;
        display: flex;
        align-items: center;
    }
    
    .header .container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 60px;
    }
    
    .logo {
        position: static;
        transform: none;
        margin: 0;
        flex-shrink: 0;
        max-width: 180px;
        order: 1;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    
    .logo-image {
        height: 46px;
        max-height: 100%;
        width: auto;
        max-width: 100%;
        object-fit: contain;
        display: block;
    }
    
    .nav {
        margin: 0;
        flex-shrink: 0;
        order: 2;
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    .nav ul {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: center;
        gap: 8px;
        margin: 0;
        padding: 0;
        list-style: none;
        height: 100%;
        width: auto;
    }
    
    .nav li {
        display: flex;
        align-items: center;
        height: 100%;
    }
    
    .nav a {
        padding: 6px 10px;
        font-size: 13px;
        white-space: nowrap;
        text-decoration: none;
        color: var(--white);
        font-weight: 500;
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        transition: all 0.2s ease;
        position: relative;
        display: flex;
        align-items: center;
        margin-top: 7px;
        margin-bottom: 7px;
    }
    
    .nav a:active {
        background-color: rgba(43, 172, 105, 0.2);
        transform: scale(0.98);
    }
    
    .nav a:focus {
        outline: none;
        background-color: rgba(43, 172, 105, 0.1);
    }
    
    .nav a:focus:not(:active) {
        background-color: transparent;
    }
}

/* iOS Portrait Mode Specific Fixes */
@media (max-width: 414px) and (orientation: portrait) {
    .header {
        height: 50px;
        display: flex;
        align-items: center;
    }
    
    .header .container {
        padding: 0 5px;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        min-height: 50px;
        display: flex;
    }
    
    .logo {
        max-width: 140px;
        flex-shrink: 0;
        margin: 0;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    
    .logo-image {
        height: 38px;
        max-height: 100%;
        width: auto;
        object-fit: contain;
        display: block;
    }
    
    .nav {
        margin: 0;
        flex-shrink: 1;
        min-width: 0;
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    .nav ul {
        gap: 4px;
        justify-content: flex-end;
        margin: 0;
        padding: 0;
        flex-wrap: nowrap;
        overflow: hidden;
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    .nav li {
        display: flex;
        align-items: center;
        height: 100%;
    }
    
    .nav a {
        padding: 4px 3px;
        font-size: 10px;
        white-space: nowrap;
        overflow: hidden;
        max-width: 60px;
        hyphens: none;
        -webkit-hyphens: none;
        -moz-hyphens: none;
        -ms-hyphens: none;
        display: flex;
        align-items: center;
        margin-top: 6px;
        margin-bottom: 6px;
    }
    
    .hero-title {
        align-items: flex-end !important;
        justify-content: center !important;
        bottom: 80px !important;
        top: auto !important;
        padding: 30px 20px !important;
        text-align: center !important;
    }
    
    .hero-title h1 {
        font-size: clamp(1.8rem, 8vw, 4rem) !important;
        color: rgba(43, 172, 105, 0.95) !important;
        text-shadow: 0 0 20px rgba(43, 172, 105, 0.8) !important;
        margin-bottom: 0px !important;
        line-height: 1.0 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        hyphens: none !important;
        -webkit-hyphens: none !important;
        -moz-hyphens: none !important;
        -ms-hyphens: none !important;
    }
}

/* Extra small screens and iPhone landscape */
@media (max-width: 667px) {
    .header {
        height: 60px;
        display: flex;
        align-items: center;
    }
    
    .header .container {
        padding: 0 10px;
        gap: 10px;
        height: 100%;
    }
    
    .logo {
        max-width: 150px;
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    .logo-image {
        height: 40px;
        max-height: 100%;
        width: auto;
        object-fit: contain;
    }
    
    .nav {
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    .nav ul {
        gap: 6px;
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    .nav li {
        display: flex;
        align-items: center;
        height: 100%;
    }
    
    .nav a {
        padding: 5px 8px;
        font-size: 12px;
        display: flex;
        align-items: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .content-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .floating-buttons {
        display: none;
    }
    
    .carousel-controls {
        padding: 0 15px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* iPhone landscape and small screens */
@media (max-width: 896px) and (orientation: landscape) {
    .header {
        height: 60px;
        display: flex !important;
        align-items: center !important;
    }
    
    .header .container {
        padding: 0 15px !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
    }
    
    .logo {
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        position: static !important;
        transform: none !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        order: 1 !important;
    }
    
    .logo-image {
        height: 46px !important;
        max-height: 100% !important;
        width: auto !important;
        object-fit: contain !important;
        display: block !important;
    }
    
    .nav {
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        order: 2 !important;
    }
    
    .nav ul {
        gap: 10px !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-end !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }
    
    .nav li {
        display: flex !important;
        align-items: center !important;
        height: 100% !important;
    }
    
    .nav a {
        padding: 12px 16px !important;
        font-size: 16px !important;
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 6px !important;
        transition: all 0.2s ease !important;
        -webkit-tap-highlight-color: transparent !important;
        background-color: rgba(43, 172, 105, 0.1) !important;
        margin-top: 7px !important;
        margin-bottom: 7px !important;
    }
    
    .nav a:active {
        background-color: rgba(43, 172, 105, 0.3) !important;
        transform: scale(0.98) !important;
    }
    
    .hero-title h1 {
        font-size: clamp(1.2rem, 6vw, 2.5rem) !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        hyphens: none !important;
        -webkit-hyphens: none !important;
        -moz-hyphens: none !important;
        -ms-hyphens: none !important;
    }
}

/* Force mobile landscape styles */
@media (max-width: 1024px) and (orientation: landscape) {
    .header .container {
        justify-content: space-between !important;
        flex-direction: row !important;
    }
    
    .logo {
        justify-content: flex-start !important;
        order: 1 !important;
    }
    
    .nav {
        order: 2 !important;
    }
    
    .nav ul {
        justify-content: flex-end !important;
    }
    
    .nav a {
        padding: 12px 16px !important;
        font-size: 16px !important;
        min-height: 44px !important;
        background-color: rgba(43, 172, 105, 0.1) !important;
    }
}

/* Mobile landscape - proper styles */
@media (max-width: 1200px) and (orientation: landscape) {
    .header .container {
        justify-content: space-between !important;
        flex-direction: row !important;
    }
    
    .logo {
        justify-content: flex-start !important;
        order: 1 !important;
    }
    
    .nav {
        order: 2 !important;
    }
    
    .nav ul {
        justify-content: flex-end !important;
    }
    
    .nav a {
        padding: 12px 16px !important;
        font-size: 16px !important;
        min-height: 44px !important;
        background-color: rgba(43, 172, 105, 0.1) !important;
        border-radius: 6px !important;
        transition: all 0.2s ease !important;
        -webkit-tap-highlight-color: transparent !important;
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        -khtml-user-select: none !important;
        -moz-user-select: none !important;
        -ms-user-select: none !important;
        user-select: none !important;
        position: relative !important;
    }
    
    .nav a:active {
        background-color: rgba(43, 172, 105, 0.3) !important;
        transform: scale(0.98) !important;
    }
    
    .nav a:focus {
        outline: none !important;
        background-color: rgba(43, 172, 105, 0.2) !important;
    }
    
    .nav a:focus:not(:active) {
        background-color: rgba(43, 172, 105, 0.1) !important;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
    }
    
    .hero-content {
        height: 100vh;
        min-height: 100vh;
    }
    
    .hero-title {
        padding: 20px;
        align-items: flex-end;
        justify-content: center;
        text-align: center;
        bottom: 60px;
        top: auto;
    }
    
    .hero-title h1 {
        font-size: clamp(2rem, 8vw, 4rem);
        color: rgba(43, 172, 105, 0.9) !important;
        text-shadow: 0 0 15px rgba(43, 172, 105, 0.7);
        white-space: normal;
        line-height: 1.1;
        margin-bottom: 0px;
    }
    
    .carousel-controls {
        padding: 0 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .what-we-do,
    .contact-section {
        padding: 40px 0;
    }
    
    .left-column h2,
    .contact-form h2 {
        font-size: 28px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .map-info {
        max-width: 250px;
        padding: 15px;
    }
    
    /* Move map info above the map on mobile to avoid pin overlap */
    .map-section {
        height: auto;
        min-height: 400px;
    }
    
    .map-container {
        display: flex;
        flex-direction: column;
    }
    
    .map-info {
        position: static;
        order: 1;
        margin: 20px;
        margin-bottom: 10px;
        max-width: calc(100% - 40px);
    }
    
    .google-map-container {
        order: 2;
        margin-top: 0;
        margin: 0 20px 20px 20px;
        height: 300px;
    }
}
