/* ==========================================================================
   MOHIT ARCHITECT - PREMIUM CSS STYLING
   ========================================================================== */

/* --- Design Tokens & Variables --- */
:root {
    --color-bg-dark: #070707; /* Deep luxurious pure black */
    --color-bg-dark-card: #121212; /* Clean dark-card charcoal */
    --color-bg-light: #0b0b0b; /* Deep slate charcoal background */
    --color-bg-light-sec: #101010; /* Secondary slate background */
    
    --primary-gold: #c8a27b; /* Architectural warm champagne gold */
    --primary-gold-dark: #b68d60;
    --primary-gold-glow: rgba(200, 162, 123, 0.1);
    
    --white: #ffffff;
    --black: #000000;
    
    --text-dark: #fcfcfc; /* High contrast white headers */
    --text-muted-dark: #a3a3a3; /* Sophisticated light silver-gray body */
    --text-light: #fcfcfc;
    --text-muted-light: #a3a3a3;
    
    --font-headings: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    
    --shadow-subtle: 0 4px 30px rgba(0, 0, 0, 0.25);
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(200, 162, 123, 0.04);
    --shadow-gold: 0 10px 40px rgba(200, 162, 123, 0.15);
    
    --glass-bg: rgba(11, 11, 11, 0.85); /* Premium dark glass nav */
    --glass-border: rgba(255, 255, 255, 0.04);
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--primary-gold);
    z-index: 2005;
    transition: width 0.08s ease-out;
}

/* --- Sleek Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #202020;
    border-radius: 4px;
    border: 2px solid var(--color-bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

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

ul {
    list-style: none;
}

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

address {
    font-style: normal;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

/* --- Utility Typography --- */
.section-badge {
    display: inline-block;
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.section-badge.text-center {
    display: block;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.section-title.text-center {
    text-align: center;
}

.section-title.text-light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted-dark);
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-subtitle.text-center {
    text-align: center;
}

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

.text-muted {
    color: var(--text-muted-light);
}

/* --- Premium Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--white);
}

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

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-nav {
    padding: 0.6rem 1.4rem;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background-color: transparent;
}

.btn-nav:hover {
    background-color: var(--primary-gold);
    color: var(--white);
}

/* --- Header & Navigation --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background-color: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.8rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

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

.brand-title {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--white);
}

.brand-subtitle {
    font-family: var(--font-headings);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 6px;
    color: var(--primary-gold);
    margin-top: -2px;
}

.desktop-nav .nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0;
    position: relative;
}

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

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

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

.main-header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.75);
}

.main-header.scrolled .nav-link:hover,
.main-header.scrolled .nav-link.active {
    color: var(--white);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Mobile Menu Button */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition-smooth);
}

.mobile-nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

body.lock-scroll {
    overflow: hidden;
}

/* Mobile Nav Menu Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg-dark);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav-overlay.open {
    transform: translateY(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-link {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-muted-light);
}

.mobile-link:hover {
    color: var(--white);
}

.mobile-link-btn {
    margin-top: 1rem;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@keyframes kenBurns {
    0% {
        transform: scale(1.05) translate(0, 0);
    }
    50% {
        transform: scale(1.12) translate(-1%, -0.5%);
    }
    100% {
        transform: scale(1.05) translate(0, 0);
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Support smooth desktop scaling */
    z-index: 1;
    animation: kenBurns 36s infinite ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.9) 30%, rgba(18, 18, 18, 0.4) 100%);
    z-index: 2;
}

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

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

.hero-badge {
    display: inline-block;
    font-family: var(--font-headings);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    border-left: 2px solid var(--primary-gold);
    padding-left: 1rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 300;
}

.hero-actions-group {
    display: flex;
    gap: 1.5rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
}

.mouse-icon {
    display: block;
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    margin: 0 auto 0.5rem auto;
    position: relative;
}

