/* ==========================================================================
   AUTOREFLECT - PREMIUM AUTO DETAILING STUDIO CSS
   ========================================================================== */

/* Import Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* CSS Custom Properties (Theme Tokens) */
:root {
    /* Color Palette */
    --bg-dark: #070708;
    --bg-card: rgba(18, 18, 20, 0.65);
    --bg-card-hover: rgba(26, 26, 30, 0.85);
    --primary-yellow: #f4c430;
    /* Reflective Warm Yellow */
    --accent-yellow: #ffe600;
    /* Bright Neon Yellow */
    --text-white: #ffffff;
    --text-gray: #a0a0a5;
    --text-dim: #6d6d75;
    --border-color: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(255, 230, 0, 0.25);
    --border-glow-active: rgba(255, 230, 0, 0.8);

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Shadows & Glows */
    --glow-shadow: 0 0 20px rgba(255, 230, 0, 0.35);
    --glow-shadow-strong: 0 0 35px rgba(255, 230, 0, 0.6);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    /* Motion */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s ease;
}

/* Base Reset & Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(244, 196, 48, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 230, 0, 0.02) 0%, transparent 50%);
    background-attachment: fixed;
}

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

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

/* Glassmorphism Utility */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border-color);
    box-shadow: var(--glass-shadow);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: rgba(255, 230, 0, 0.25);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.45), 0 0 15px rgba(255, 230, 0, 0.1);
}

/* Button & CTA Utilities */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(244, 196, 48, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-yellow);
    box-shadow: var(--glow-shadow);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
    box-shadow: 0 0 15px rgba(244, 196, 48, 0.15);
    transform: translateY(-3px);
}

.btn-glow {
    animation: glow-pulse 2s infinite alternate;
}

/* Animations */
@keyframes glow-pulse {
    0% {
        box-shadow: 0 4px 15px rgba(244, 196, 48, 0.3);
    }

    100% {
        box-shadow: 0 4px 25px rgba(255, 230, 0, 0.7);
    }
}

@keyframes slide-in-top {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Section Common Styles */
section {
    padding: 100px 0;
    position: relative;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-yellow);
    margin: 10px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 8px var(--primary-yellow);
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.highlight {
    color: var(--primary-yellow);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 8px 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    padding: 6px 0;
    background: rgba(7, 7, 8, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.logo-container {
    display: flex;
    flex-direction: column;
}

header .logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

header.scrolled .logo-img {
    height: 80px;
}

footer .logo-img {
    height: 140px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: 2px;
    line-height: 1.1;
    color: var(--text-white);
}

.logo-text span {
    color: var(--primary-yellow);
    text-shadow: 0 0 10px rgba(255, 230, 0, 0.3);
}

.logo-subtitle {
    font-family: var(--font-heading);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 2.2px;
    color: var(--text-gray);
    text-transform: uppercase;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-yellow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-yellow);
    box-shadow: 0 0 8px var(--primary-yellow);
    transition: var(--transition-smooth);
}

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

/* Hamburger Menu button */
.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1100;
}

.hamburger-line {
    display: block;
    width: 28px;
    height: 3px;
    margin: 6px auto;
    background-color: var(--text-white);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* Active hamburger states */
.hamburger.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--primary-yellow);
}

.hamburger.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--primary-yellow);
}

/* Mobile Nav Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(7, 7, 8, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-smooth);
        z-index: 1050;
    }

    .nav-menu.is-active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background-color: #030304;
    border-top: 1px solid var(--border-color);
    padding: 70px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
    opacity: 0.3;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--text-white);
    position: relative;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--primary-yellow);
    margin-top: 8px;
}

.footer-about p {
    color: var(--text-gray);
    margin-bottom: 20px;
    padding-right: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-white);
    transition: var(--transition-smooth);
}

.social-icon:hover {
    color: var(--bg-dark);
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-gray);
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-yellow);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary-yellow);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: var(--text-gray);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   HOME PAGE (index.php) SPECIFIC STYLES
   ========================================================================== */
