/* =========================================================================
   V2: MILLION DOLLAR AESTHETICS - VARIABLES & SYSTEM
   ========================================================================= */
   :root {
    /* Color Palette */
    --clr-green-main: #2ECC40;
    --clr-green-neon: #39FF14;
    --clr-green-dark: #0D5C1A;
    --clr-black: #050505;
    --clr-dark: #0F0F0F;
    --clr-dark-card: #151515;
    --clr-grey: #222222;
    --clr-grey-light: #5A5A5A;
    --clr-text: #F4F4F4;
    --clr-text-muted: #888888;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Box Shadows */
    --shadow-neon: 0 0 25px rgba(57, 255, 20, 0.3);
    
    /* Structural */
    --nav-height: 90px;
}

/* =========================================================================
   RESET & BASE
   ========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--clr-black);
    color: var(--clr-text);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800; /* Extreme Boldness */
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
}

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

ul { list-style: none; }
img { max-width: 100%; display: block; }

.text-green { color: var(--clr-green-main); }
.text-green-glow { 
    color: var(--clr-green-neon); 
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

/* =========================================================================
   COMMON ELEMENTS
   ========================================================================= */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--clr-green-main);
    color: var(--clr-black);
}

.btn-primary:hover {
    background-color: var(--clr-green-neon);
    box-shadow: var(--shadow-neon);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    color: var(--clr-text);
    border-color: rgba(255,255,255,0.2);
}

.btn-outline:hover {
    border-color: var(--clr-green-neon);
    color: var(--clr-green-neon);
}

/* =========================================================================
   ADVANCED NAVIGATION
   ========================================================================= */
nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: var(--nav-height);
    background-color: transparent; /* Starts transparent */
    transition: var(--transition-normal);
    z-index: 1000;
    border-bottom: 1px solid transparent;
}

nav.scrolled {
    background-color: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.nav-logo { height: 60px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links li a:not(.btn) {
    font-size: 0.9rem;
    letter-spacing: 2px;
    opacity: 0.8;
}

.nav-links li a:not(.btn):hover {
    opacity: 1;
    color: var(--clr-green-neon);
}

.nav-cta {
    padding: 12px 24px;
    font-size: 0.85rem;
}

/* =========================================================================
   IMMERSIVE PARALLAX HERO
   ========================================================================= */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 5%;
}

.parallax-bg {
    background-image: url('../assets/hero_bg.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-split {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 800px;
}

.hero-reviews-wrapper {
    flex: 0 0 450px;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.reviews-header {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 15px;
}
.reviews-header span { font-size: 1.5rem; letter-spacing: 3px; }
.reviews-header p { font-size: 0.8rem; letter-spacing: 2px; color: var(--clr-text-muted); margin-top: 5px; }

.review-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    animation: slideInFade 1s forwards ease-out;
}
.review-item:last-child { border-bottom: none; }

.review-text { font-style: italic; font-size: 0.95rem; color: #EAEAEA; margin-bottom: 10px; line-height: 1.5; }
.review-author { font-size: 0.8rem; font-weight: 800; color: var(--clr-green-main); text-transform: uppercase; letter-spacing: 1px; }

@keyframes slideInFade {
    0% { opacity: 0; transform: translateX(20px); }
    100% { opacity: 1; transform: translateX(0); }
}

.hero-title-group {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 0.9;
    color: #FFFFFF;
}

.hero-center-logo {
    max-width: 15vw;
    min-width: 150px;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.8));
    animation: float 6s ease-in-out infinite;
}

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

/* Redundant media queries moved to the bottom of the file */

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: #CCCCCC;
    margin-bottom: 50px;
    font-weight: 300;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Floating Contact Bar */
.floating-contact-bar {
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-around;
    padding: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-left: 1px solid rgba(255,255,255,0.1);
    border-right: 1px solid rgba(255,255,255,0.1);
    z-index: 10;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* =========================================================================
   DIAGONAL SLANTS
   ========================================================================= */
.slant {
    width: 100%;
    height: 100px;
    position: relative;
    z-index: 5;
    margin-top: -50px; /* Pull it up into the previous section */
}

.slant-bottom {
    clip-path: polygon(0 100%, 100% 0%, 100% 100%);
}

.bg-black { background-color: var(--clr-black); }

/* =========================================================================
   TRUST RIBBON
   ========================================================================= */
.trust-ribbon {
    background-color: var(--clr-dark);
    padding: 60px 5%;
    border-top: 1px solid var(--clr-grey);
    border-bottom: 1px solid var(--clr-grey);
    position: relative;
    z-index: 10;
}

.ribbon-container {
    display: flex;
    justify-content: space-around;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--clr-text);
    display: inline-block;
}

.stat-plus {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--clr-green-neon);
}