.mouse-icon .wheel {
    display: block;
    width: 4px;
    height: 8px;
    background-color: var(--primary-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.8s infinite ease-in-out;
}

.scroll-text {
    font-family: var(--font-headings);
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes scrollMouse {
    0% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 18px;
        opacity: 0.3;
    }
    100% {
        top: 8px;
        opacity: 1;
    }
}

/* --- About Section --- */
.about-section {
    background-color: var(--color-bg-light);
}

.grid-about {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.about-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.about-paragraph {
    font-size: 1rem;
    color: var(--text-muted-dark);
    margin-bottom: 1.5rem;
}

.about-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dark);
}

.trust-icon {
    color: var(--primary-gold);
}

.about-stats-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background-color: var(--color-bg-light-sec);
    padding: 2.5rem 2rem;
    text-align: center;
    border-bottom: 2px solid transparent;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    border-bottom-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-subtle);
}

.stat-number {
    display: block;
    font-family: var(--font-headings);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted-dark);
}

.about-image-card {
    position: relative;
    padding: 3rem;
    background-color: var(--color-bg-dark);
    color: var(--white);
    overflow: hidden;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(200, 162, 123, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
}

.about-badge-image {
    width: 80px;
    height: auto;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.about-card-text {
    position: relative;
    z-index: 2;
}

.about-card-text h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.about-card-text p {
    color: var(--text-muted-light);
    font-size: 0.9rem;
}

/* --- Services Section --- */
.services-section {
    background-color: var(--color-bg-light-sec);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--color-bg-dark-card);
    padding: 3.5rem 2.5rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(200, 162, 123, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.02);
    color: var(--primary-gold);
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.service-icon {
    width: 32px;
    height: 32px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--primary-gold);
    color: var(--white);
}

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
}

.service-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted-dark);
    margin-top: auto;
}

/* --- Portfolio Gallery Section --- */
.portfolio-section {
    background-color: var(--color-bg-light);
}

.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: none;
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.6rem 1.6rem;
    cursor: pointer;
    color: var(--text-muted-dark);
    position: relative;
    transition: var(--transition-quick);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transform: translateX(-50%);
    transition: var(--transition-smooth);
}

.tab-btn:hover {
    color: var(--text-dark);
}

.tab-btn.active {
    color: var(--primary-gold);
}

.tab-btn.active::after {
    width: 60%;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.project-card.project-hidden {
    display: none;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.portfolio-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.project-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16 / 10;
}

.project-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0.2) 60%, rgba(18, 18, 18, 0) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 2.5rem;
    z-index: 2;
    transition: var(--transition-smooth);
}

.project-info {
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.project-cat {
    display: block;
    font-family: var(--font-headings);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.project-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
}

.zoom-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(20px) scale(0.8);
    opacity: 0;
    transition: var(--transition-smooth);
}

.project-card:hover .project-img {
    transform: scale(1.08);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-card:hover .zoom-icon-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Instagram Integration Banner */
.insta-integration {
    background-color: var(--color-bg-dark);
    color: var(--white);
    padding: 4rem 5rem;
    position: relative;
    overflow: hidden;
}

.insta-integration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-gold);
}

.insta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.insta-icon-box {
    color: var(--primary-gold);
    flex-shrink: 0;
}

.insta-text {
    flex-grow: 1;
}

.insta-text h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.insta-text p {
    color: var(--text-muted-light);
    font-size: 0.95rem;
}

.insta-actions-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.btn-insta,
.btn-facebook {
    background-color: transparent;
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    flex-shrink: 0;
}

