:root {
    --primary-color: #1a1a1a;
    --secondary-color: #000000;
    --text-color: #333;
    --transition: all 0.3s ease;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: 1px solid rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --glass-blur: blur(8px);
}

html { 
    scroll-behavior: smooth; 
    /* Offset native anchor jumps by fixed navbar height */
    scroll-padding-top: 90px;
}

/* Ensure the hero section never clips text */
.hero, .hero-content { overflow: visible; }

/* Force mobile nav layout up to 1242px to avoid cutoff on iPad widths */
@media (max-width: 1242px) {
    .hamburger { display: block; z-index: 1001; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.2rem;
        transition: right 0.3s ease;
        box-shadow: -6px 0 18px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    .nav-links.active { right: 0; }
    .nav-links li { margin: 1rem 0; width: 100%; }
    .nav-links a { 
        display: block;
        font-size: 1.15rem; 
        padding: 0.9rem 1.2rem; 
        min-height: 48px; /* recommended mobile touch target */
        line-height: 1.2;
        width: 100%;
    }
    .social-links { display: none; }
}

/* Extra-small devices: slightly reduce hero title to prevent edge clipping */
@media (max-width: 360px) {
    .hero-content .hero-title { font-size: 1.2rem; letter-spacing: 0.05px; }
}

/* Global metallic heading style (applies to h2/h3). Animation is applied via JS-added classes. */
section h2,
section h3 {
    display: block;
    text-align: center;
    margin: 0.5rem auto 1.5rem;
    font-family: 'Arial', sans-serif; /* match hero title font */
    font-weight: 800;
    line-height: 1.2;
    font-size: 2rem;
    /* Solid gray (no gradient) */
    color: #5f5f5f;
    letter-spacing: 0.3px;
}

/* Screech-in animations for headings (triggered on scroll) */
.screech-pending { opacity: 0; }
.screech-left {
    opacity: 0;
    animation: screechInLeft 1.2s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
}

.screech-right {
    opacity: 0;
    animation: screechInRight 1.2s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
}

@keyframes screechInLeft {
    from { transform: translateX(-140px); opacity: 0; }
    70%  { transform: translateX(10px);  opacity: 1; }
    to   { transform: translateX(0);     opacity: 1; }
}

@keyframes screechInRight {
    from { transform: translateX(140px); opacity: 0; }
    70%  { transform: translateX(-10px); opacity: 1; }
    to   { transform: translateX(0);     opacity: 1; }
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    /* Darker site background so white cards pop more */
    background: #f0f2f6;
}

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    margin-bottom: 2rem;
}

.loading-logo-img {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}

.loading-bar-container {
    width: 300px;
    margin: 0 auto;
}