/* Hero Section */
.hero {
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-hero-bg {
    background-image: url('https://images.unsplash.com/photo-1618843479313-40f8afb4b4d8?q=80&w=1600&auto=format&fit=crop');
}

/* Luxury Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 7, 8, 0.95) 0%, rgba(7, 7, 8, 0.8) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

.hero .container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    animation: slide-in-top 0.8s ease;
}

.hero-tagline::before {
    content: '';
    width: 30px;
    height: 2px;
    background-color: var(--primary-yellow);
    box-shadow: 0 0 8px var(--primary-yellow);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 800px;
    margin-bottom: 25px;
    color: var(--text-white);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin-bottom: 40px;
    font-weight: 300;
}

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

@media (max-width: 768px) {
    .hero-bg {
        background-position: 62% center;
    }

    .home-hero-bg {
        background-image: url('https://images.unsplash.com/photo-1603584173870-7f23fdae1b7a?q=80&w=1000&auto=format&fit=crop');
        background-position: center;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Why Choose Us Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-card {
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 230, 0, 0.05), transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover {
    border-color: var(--border-glow-active);
    box-shadow: var(--glow-shadow);
    transform: translateY(-8px);
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 230, 0, 0.06);
    border: 1px solid rgba(255, 230, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: var(--primary-yellow);
    transition: var(--transition-smooth);
}

.why-card:hover .icon-box {
    background: var(--primary-yellow);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(255, 230, 0, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Service Preview on Home */
.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Testimonial Section */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 35px;
    position: relative;
}

.testimonial-stars {
    color: var(--primary-yellow);
    margin-bottom: 20px;
    font-size: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-yellow);
    object-fit: cover;
}

.author-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
}

.author-info p {
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* ==========================================================================
   ABOUT PAGE (about.php) STYLES
   ========================================================================== */
.about-hero {
    padding-top: 180px;
    padding-bottom: 90px;
    background: linear-gradient(to bottom, rgba(7, 7, 8, 0.85), rgba(7, 7, 8, 0.95)), url('https://images.unsplash.com/photo-1617788138017-80ad40651399?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center 50%;
    background-repeat: no-repeat;
    border-bottom: 0px solid var(--border-color);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.about-img-container {
    position: relative;
}

.about-img-frame {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-img-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(7, 7, 8, 0.4), transparent);
}

.about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 20px 30px;
    text-align: center;
    z-index: 10;
}

.about-img-badge span {
    display: block;
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-yellow);
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-white);
}

.about-intro-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-intro-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* Mission & Vision Section */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.mv-card {
    padding: 40px;
}

.mv-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mv-card h3 i {
    color: var(--primary-yellow);
}

.mv-card p {
    color: var(--text-gray);
}

/* Core Values / Bullet points */
.values-list {
    margin-top: 25px;
    list-style: none;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    color: var(--text-gray);
}

.values-list li i {
    color: var(--primary-yellow);
    margin-top: 4px;
    font-size: 1.1rem;
    text-shadow: 0 0 5px rgba(255, 230, 0, 0.4);
}

.values-list strong {
    color: var(--text-white);
}

@media (max-width: 992px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-badge {
        bottom: 10px;
        right: 10px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SERVICES PAGE (services.php) STYLES
   ========================================================================== */
.services-hero {
    padding-top: 180px;
    padding-bottom: 90px;
    background: linear-gradient(to bottom, rgba(7, 7, 8, 0.85), rgba(7, 7, 8, 0.95)), url('https://images.unsplash.com/photo-1601362840469-8178875af785?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--border-color);
}

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 230, 0, 0.02) 0%, transparent 60%);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.service-card:hover::after {
    background: radial-gradient(circle, rgba(255, 230, 0, 0.05) 0%, transparent 60%);
}

.service-card:hover {
    border-color: var(--accent-yellow);
    box-shadow: var(--glow-shadow);
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.2rem;
    color: var(--primary-yellow);
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(255, 230, 0, 0.2);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--accent-yellow);
    text-shadow: 0 0 15px rgba(255, 230, 0, 0.5);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.service-features li i {
    color: var(--primary-yellow);
}

.service-card .btn {
    width: 100%;
}

/* ==========================================================================
   CONTACT PAGE (contact.php) STYLES
   ========================================================================== */
.contact-hero {
    padding-top: 180px;
    padding-bottom: 90px;
    background: linear-gradient(to bottom, rgba(7, 7, 8, 0.85), rgba(7, 7, 8, 0.95)), url('https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 0px solid var(--border-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 80px;
}

.contact-info-panel {
    padding: 40px;
}

.contact-info-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--text-white);
}