.btn-insta:hover,
.btn-facebook:hover {
    background-color: var(--primary-gold);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

/* --- Trust & Compliance Section --- */
.trust-banner-section {
    background-color: var(--color-bg-light-sec);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.trust-banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.trust-banner-card {
    text-align: center;
}

.badge-icon-container {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 1px dashed var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    margin: 0 auto 1.8rem auto;
    transition: var(--transition-smooth);
}

.badge-icon {
    width: 40px;
    height: 40px;
    transition: var(--transition-smooth);
}

.trust-banner-card:hover .badge-icon-container {
    background-color: var(--primary-gold-glow);
    border-style: solid;
    transform: rotate(5deg);
}

.trust-banner-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.2px;
}

.trust-banner-card p {
    font-size: 0.9rem;
    color: var(--text-muted-dark);
    max-width: 320px;
    margin: 0 auto;
}

/* --- Contact Section --- */
.contact-section {
    background-color: var(--color-bg-dark);
    color: var(--white);
    position: relative;
}

.grid-contact {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: stretch;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-lead {
    font-size: 1.15rem;
    margin-bottom: 3rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.contact-detail-item:hover .detail-icon {
    background-color: var(--primary-gold);
    color: var(--white);
    transform: scale(1.05);
}

.detail-text {
    display: flex;
    flex-direction: column;
}

.detail-text span {
    font-family: var(--font-headings);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted-light);
    margin-bottom: 0.25rem;
}

.detail-text a, 
.detail-text address {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 400;
}

.detail-text a:hover {
    color: var(--primary-gold);
}

.social-links-container h4 {
    color: var(--white);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background-color: var(--primary-gold);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-map-panel {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    height: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.contact-map-panel .map-container {
    width: 100%;
    height: 100%;
    flex-grow: 1;
}

.contact-map-panel iframe {
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0.95;
    transition: var(--transition-smooth);
}

.contact-map-panel:hover iframe {
    opacity: 1.0;
}

.directions-link {
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition-quick);
}

.directions-link:hover {
    color: var(--white);
    transform: translateX(3px);
}

/* --- Footer --- */
.main-footer {
    background-color: var(--black);
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 6rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand-col .logo-brand {
    align-self: flex-start;
}

.footer-about-text {
    font-size: 0.9rem;
    color: var(--text-muted-light);
    line-height: 1.8;
    max-width: 360px;
}

.footer-links-col h4,
.footer-compliance-col h4 {
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted-light);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
}

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

.copyright-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

/* --- Premium Lightbox Modal Overlay --- */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.5s;
}

.lightbox-overlay.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 2002;
    transition: var(--transition-quick);
}

.lightbox-close:hover {
    color: var(--primary-gold);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 1.5rem;
    z-index: 2002;
    transition: var(--transition-smooth);
}

.lightbox-nav:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.05);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-content-box {
    max-width: 80%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.lightbox-image-container {
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.6s ease;
}

.lightbox-overlay.open .lightbox-img {
    transform: scale(1);
    opacity: 1;
}

.lightbox-info-box {
    text-align: center;
    color: var(--white);
}

.lightbox-cat {
    display: block;
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.lightbox-title {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* --- JS Scroll-Reveal Classes --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scroll-reveal.fade-up {
    transform: translateY(40px);
}

.scroll-reveal.fade-left {
    transform: translateX(40px);
}

.scroll-reveal.fade-right {
    transform: translateX(-40px);
}

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

/* --- Media Queries (Responsiveness) --- */

/* Tablet Layout (under 1024px) */
@media screen and (max-width: 1024px) {
    .section-padding {
        padding: 6rem 0;
    }
    
    .grid-about {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .trust-banner-grid {
        gap: 2.5rem;
    }
    
    .grid-contact {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .footer-brand-col {
        grid-column: span 2;
    }
}

/* Mobile & Small Screen Layout (under 768px) */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
    
    /* Header toggle displays */
    .desktop-nav,
    .header-actions .btn-nav {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .header-container {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    /* Hero scaling */
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .insta-integration {
        padding: 3rem 2rem;
    }
    
    .insta-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .insta-actions-group {
        width: 100%;
        justify-content: center;
    }
    
    .trust-banner-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .contact-form-panel {
        padding: 3rem 1.5rem;
    }
    
    .contact-action-card {
        padding: 1.25rem 1.5rem;
    }
    
    .contact-map-panel {
        min-height: 350px;
        height: 350px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-brand-col {
        grid-column: span 1;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .lightbox-nav {
        padding: 0.8rem;
    }
    
    .lightbox-prev {
        left: 0.5rem;
    }
    
    .lightbox-next {
        right: 0.5rem;
    }
    
    .lightbox-content-box {
        max-width: 90%;
    }
}