.loading-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #ffffff 0%, #e9ecef 50%, #ffffff 100%);
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.loading-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    width: 100%;
    padding: 0.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Slight tint so it remains visible over white content */
    background: rgba(246, 248, 252, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar.scrolled {
    /* Slightly more opaque and tinted on scroll */
    background: rgba(242, 244, 248, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.logo img {
    width: 460px;
    height: 50px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.4rem;
    transition: var(--transition);
}

/* Hide mobile-specific social links by default (desktop) */
.mobile-social { display: none; }

.social-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    cursor: pointer;
}

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

/* Mobile Menu Styles (wider breakpoint to cover iPad widths) */
@media (max-width: 1242px) {
    /* Prevent hero title overflow on mobile */
    .hero-content .hero-title {
        white-space: normal;
        display: block;
        max-width: 100%;
        margin: 0 auto 0.75rem;
        font-size: clamp(1.4rem, 6vw, 2rem);
        line-height: 1.15;
        letter-spacing: 0.1px;
    }

    /* Tame heading sizes on tablet/phone */
    section h2,
    section h3 {
        font-size: 1.35rem;
        letter-spacing: 0.15px;
    }
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    /* Hide top-right social icons on mobile to avoid layout issues */
    .social-links { display: none; }

    /* Show social links inside mobile menu */
    .mobile-social { display: block; }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .logo img {
        width: 340px;
        height: 40px;
    }
}

/* Global: backdrop for mobile menu and lock body scroll when open */
.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 999; /* just under .nav-links (1000) and hamburger (1001) */
}
.menu-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

body.menu-open {
    overflow: hidden;
    touch-action: none;
}

/* Improve hamburger as a real button with better tap area & focus */
.hamburger {
    background: transparent;
    border: 0;
    padding: 8px;
    border-radius: 8px;
}
.hamburger:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Additional mobile menu polish */
@media (max-width: 1242px) {
    .nav-links {
        width: min(86%, 420px);
        padding: calc(16px + env(safe-area-inset-top)) 16px calc(24px + env(safe-area-inset-bottom));
        gap: 0.25rem;
        box-shadow: -8px 0 24px rgba(0,0,0,0.12);
        /* Enable scrolling for landscape/small screens */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav-links li { width: 100%; }
    .nav-links a {
        text-align: center; /* center items to improve readability */
        font-weight: 700;
        letter-spacing: 0.2px;
        border-radius: 10px;
        background: rgba(0,0,0,0.03);
        border: 1px solid rgba(0,0,0,0.06);
    }
    .nav-links a:active {
        transform: translateY(1px);
    }
    .mobile-social a {
        background: transparent;
        border: none;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 260px;
        height: 28px;
    }
}

/* Content Sections */
.main-content {
    padding-top: 80px;
}

/* Hero Section */
.hero {
    height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#myVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    padding: 3rem 4rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(0);
    animation: float 6s ease-in-out infinite;
    text-align: center;
    max-width: 800px;
    width: 90%;
    position: relative;
    z-index: 10; /* ensure above any overlays */
}

.hero-content h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content p {
    color: #f0f0f0;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Metallic hero title/subtitle and fast slide-in animations */
.hero-content .hero-title,
.hero-content .hero-subtitle {
    background: linear-gradient(180deg, #f7f7f7, #e6e6e6 30%, #bfbfbf 50%, #9e9e9e 65%, #ececec 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.3px;
}

/* Hero title responsive behavior (wrap by default, no-wrap on large screens) */
.hero-content .hero-title {
    white-space: normal;
    font-size: clamp(2rem, 5vw, 3.5rem);
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
    overflow: visible; /* avoid clipping last characters on narrow screens */
}

/* Ensure brand chunk lays out correctly */
.nowrap-brand { display: inline-block; white-space: normal; }

@media (min-width: 1024px) {
    .hero-content .hero-title {
        white-space: normal; /* allow wrapping even on desktops to prevent clipping */
    }
}

.metallic-left {
    opacity: 0;
    animation: slideInLeftFast 1.2s cubic-bezier(0.18, 0.89, 0.32, 1.28) 0.1s forwards;
    will-change: transform, opacity;
}

.metallic-right {
    opacity: 0;
    animation: slideInRightFast 1.2s cubic-bezier(0.18, 0.89, 0.32, 1.28) 0.2s forwards;
    will-change: transform, opacity;
}

@keyframes slideInLeftFast {
    from { transform: translateX(-140px); opacity: 0; }
    70% { transform: translateX(10px); opacity: 1; }
    to   { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRightFast {
    from { transform: translateX(140px); opacity: 0; }
    70% { transform: translateX(-10px); opacity: 1; }
    to   { transform: translateX(0); opacity: 1; }
}

.cta-button {
    position: relative;
    display: inline-block;
    padding: 1rem 2.75rem;
    color: #eeeeee;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    transition: all 0.3s ease;
    border: 1px solid #3d3d3d;
    background-color: #0f0f10;
    background-image:
        linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.05) 75%);
    background-size: 8px 8px;
    background-position: 0 0, 0 4px, 4px -4px, -4px 0px;
    -webkit-text-stroke: 0.4px rgba(255,255,255,0.35);
    text-shadow:
        0 1px 0 rgba(255,255,255,0.6),
        0 0 8px rgba(255,255,255,0.25),
        0 2px 4px rgba(0,0,0,0.6),
        0 -1px 0 rgba(180,180,180,0.5);
    letter-spacing: 0.3px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), inset 0 -1px 0 rgba(0,0,0,0.4), 0 8px 18px rgba(0,0,0,0.35);
    cursor: pointer;
    pointer-events: auto;
    z-index: 20; /* keep clickable above surrounding elements */
}

.cta-button:hover {
    transform: translateY(-4px);
    background-color: #151617;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), inset 0 -1px 0 rgba(0,0,0,0.45), 0 12px 24px rgba(0,0,0,0.35);
    text-shadow:
        0 1px 0 rgba(255,255,255,0.75),
        0 0 10px rgba(255,255,255,0.35),
        0 3px 6px rgba(0,0,0,0.65),
        0 -1px 0 rgba(200,200,200,0.6);
}

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

/* Image Section */
.image-section {
    padding: 0;
    position: relative;
    height: 80vh;
}

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

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Services Section */
.services {
    /* Let white cards stand out against site background */
    background: #f0f2f6;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    padding: 30px;
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

/* Services card titles: revert to standard black (no metallic style) */
.services .card h3 {
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-stroke: 0 !important;
    color: #000 !important;
    text-shadow: none !important;
}

/* Gallery Section */
.gallery {
    background: #f0f2f6;
}

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

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

/* Contact Section */
.contact {
    background: #fff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-info h4 {
    color: #000;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.address {
    margin-bottom: 0.5rem;
}

.address p {
    margin: 0.2rem 0;
    color: #666;
    line-height: 1.6;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-methods p {
    margin: 1rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-methods i {
    color: #000;
    font-size: 1.2rem;
}

.contact-methods a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-methods a:hover {
    color: #000;
}

/* Ringing phone animation to make the phone icon stand out */
.contact-methods i.fa-phone {
    color: #e53935; /* red phone icon */
    font-size: 1.3rem;
    animation: phoneRing 1.6s ease-in-out infinite;
    transform-origin: 50% 0%;
    filter: drop-shadow(0 0 6px rgba(229, 57, 53, 0.45));
}

.contact-methods p:hover i.fa-phone,
.contact-methods a:hover i.fa-phone {
    animation-duration: 1.2s;
    filter: drop-shadow(0 0 10px rgba(229, 57, 53, 0.65));
}

@keyframes phoneRing {
    0%   { transform: rotate(0deg); }
    10%  { transform: rotate(18deg); }
    20%  { transform: rotate(-16deg); }
    30%  { transform: rotate(14deg); }
    40%  { transform: rotate(-12deg); }
    50%  { transform: rotate(10deg); }
    60%  { transform: rotate(-8deg); }
    70%  { transform: rotate(6deg); }
    80%  { transform: rotate(-4deg); }
    90%  { transform: rotate(2deg); }
    100% { transform: rotate(0deg); }
}

@media (prefers-reduced-motion: reduce) {
    .contact-methods i.fa-phone { animation: none; }
}

/* Mobile-only callout bubble under the phone link */
@media (max-width: 768px) {
    .contact-methods a[href^="tel"] {
        position: relative;
        display: inline-block;
    }

    .contact-methods a[href^="tel"]::after {
        content: "Press to call";
        position: absolute;
        left: 0;
        top: 125%;
        background: #e53935;
        color: #fff;
        font-size: 0.72rem;
        font-weight: 700;
        padding: 0.25rem 0.55rem;
        border-radius: 9999px;
        white-space: nowrap;
        box-shadow: 0 4px 12px rgba(229, 57, 53, 0.35);
        letter-spacing: 0.2px;
        z-index: 1;
        animation: calloutPulse 2.2s ease-in-out infinite;
    }

    .contact-methods a[href^="tel"]::before {
        content: "";
        position: absolute;
        left: 14px;
        top: 113%;
        width: 0; height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid #e53935; /* little arrow */
        z-index: 1;
    }
}

@keyframes calloutPulse {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(2px); opacity: 0.9; }
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

#contact-form {
    display: grid;
    gap: 20px;
}

#contact-form input,
#contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.submit-btn {
    background: var(--secondary-color);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

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

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

    .image-overlay h2 {
        font-size: 1.8rem;
        color: #ffffff !important; 
        background: none !important;
        -webkit-background-clip: initial !important;
        background-clip: initial !important;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 300px;
    }
}

/* Additional responsive adjustments */
@media (max-width: 480px) {
    .hero-content {
        padding: 1.5rem;
        width: 95%;
    }

    .hero-content h1 { font-size: 1.3rem; }

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

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .hero {
        height: 90vh;
    }

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

    .gallery-container {
        gap: 1rem;
    }

    .booking-form {
        padding: 1.5rem;
    }
}

/* About Section Styles */
.about {
    position: relative;
    padding: 4rem 1rem;
    background: #f0f2f6;
    margin: 0;
}

.about-content {
    max-width: 980px;
    margin: 0 auto;
    text-align: left;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2.25rem);
    position: relative;
}
.about-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    border-radius: 16px 0 0 16px;
    background: linear-gradient(180deg, var(--secondary-color), rgba(0,0,0,0.6));
}

.about-content h2 {
    margin-bottom: 0.75rem;
    color: #111;
    text-align: left;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.85;
    margin: 0.25rem 0 0.25rem;
    color: #333;
}

/* Improve anchor offset for in-page nav targets (apply to any element with an id) */
[id] {
    scroll-margin-top: 90px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1100;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    max-width: 500px;
    margin: 50px auto;
    padding: 2rem;
    border-radius: 10px;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-button {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-button:hover {
    color: var(--secondary-color);
}

/* Social Media Section Styles */
.social-section {
    background: #f0f2f6;
    padding: 5rem 0;
    text-align: center;
}

.social-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.reviews-widget-container {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-height: 260px;
    max-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.reviews-widget-container h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.instagram-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100%;
}

.instagram-container h3 {
    /* Inherit global metallic heading style to match hero */
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.instagram-embed {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.social-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.facebook-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100%;
}

.facebook-container h3 {
    /* Inherit global metallic heading style to match hero */
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.facebook-embed {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.facebook-embed iframe {
    max-width: 100%;
    border-radius: 10px;
}

.instagram-media {
    margin: 0 auto !important;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.facebook {
    background: #4267B2;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Map Container Styles - match contact-info styling */
.map-container {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.map-container h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
    color: #000000 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex: 1;
}

.map-wrapper iframe {
    border-radius: 10px;
}

.map-link {
    text-align: center;
    margin-top: 1rem;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: 
        repeating-linear-gradient(45deg, #0f0f10 0 6px, #1a1a1b 6px 12px),
        repeating-linear-gradient(-45deg, #101112 0 6px, #1b1c1d 6px 12px);
    color: transparent;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 
        0 12px 30px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.1),
        0 0 0 1px rgba(255,255,255,0.1);
    transition: all 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    background-image: 
        linear-gradient(180deg, #f7f7f7, #e6e6e6 30%, #bfbfbf 50%, #9e9e9e 65%, #ececec 100%),
        repeating-linear-gradient(45deg, #0f0f10 0 6px, #1a1a1b 6px 12px);
    background-origin: border-box;
    background-clip: text, border-box;
    animation: buttonPulse 3s ease-in-out infinite;
    text-decoration: none;
    text-align: center;
    line-height: 1.3;
}

.map-btn i {
    background: linear-gradient(180deg, #f7f7f7, #e6e6e6 30%, #bfbfbf 50%, #9e9e9e 65%, #ececec 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.map-btn span {
    background: linear-gradient(180deg, #f7f7f7, #e6e6e6 30%, #bfbfbf 50%, #9e9e9e 65%, #ececec 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.map-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 800ms ease;
}

.map-btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.5),
        inset 0 2px 0 rgba(255,255,255,0.2),
        0 0 0 2px rgba(212, 175, 55, 0.3),
        0 0 30px rgba(212, 175, 55, 0.2);
    animation: none;
}

.map-btn:hover::before {
    left: 100%;
}

.map-btn:active {
    transform: translateY(-3px) scale(1.02);
}

/* Enquiry modal (ultra-modern with animations) */
.enquiry-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(12px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.enquiry-modal.active { 
    display: flex; 
    opacity: 1;
}
.enquiry-content {
    width: min(680px, 94%);
    margin-top: 4vh;
    background: 
        repeating-linear-gradient(45deg, #0f0f10 0 6px, #1a1a1b 6px 12px),
        repeating-linear-gradient(-45deg, #101112 0 6px, #1b1c1d 6px 12px);
    color: #fff;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 
        0 25px 80px rgba(0,0,0,0.7),
        0 0 0 1px rgba(255,255,255,0.05),
        inset 0 1px 0 rgba(255,255,255,0.1);
    overflow: hidden;
    transform: translateY(-40px) scale(0.95);
    animation: modalSlideIn 500ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    position: relative;
}
.enquiry-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), #f4d03f, var(--secondary-color));
    animation: shimmer 2s infinite;
}
.enquiry-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: 
        repeating-linear-gradient(45deg, #0f0f10 0 6px, #1a1a1b 6px 12px),
        repeating-linear-gradient(-45deg, #101112 0 6px, #1b1c1d 6px 12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
}
.enquiry-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}
.enquiry-header h3 { 
    margin: 0; 
    font-size: 1.4rem; 
    font-weight: 800;
    background: linear-gradient(180deg, #f7f7f7, #e6e6e6 30%, #bfbfbf 50%, #9e9e9e 65%, #ececec 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.3px;
}
.enquiry-close {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease;
    backdrop-filter: blur(10px);
}
.enquiry-close:hover {
    background: rgba(255,255,255,0.1);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 20px rgba(255,255,255,0.1);
}
.enquiry-body { 
    padding: 2rem; 
    background: 
        repeating-linear-gradient(45deg, #0f0f10 0 6px, #1a1a1b 6px 12px),
        repeating-linear-gradient(-45deg, #101112 0 6px, #1b1c1d 6px 12px);
}
.enquiry-body .form-group { 
    margin-bottom: 1.5rem; 
    position: relative;
}
.enquiry-body label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.95);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    position: relative;
    background: rgba(0,0,0,0.3);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    backdrop-filter: blur(5px);
}
.enquiry-body input,
.enquiry-body textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 1rem;
    transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}
.enquiry-body input:focus,
.enquiry-body textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255,255,255,0.08);
    box-shadow: 
        0 0 0 4px rgba(212, 175, 55, 0.1),
        inset 0 2px 4px rgba(0,0,0,0.1),
        0 8px 25px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}
.enquiry-body input::placeholder,
.enquiry-body textarea::placeholder {
    color: rgba(255,255,255,0.4);
}
.enquiry-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: linear-gradient(180deg, #f7f7f7, #e6e6e6 30%, #bfbfbf 50%, #9e9e9e 65%, #ececec 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    border: none;
    padding: 1rem 2rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.3),
        0 0 0 1px rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    background-image: 
        linear-gradient(180deg, #f7f7f7, #e6e6e6 30%, #bfbfbf 50%, #9e9e9e 65%, #ececec 100%),
        repeating-linear-gradient(45deg, #0f0f10 0 6px, #1a1a1b 6px 12px);
    background-origin: border-box;
    background-clip: text, border-box;
}
.enquiry-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 600ms ease;
}
.enquiry-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(212, 175, 55, 0.4),
        0 0 0 1px rgba(255,255,255,0.2);
}
.enquiry-submit:hover::before {
    left: 100%;
}
.enquiry-submit:active {
    transform: translateY(-1px) scale(0.98);
}

@keyframes modalSlideIn {
    0% { 
        transform: translateY(-40px) scale(0.95); 
        opacity: 0; 
    }
    100% { 
        transform: translateY(0) scale(1); 
        opacity: 1; 
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Contact info styling - white background */
.contact-info {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: #000000 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.contact-info .address,
.contact-info .contact-methods {
    margin-bottom: 1.5rem;
}

.contact-info .address h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-info .address p,
.contact-info .contact-methods p {
    color: var(--text-color);
    margin: 0.3rem 0;
}

.contact-info .contact-methods a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info .contact-methods a:hover {
    color: var(--secondary-color);
}

.enquiry-btn-container {
    margin-top: auto;
    text-align: center;
    padding-top: 2rem;
}

/* Metallic enquiry button that pops out */
.open-enquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: 
        repeating-linear-gradient(45deg, #0f0f10 0 6px, #1a1a1b 6px 12px),
        repeating-linear-gradient(-45deg, #101112 0 6px, #1b1c1d 6px 12px);
    color: transparent;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 
        0 12px 30px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.1),
        0 0 0 1px rgba(255,255,255,0.1);
    transition: all 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    background-image: 
        linear-gradient(180deg, #f7f7f7, #e6e6e6 30%, #bfbfbf 50%, #9e9e9e 65%, #ececec 100%),
        repeating-linear-gradient(45deg, #0f0f10 0 6px, #1a1a1b 6px 12px);
    background-origin: border-box;
    background-clip: text, border-box;
    animation: buttonPulse 3s ease-in-out infinite;
}

.open-enquiry-btn i {
    background: linear-gradient(180deg, #f7f7f7, #e6e6e6 30%, #bfbfbf 50%, #9e9e9e 65%, #ececec 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.open-enquiry-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 800ms ease;
}

.open-enquiry-btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.5),
        inset 0 2px 0 rgba(255,255,255,0.2),
        0 0 0 2px rgba(212, 175, 55, 0.3),
        0 0 30px rgba(212, 175, 55, 0.2);
    animation: none;
}

.open-enquiry-btn:hover::before {
    left: 100%;
}

.open-enquiry-btn:active {
    transform: translateY(-3px) scale(1.02);
}

@keyframes buttonPulse {
    0%, 100% { 
        box-shadow: 
            0 12px 30px rgba(0,0,0,0.4),
            inset 0 1px 0 rgba(255,255,255,0.1),
            0 0 0 1px rgba(255,255,255,0.1);
    }
    50% { 
        box-shadow: 
            0 15px 35px rgba(0,0,0,0.5),
            inset 0 1px 0 rgba(255,255,255,0.15),
            0 0 0 2px rgba(212, 175, 55, 0.2),
            0 0 20px rgba(212, 175, 55, 0.1);
    }
}

/* Modal logo styling */
.enquiry-logo {
    text-align: center;
    padding: 1.5rem 2rem 0;
    background: 
        repeating-linear-gradient(45deg, #0f0f10 0 6px, #1a1a1b 6px 12px),
        repeating-linear-gradient(-45deg, #101112 0 6px, #1b1c1d 6px 12px);
}

.modal-logo {
    width: 250px;
    height: auto;
    transition: all 300ms ease;
}

.modal-logo:hover {
    transform: scale(1.05);
}


/* Fix mobile scrolling */
html, body {
    overflow-x: hidden;
    position: relative;
    height: 100%;
}

/* Native smooth scroll for in-page anchors */
html {
    scroll-behavior: smooth;
}

/* Offset all sections for fixed navbar */
section[id] {
    scroll-margin-top: 90px;
}

/* Ensure anchor scroll to contact containers accounts for fixed navbar */
#contact-containers {
    scroll-margin-top: 90px;
}

body.menu-open {
    overflow: hidden;
}

/* Fix hero section */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
    margin-top: -80px;
    padding-top: 80px;
}

/* Fix video positioning */
#myVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Fix section backgrounds */
.services,
.gallery,
.booking,
.about,
.social-section {
    position: relative;
    padding: 5rem 10%;
    background-color: #ffffff;
    width: 100%;
}

/* Fix showcase section */
.showcase {
    position: relative;
    min-height: 60vh;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('pictures/rangerover.jpg') no-repeat center center/cover;
    padding: 5rem 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .main-content {
        padding-top: 60px;
    }

    .hero {
        min-height: calc(100vh - 60px);
        margin-top: -60px;
        padding-top: 60px;
    }

    .services,
    .gallery,
    .booking,
    .about,
    .social-section {
        padding: 3rem 5%;
    }

    /* Larger, more tappable mobile menu items */
    .nav-links a {
        font-size: 1.25rem;
        padding: 0.75rem 0;
        line-height: 1.6;
    }
    .nav-links li {
        margin: 1rem 0;
    }
    section {
        scroll-margin-top: 60px; /* edge up ~40px on mobile too */
    }
    
    /* Our Services higher on mobile as well */
    #services { scroll-margin-top: 20px; }

    /* Our Workshop and Social higher on mobile as well */
    #gallery { scroll-margin-top: 20px; }
    #social { scroll-margin-top: 20px; }
}

/* Update section z-indices */
section {
    padding: 80px 5%;
    margin: 0;
    width: 100%;
    scroll-margin-top: 70px; /* edge up ~40px so headers sit higher */
}

/* Fine-tune anchor offset specifically for Our Services */
#services {
    scroll-margin-top: 30px; /* ~40px higher than global on desktop */
}

/* Fine-tune anchor offset for Our Workshop and Social Media & Reviews */
#gallery {
    scroll-margin-top: 30px;
}

#social {
    scroll-margin-top: 30px;
}


.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group label {
    position: absolute;
    top: -0.8rem;
    left: 1rem;
    padding: 0 0.5rem;
    background: white;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--secondary-color);
    outline: none;
}

/* Style the date input */
.form-group input[type="date"] {
    color: var(--primary-color);
    cursor: pointer;
}

/* Remove the floating label animation since we're using a different style */
.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label {
    color: var(--secondary-color);
}

/* Update submit button */
.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Remove the fadeInUp animation that might be causing visibility issues */
.form-group {
    opacity: 1;
    transform: none;
    animation: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .social-container {
        gap: 2rem;
        padding: 0 1rem;
    }

    .reviews-widget-container {
        min-height: 300px;
        padding: 1.5rem;
    }

    .instagram-container {
        padding: 1.5rem;
    }

    .facebook-container {
        padding: 1.5rem;
    }

    .facebook-embed iframe {
        width: 100%;
        height: 400px;
    }

    .social-btn {
        max-width: 100%;
        width: 100%;
    }

    .map-container {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .map-wrapper iframe {
        height: 300px;
    }
}

/* Add these animation classes */
.reveal-text {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s;
}

.reveal-text.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-slide {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s;
}

.reveal-slide.active {
    opacity: 1;
    transform: translateX(0);
}

/* Update Contact Section Styles */
.contact-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
                url('pictures/rangerover.jpg') no-repeat center center/cover;
    padding: 4rem 10%;
    color: white;
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-container h3 {
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-section .form-group {
    margin-bottom: 1rem;
}

/* Ensure contact form fields and labels do not overlap and are left-aligned */
.contact-form-container { text-align: left; }
.contact-section .form-group label {
    position: relative; /* override global absolute label */
    top: auto;
    left: auto;
}

.contact-section label {
    display: block; /* left aligned */
    margin-bottom: 0.5rem;
    font-weight: 600;
    padding: 0;
    border-radius: 0;
    background: none;
    color: #070707; /* original */
    border: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* original subtle depth */
}

/* Restore boxed sub-headers ONLY inside the 'Send Us a Message' form */
.contact-form-container label {
    display: inline-block;
    margin-bottom: 0.6rem;
    font-weight: 700;
    position: relative; /* ensure it sits above the input, not overlay */
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    background:
        linear-gradient(180deg, #f9f9f9, #e6e6e6 28%, #c9c9c9 50%, #a8a8a8 70%, #efefef 100%);
    color: #111;
    border: 1px solid rgba(150,150,150,0.8);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.7),
        inset 0 -1px 0 rgba(0,0,0,0.25),
        0 2px 6px rgba(0,0,0,0.2);
}

.contact-section input,
.contact-section textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
    color: #666;
}

.contact-section input:focus,
.contact-section textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Contact and reviews headings now inherit the global metallic hero style */

.contact-section .submit-btn {
    background: var(--secondary-color);
    width: 100%;
    padding: 0.85rem;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.75rem;
}

.contact-section .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Contact form status messages */
.status {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.4;
}
.status.success {
    color: #20c997; /* teal/green */
}
.status.error {
    color: #ff6b6b; /* red */
}

/* Update responsive styles */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
}

.message-form-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.message-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.message-form-wrapper h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-size: 2rem;
}

.message-form-section .form-group {
    margin-bottom: 1.5rem;
}

.message-form-section .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.message-form-section .form-group input,
.message-form-section .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.message-form-section .form-group input:focus,
.message-form-section .form-group textarea:focus {
    outline: none;
    border-color: #000;
}

.message-form-section .submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.message-form-section .submit-btn:hover {
    background-color: #333;
}

@media (max-width: 768px) {
    .message-form-wrapper {
        padding: 1rem;
    }
}

/* Gallery Modal Styles */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    cursor: pointer;
}

.gallery-modal-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 95vw;
    max-height: 95vh;
}

.gallery-modal img {
    max-width: 95%;
    max-height: 95%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

/* Navigation Arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    z-index: 10;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

/* Image Counter */
.gallery-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 10;
}

/* Close Button */
.gallery-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    z-index: 10;
}

.gallery-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .gallery-nav.prev {
        left: 10px;
    }
    
    .gallery-nav.next {
        right: 10px;
    }
    
    .gallery-counter {
        bottom: 20px;
        font-size: 0.8rem;
    }
    
    .gallery-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}