.contact-info-panel p {
    color: var(--text-gray);
    margin-bottom: 35px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-detail-item .icon-box {
    margin: 0;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.detail-content h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-white);
    margin-bottom: 5px;
}

.detail-content p {
    color: var(--text-gray);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.detail-content a:hover {
    color: var(--primary-yellow);
}

/* WhatsApp Banner Link */
.whatsapp-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 8px;
    color: #25d366;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.whatsapp-banner:hover {
    background: #25d366;
    color: #000;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.whatsapp-banner i {
    font-size: 1.3rem;
}

/* Contact Form */
.contact-form-panel {
    padding: 40px;
}

.contact-form-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--text-white);
}

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

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 14px 20px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 15px rgba(255, 230, 0, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.contact-form-panel .btn {
    width: 100%;
}

/* Google Map Container */
.map-section {
    padding-bottom: 100px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    position: relative;
    height: 450px;
}

.map-container:hover {
    border-color: var(--accent-yellow);
    box-shadow: var(--glow-shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg) grayscale(10%) contrast(90%);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   SCROLL REVEAL & JS UTILITIES
   ========================================================================== */
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.reveal-left {
    position: relative;
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.reveal-right {
    position: relative;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

.delay-500 {
    transition-delay: 500ms;
}

/* ==========================================================================
   BEFORE & AFTER SLIDER
   ========================================================================== */
.before-after-wrapper {
    margin: 40px auto;
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.before-after-slider-container {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

.before-after-slider-container:hover {
    border-color: var(--primary-yellow);
    box-shadow: var(--glow-shadow);
}

.before-after-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.before-after-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.before-after-img-wrapper.before-img {
    z-index: 1;
}

.before-after-img-wrapper.after-img {
    z-index: 2;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

/* Range input cover */
.before-after-slider-container .slider-handle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
    cursor: ew-resize;
    z-index: 10;
    -webkit-appearance: none;
    appearance: none;
}

.before-after-slider-container .slider-bar {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background-color: var(--primary-yellow);
    box-shadow: 0 0 10px var(--primary-yellow), 0 0 20px var(--primary-yellow);
    z-index: 5;
    pointer-events: none;
    transform: translateX(-50%);
}

.before-after-slider-container .slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    border: 3px solid var(--primary-yellow);
    color: var(--primary-yellow);
    box-shadow: 0 0 20px rgba(255, 230, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    z-index: 6;
    pointer-events: none;
    font-size: 1.1rem;
    transition: transform 0.1s ease;
}

.slider-label {
    position: absolute;
    bottom: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 6px 14px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    pointer-events: none;
    z-index: 3;
}

.slider-label.label-before {
    right: 20px;
    color: #ff4d4d;
    border-color: rgba(255, 77, 77, 0.3);
}

.slider-label.label-after {
    left: 20px;
    color: var(--primary-yellow);
    border-color: rgba(244, 196, 48, 0.3);
}

@media (max-width: 768px) {
    .before-after-slider-container {
        height: 320px;
    }
}

/* ==========================================================================
   LUXURY SHOWCASE MIXED IMAGE LAYOUTS
   ========================================================================== */
.showcase-grid-wrapper {
    margin-top: 60px;
}

/* Layout 1: Left large image + right 2 small stacked (Grid composition) */
.layout-asymmetric-3 {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 30px;
}

.layout-asymmetric-3 .large-img {
    height: 530px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
}

.layout-asymmetric-3 .small-img-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.layout-asymmetric-3 .small-img {
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
}

/* Layout 2: Overlapping offset layout (floating panels) */
.layout-overlapping-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    height: 550px;
    margin-bottom: 50px;
}

.layout-overlapping-panels .panel-bg {
    height: 480px;
    width: 85%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.layout-overlapping-panels .panel-floating {
    height: 380px;
    width: 60%;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--primary-yellow);
    box-shadow: var(--glow-shadow);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

/* Layout 3: Horizontal widescreen layout + split blocks */
.layout-widescreen-split {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.layout-widescreen-split .wide-banner {
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
}

.layout-widescreen-split .split-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.layout-widescreen-split .split-col-img {
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* Layout 4: Alternating Grid */
.layout-alternating-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 25px;
    align-items: center;
}

.layout-alternating-grid .col-tall {
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.layout-alternating-grid .col-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.layout-alternating-grid .col-square {
    height: 227px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* Common Image zoom transitions */
.gallery-img-container {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.gallery-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-img-container:hover img {
    transform: scale(1.08);
}

.gallery-img-container .img-overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(7, 7, 8, 0.7), transparent);
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.gallery-img-container:hover .img-overlay-glow {
    background: linear-gradient(to top, rgba(255, 230, 0, 0.15), transparent);
}

/* Responsive adjustments for layouts */
@media (max-width: 992px) {
    .layout-asymmetric-3 {
        grid-template-columns: 1fr;
    }

    .layout-asymmetric-3 .large-img {
        height: 380px;
    }

    .layout-overlapping-panels {
        display: flex;
        flex-direction: column;
        height: auto;
        gap: 30px;
    }

    .layout-overlapping-panels .panel-bg,
    .layout-overlapping-panels .panel-floating {
        position: relative;
        width: 100%;
        height: 300px;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }

    .layout-widescreen-split .split-cols {
        grid-template-columns: 1fr;
    }

    .layout-alternating-grid {
        grid-template-columns: 1fr;
    }

    .layout-alternating-grid .col-tall {
        height: 300px;
    }
}

/* ==========================================================================
   DROPDOWN MENU STYLES
   ========================================================================== */
.nav-item.dropdown {
    position: relative;
}

/* Dropdown menu container styling */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 220px;
    background: rgba(11, 11, 13, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 230, 0, 0.05);
    border-radius: 8px;
    list-style: none;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 200;
}

/* Desktop hover interactions */
.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-item.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
    color: var(--primary-yellow);
}

/* Dropdown individual link styling */
.dropdown-link {
    display: block;
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.dropdown-link:hover {
    color: var(--primary-yellow);
    background: rgba(255, 230, 0, 0.06);
    padding-left: 28px;
    /* Smooth slide-in indicator effect */
}

/* Active sub-link highlighting */
.dropdown-link.active {
    color: var(--primary-yellow);
    font-weight: 700;
}

/* Mobile Dropdown styles (inline accordion) */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        width: 100%;
        background: rgba(255, 255, 255, 0.02);
        border: none;
        border-left: 1px solid rgba(255, 230, 0, 0.2);
        box-shadow: none;
        padding: 5px 0 5px 15px;
        margin-top: 10px;
        margin-bottom: 10px;
        display: none;
        /* Controlled by JS active-mobile toggle */
        border-radius: 0;
    }

    .nav-item.dropdown.active-mobile .dropdown-menu {
        display: block;
    }

    .dropdown-link {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .nav-item.dropdown.active-mobile .dropdown-toggle i {
        transform: rotate(180deg);
    }
}

/* ==========================================================================
   ABOUT PAGE ADDITIONS (Stats, Timeline, Team)
   ========================================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.stat-card {
    padding: 30px 20px;
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-yellow);
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(255, 230, 0, 0.3);
}

.stat-lbl {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-gray);
}

/* Timeline Layout */
.timeline-container {
    max-width: 900px;
    margin: 50px auto 0;
    position: relative;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    margin-bottom: 35px;
    position: relative;
}

.timeline-badge {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
    border-radius: 6px;
    padding: 6px 12px;
    text-align: center;
    height: fit-content;
    box-shadow: var(--glow-shadow);
    background: rgba(0, 0, 0, 0.3);
}

.timeline-content {
    padding: 25px 30px;
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-gray);
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Team Grid Layout */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    padding: 0;
    overflow: hidden;
}

.member-img {
    height: 280px;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .member-img img {
    transform: scale(1.05);
}

.member-info {
    padding: 25px;
}

.member-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 5px;
}

.member-role {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.member-info p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.5;
}

@media (max-width: 576px) {
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Remove header underline in hero sections */
.about-hero .section-header h2::after,
.services-hero .section-header h2::after,
.contact-hero .section-header h2::after {
    display: none;
}