.stat-star::after {
    content: ' ★';
    color: var(--clr-green-neon);
    font-size: 3rem;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

/* =========================================================================
   SERVICES INTERACTIVE PANELS
   ========================================================================= */
.services {
    padding: 120px 5%;
    background-color: var(--clr-black);
}

.section-header {
    margin-bottom: 80px;
    position: relative;
}

.ultra-title {
    font-size: clamp(3rem, 5vw, 5rem);
    color: rgba(255,255,255,0.05); /* Ghost text */
    position: relative;
}

.ultra-title span {
    color: var(--clr-text); /* Pops white */
}

.header-line {
    width: 100px;
    height: 4px;
    background-color: var(--clr-green-neon);
    margin-top: 20px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-panel {
    background-color: var(--clr-dark);
    border: 1px solid var(--clr-grey);
    transition: var(--transition-normal);
    position: relative;
    cursor: crosshair; /* Industrial feel */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
}

.panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.3) 100%);
    transition: var(--transition-normal);
    z-index: 1;
}

.panel-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    width: 100%;
}

.service-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--clr-text);
    transition: var(--transition-normal);
    position: relative;
}

.panel-hidden-text {
    opacity: 0.5;
    transform: translateY(10px);
    transition: var(--transition-normal);
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* Panel Hover State */
.service-panel:hover {
    border-color: var(--clr-green-neon);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.15);
}

.service-panel:hover .panel-overlay {
    background: linear-gradient(0deg, rgba(5,5,5,0.9) 0%, rgba(46, 204, 64, 0.3) 100%);
}

.service-panel:hover h3 {
    color: var(--clr-green-neon);
}

.service-panel:hover .panel-hidden-text {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================================
   EDGE-TO-EDGE GALLERY
   ========================================================================= */
.edge-gallery {
    padding: 0 0 100px 0;
    background-color: var(--clr-black);
}

.gallery-header.center {
    text-align: center;
    padding: 100px 5% 50px;
    position: relative;
}

.title-bg {
    font-size: clamp(4rem, 10vw, 10rem);
    color: rgba(255,255,255,0.02);
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    z-index: 1;
}

.title-front {
    font-size: clamp(2rem, 4vw, 3rem);
    position: relative;
    z-index: 2;
}

.gallery-filters {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}

.masonry-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30vw, 1fr));
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.5);
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-normal);
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.gallery-item:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: #FFF;
    border-bottom: 2px solid var(--clr-green-neon);
    padding-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* =========================================================================
   DARK MODE WYNN-STYLE FORM
   ========================================================================= */
.booking-section {
    padding: 120px 5%;
    background: linear-gradient(180deg, #050505 0%, #111 100%);
    border-top: 1px solid var(--clr-grey);
}

.appointment-container {
    max-width: 800px;
    margin: 0 auto;
}

.luxury-input-group {
    background-color: rgba(255,255,255,0.02);
    border-left: 3px solid var(--clr-green-main);
    padding: 30px;
    margin-bottom: 40px;
}

.luxury-input-group legend {
    font-family: var(--font-heading);
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.float-input, .float-select, .float-textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--clr-grey-light);
    padding: 15px 0;
    color: var(--clr-text);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.float-select option {
    background-color: var(--clr-black);
    color: var(--clr-text);
}

.float-input:focus, .float-select:focus, .float-textarea:focus {
    outline: none;
    border-bottom: 2px solid var(--clr-green-neon);
}

label {
    position: absolute;
    top: 15px;
    left: 0;
    color: var(--clr-text-muted);
    transition: var(--transition-fast);
    pointer-events: none;
    font-size: 1rem;
}

.float-input:focus ~ label,
.float-input:not(:placeholder-shown) ~ label {
    top: -15px;
    font-size: 0.75rem;
    color: var(--clr-green-main);
    letter-spacing: 1px;
}

.btn-glowing {
    width: 100%;
    padding: 20px;
    font-size: 1.2rem;
    background-color: transparent;
    border: 1px solid var(--clr-green-neon);
    color: var(--clr-green-neon);
}

.btn-glowing:hover {
    background-color: var(--clr-green-neon);
    color: #000;
}

/* =========================================================================
   INDUSTRIAL FOOTER
   ========================================================================= */
footer {
    background-color: #000;
    padding: 80px 5% 40px;
    border-top: 1px solid var(--clr-grey);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo {
    max-width: 250px;
    margin-bottom: 25px;
}

.footer-info p {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--clr-text);
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: var(--clr-text-muted);
}

.footer-links ul li a:hover {
    color: var(--clr-green-neon);
    padding-left: 8px;
}

.footer-contact p {
    color: var(--clr-text-muted);
    margin-bottom: 15px;
}

.heavy-phone {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--clr-green-neon);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--clr-text-muted);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

/* =========================================================================
   REVIEW MODAL & LEAVE A REVIEW BUTTON
   ========================================================================= */
.review-cta-btn {
    margin-top: 15px;
    width: 100%;
    padding: 12px 20px;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.review-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.review-modal-overlay.active {
    display: flex;
}

.review-modal-content {
    background: var(--clr-dark);
    border: 1px solid var(--clr-grey);
    border-radius: 12px;
    padding: 50px 40px;
    max-width: 550px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.review-modal-content h2 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.review-modal-content .header-line {
    margin-bottom: 30px;
}

.review-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--clr-text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
}

.review-modal-close:hover {
    color: var(--clr-green-neon);
}

.star-rating-group {
    margin-bottom: 25px;
}

.star-rating-label {
    color: var(--clr-text-muted);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 2.2rem;
    color: var(--clr-grey-light);
    cursor: pointer;
    transition: var(--transition-fast);
    position: static;
    pointer-events: auto;
}

.star-rating label.hovered,
.star-rating input:checked ~ label {
    color: var(--clr-green-neon);
    text-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
}

.review-modal-content .submit-review-btn {
    width: 100%;
    margin-top: 10px;
}

.review-status {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.review-status.success {
    color: var(--clr-green-neon);
}

.review-status.error {
    color: #ff4444;
}

/* =========================================================================
   RESPONSIVE DESIGN (MOBILES/TABLETS)
   ========================================================================= */
html, body {
    overflow-x: hidden; /* Bulletproof horizontal scrolling prevention */
}

@media (max-width: 1024px) {
    .floating-contact-bar { display: none; } /* Hide heavy bar on small screens */
    .masonry-full { grid-template-columns: repeat(2, 1fr); }
    
    .hero-split {
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-reviews-wrapper {
        flex: 1;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hamburger { display: block; }

    .nav-links {
        position: fixed;
        left: -100%; top: var(--nav-height);
        flex-direction: column;
        background-color: rgba(5,5,5,0.98);
        width: 100%; height: calc(100vh - var(--nav-height));
        padding: 40px 0; transition: 0.3s;
    }

    .nav-links.active { left: 0; }
    
    .hero { 
        min-height: auto; 
        padding-top: 140px; 
        padding-bottom: 60px;
        height: auto; /* Allow growth on tall mobile content */
    }
    
    .hero-title-group {
        flex-direction: column;
        gap: 15px;
    }

    .hero-title {
        font-size: 3.5rem; /* Ensure massive text does not break viewport */
    }

    .hero-center-logo {
        max-width: 200px;
    }
    
    .hero-buttons { 
        flex-direction: column; 
        width: 100%; 
        align-items: center; 
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .ribbon-container { flex-direction: column; gap: 40px; }
    
    .masonry-full { grid-template-columns: 1fr; }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 25px; /* Center footer logo */
    }
}
