@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700;800&display=swap');

/* ==========================================================================
   PADMA INFRA - DESIGN SYSTEM & STYLESHEET (PHASE 1 - HERO SECTION)
   ========================================================================== */

/* 1. Imports & Core Variables */
:root {
    --color-bg-dark: #0a0a0a;
    --color-charcoal: #121212;
    --color-gold: #c5a880;
    --color-gold-hover: #e5c9a3;
    --color-text-light: #ffffff;
    --color-text-muted: #a0a0a2;
    --color-text-dark: #1c1c1c;
    --color-border-glass: rgba(255, 255, 255, 0.1);
    --color-bg-glass: rgba(18, 18, 18, 0.6);
    
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 2. Reset & Base Layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg-dark);
    font-family: var(--font-body);
    color: var(--color-text-light);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    min-height: 100vh;
}

/* Typography Utilities */
.gold-accent {
    color: var(--color-gold) !important;
}

.font-italic {
    font-style: italic;
}

/* 3. Luxury Header */
.luxury-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid var(--color-border-glass);
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.luxury-header.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    padding: 0;
}

.header-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.luxury-header.scrolled .header-container {
    padding: 4px 40px;
    max-width: 1800px;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.header-logo-img {
    height: 140px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.4));
}

.logo-link:hover {
    opacity: 0.85;
}

/* Scroll down transition */
.luxury-header.scrolled .header-logo-img {
    height: 95px;
}

/* Navigation Menu */
.nav-links {
    display: flex;
    gap: 40px;
    transition: var(--transition-smooth);
}

.luxury-header.scrolled .nav-links {
    gap: 28px;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
    position: relative;
    padding: 6px 0;
}

.nav-link .nav-num {
    font-size: 0.78rem;
    color: var(--color-gold);
    margin-right: 4px;
    font-weight: 300;
}

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

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

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

/* Header Action Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-inquire {
    font-family: var(--font-body);
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-text-light);
    padding: 10px 24px;
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-inquire::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-gold);
    z-index: -1;
    transition: var(--transition-smooth);
}

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

.btn-inquire:hover::before {
    top: 0;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 110;
}

.mobile-toggle .bar {
    width: 100%;
    height: 1.5px;
    background-color: var(--color-text-light);
    transition: var(--transition-smooth);
}

/* Hamburger active state */
.mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg-dark);
    z-index: 95;
    padding: 120px 40px 40px;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
    color: var(--color-text-light);
    padding-left: 10px;
}

.btn-inquire-mobile {
    font-family: var(--font-body);
    background: var(--color-gold);
    border: none;
    color: var(--color-text-dark);
    padding: 16px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    margin-top: 40px;
    transition: var(--transition-smooth);
}

/* 4. Full-screen Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

/* Slider and Ken Burns Motion */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
    transform: scale(1.0);
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 2;
    animation: kenBurnsZoom 8s linear forwards;
}

.slide.fade-out {
    opacity: 0;
    z-index: 1;
    /* keep scaling to avoid jumpiness during transition */
    animation: kenBurnsFadeOut 2s linear forwards;
}

@keyframes kenBurnsZoom {
    0% {
        transform: scale(1.0) translate(0, 0);
    }
    100% {
        transform: scale(1.07) translate(0.5%, -0.5%);
    }
}

@keyframes kenBurnsFadeOut {
    0% {
        transform: scale(1.07) translate(0.5%, -0.5%);
    }
    100% {
        transform: scale(1.09) translate(1%, -1%);
    }
}

/* Charcoal Black Dual Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    /* Dual gradient: left-to-right to shield text, bottom-to-top to shield timeline */
    background: 
        linear-gradient(to right, 
            rgba(10, 10, 10, 0.85) 0%, 
            rgba(10, 10, 10, 0.5) 35%, 
            rgba(10, 10, 10, 0) 70%),
        linear-gradient(to top, 
            rgba(10, 10, 10, 0.9) 0%, 
            rgba(10, 10, 10, 0.6) 30%, 
            rgba(10, 10, 10, 0) 75%);
    pointer-events: none;
}

/* Ambient Dust Particles effect */
.dust-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

.dust {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    animation: floatDust 12s infinite linear;
}

@keyframes floatDust {
    0% {
        transform: translateY(100vh) translateX(0) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-10vh) translateX(50px) scale(1.2);
        opacity: 0;
    }
}

/* 5. Hero Content Container */
.hero-content-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 220px 40px 50px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: flex-end;
    gap: 60px;
    height: 100%;
}

/* Typographic Text Block */
.hero-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4.5vw, 4.8rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.title-line {
    display: block;
}

.hero-description {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text-muted);
    max-width: 540px;
    margin-bottom: 24px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

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

/* Buttons */
.btn-primary {
    font-family: var(--font-body);
    background-color: var(--color-gold);
    border: 1px solid var(--color-gold);
    color: var(--color-text-dark);
    padding: 16px 36px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background-color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.btn-secondary {
    font-family: var(--font-body);
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--color-text-light);
    padding: 16px 36px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    border-color: var(--color-text-light);
    background-color: rgba(255,255,255,0.05);
    transform: translateY(-2px);
}

/* 6. Interactive Timeline Tracker */
.timeline-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    animation: fadeInUp 1.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.timeline-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

.timeline-current {
    font-weight: 500;
    color: var(--color-gold);
}

.timeline-divider {
    color: rgba(255, 255, 255, 0.3);
}

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

.timeline-stages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 340px;
}

.stage-item {
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 4px 0;
    cursor: pointer;
    width: 100%;
    text-align: left;
    outline: none;
    transition: var(--transition-smooth);
}

.stage-item:hover {
    opacity: 0.9;
}

.stage-num {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-gold);
    margin-bottom: 4px;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.stage-item.active .stage-num {
    opacity: 1;
}

.stage-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
    margin-bottom: 8px;
}

.stage-item.active .stage-name {
    color: var(--color-text-light);
    font-weight: 500;
}

/* Progress bar container and active state animation */
.progress-bar-container {
    width: 100%;
    height: 1.5px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.progress-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--color-gold);
    transition: width 0.1s linear; /* updated by JS */
}

/* 7. Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-text-muted);
}

.scroll-mouse {
    width: 18px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 9px;
    position: relative;
}

.scroll-wheel {
    width: 2px;
    height: 6px;
    background-color: var(--color-gold);
    border-radius: 1px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnimation 1.8s infinite ease-in-out;
}

@keyframes scrollAnimation {
    0% {
        top: 6px;
        opacity: 1;
    }
    80% {
        top: 16px;
        opacity: 0;
    }
    100% {
        top: 6px;
        opacity: 0;
    }
}

/* Fade in animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 8. Responsive Adjustments */
@media (max-width: 1024px) {
    .hero-content-container {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
        align-items: stretch;
        padding-top: 100px;
        padding-bottom: 100px;
        gap: 30px;
    }

    .hero-text-wrapper {
        justify-content: flex-start;
        height: 100%;
        margin-top: 15px;
    }
    
    .scroll-indicator {
        display: none !important;
    }
    
    .timeline-wrapper {
        align-items: flex-start;
        width: 100%;
        max-width: 100%;
    }
    
    .timeline-stages {
        flex-direction: row;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        gap: 24px;
        padding-bottom: 12px;
        scrollbar-width: none; /* Firefox */
    }
    
    .timeline-stages::-webkit-scrollbar {
        display: none; /* Safari/Chrome */
    }
    
    .stage-item {
        flex: 0 0 130px;
    }
    
    .timeline-indicator {
        margin-bottom: 16px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 10px 16px;
    }
    
    .header-logo-img {
        height: 60px !important;
    }
    
    .luxury-header.scrolled .header-logo-img {
        height: 48px !important;
    }
    
    .luxury-header.scrolled .header-container {
        padding: 4px 16px;
    }
    
    .nav-links {
        display: none; /* Hidden on mobile */
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-content-container {
        padding: 115px 24px 110px;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
        align-items: stretch;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 2.0rem;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 0.82rem;
        margin-bottom: 16px;
        line-height: 1.4;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 0.72rem;
        letter-spacing: 0.1em;
    }
    
    .timeline-stages {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        grid-template-rows: repeat(2, auto) !important;
        gap: 12px 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: visible !important;
        padding-bottom: 0 !important;
    }
    
    .stage-item {
        width: 100% !important;
        flex: none !important;
    }
    
    .stage-name {
        font-size: 0.85rem !important;
        margin-bottom: 6px !important;
    }
    
    .stage-num {
        font-size: 0.68rem !important;
        margin-bottom: 2px !important;
    }
}

/* Conditionally show scroll indicator on mobile and tablet at the very bottom if there is enough height */
@media (max-width: 1024px) and (min-height: 641px) {
    .scroll-indicator {
        display: flex !important;
        bottom: 25px !important;
    }
}

/* 9. Small Vertical Screen Height Adjustments (Desktop) */
@media (max-height: 820px) and (min-width: 1025px) {
    .luxury-header:not(.scrolled) .header-container {
        padding: 8px 40px;
    }
    
    .luxury-header:not(.scrolled) .header-logo-img {
        height: 100px;
    }

    .hero-content-container {
        padding-top: 165px;
        padding-bottom: 30px;
    }
    
    .hero-subtitle {
        margin-bottom: 10px;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 4vw, 4.2rem);
        margin-bottom: 16px;
    }
    
    .hero-description {
        margin-bottom: 20px;
    }
    
    .timeline-stages {
        gap: 6px;
    }
    
    .stage-item {
        padding: 2px 0;
    }
    
    .stage-name {
        font-size: 1.0rem;
        margin-bottom: 2px;
    }
    
    .timeline-indicator {
        margin-bottom: 8px;
    }
}

/* ==========================================================================
   10. Inquiry Sanctuary & Lead Capture Section
   ========================================================================== */

.inquiry-section {
    background-color: #0e0e0e;
    padding: 120px 40px;
    border-top: 1px solid var(--color-border-glass);
    position: relative;
    z-index: 10;
}

.inquiry-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    grid-template-areas:
        "header form"
        "details form"
        "office form";
    gap: 40px 80px;
    align-items: start;
}

/* Left Info Header */
.inquiry-info-header {
    grid-area: header;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.inquiry-form-panel {
    grid-area: form;
}

.inquiry-details {
    grid-area: details;
}

.inquiry-office-preview {
    grid-area: office;
}

.inquiry-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.inquiry-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.1;
    margin-bottom: 30px;
}

.inquiry-lead-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 48px;
    max-width: 440px;
}

.inquiry-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-left: 1px solid var(--color-gold);
    padding-left: 20px;
}

.detail-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    font-weight: 500;
}

.detail-value {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--color-text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

/* Right Form Panel */
.inquiry-form-panel {
    background: rgba(18, 18, 18, 0.4);
    border: 1px solid var(--color-border-glass);
    padding: 60px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.form-group, .form-group-full {
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Minimalist outline input with floating label */
.form-group input, .form-group-full textarea {
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-light);
    padding: 12px 0;
    width: 100%;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group-full textarea:focus {
    border-color: var(--color-gold);
}

/* Floating label styles */
.form-group label, .form-group-full label {
    position: absolute;
    top: 12px;
    left: 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    pointer-events: none;
    transition: var(--transition-smooth);
    transform-origin: left top;
}

/* Move label up on focus or text input */
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group-full textarea:focus ~ label,
.form-group-full textarea:not(:placeholder-shown) ~ label {
    transform: translateY(-24px) scale(0.8);
    color: var(--color-gold);
}

/* Static prefix for Phone Field */
.phone-group {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}

.phone-prefix {
    font-size: 0.9rem;
    color: var(--color-gold);
    padding-bottom: 12px;
    margin-right: 12px;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.15);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.phone-group input:focus ~ .phone-prefix {
    border-color: var(--color-gold);
}

/* Adjust floating label for phone input to shift right */
.phone-group .phone-label {
    left: 42px;
}

.phone-group input:focus ~ .phone-label,
.phone-group input:not(:placeholder-shown) ~ .phone-label {
    transform: translateY(-24px) translateX(-42px) scale(0.8);
}

/* Error validation states */
.form-group.has-error input,
.phone-group.has-error input,
.phone-group.has-error .phone-prefix,
.form-group-full.has-error textarea {
    border-color: #cf6679 !important;
}

.form-group.has-error label,
.phone-group.has-error .phone-label,
.form-group-full.has-error label {
    color: #cf6679 !important;
}

.error-msg {
    position: absolute;
    bottom: -20px;
    left: 0;
    font-size: 0.7rem;
    color: #cf6679;
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.has-error .error-msg {
    opacity: 1;
}

/* Plan Card Selectors */
.form-section-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.plan-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.plan-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.plan-card-border {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 1px solid transparent;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.plan-card:hover {
    background-color: rgba(255, 255, 255, 0.04);
}

.plan-card.active {
    background-color: rgba(197, 168, 128, 0.04);
}

.plan-card.active .plan-card-border {
    border-color: var(--color-gold);
}

.plan-level {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.plan-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-text-light);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.plan-desc {
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* Legal Consent Checkbox */
.form-group-checkbox {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    user-select: none;
    transition: var(--transition-smooth);
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background-color: transparent;
    margin-right: 12px;
    transition: var(--transition-smooth);
    border-radius: 2px;
    flex-shrink: 0;
}

.checkbox-label:hover .custom-checkbox {
    border-color: var(--color-gold);
}

.checkbox-label input[type="checkbox"]:checked ~ .custom-checkbox {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}

.custom-checkbox::after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid #000000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input[type="checkbox"]:checked ~ .custom-checkbox::after {
    display: block;
}

.checkbox-text {
    line-height: 1.4;
}

.checkbox-text a {
    color: var(--color-gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.checkbox-text a:hover {
    border-bottom-color: var(--color-gold);
}

.form-group-checkbox.has-error .custom-checkbox {
    border-color: #cf6679 !important;
}

.form-group-checkbox.has-error .checkbox-label {
    color: #cf6679 !important;
}

/* Submit Button */
.form-submit-wrapper {
    margin-top: 10px;
}

.btn-submit-inquiry {
    font-family: var(--font-body);
    background-color: var(--color-gold);
    border: 1px solid var(--color-gold);
    color: var(--color-text-dark);
    padding: 18px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    width: 100%;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-submit-inquiry:hover {
    background-color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
}

.btn-submit-inquiry.loading {
    color: transparent;
    pointer-events: none;
}

.btn-loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(28, 28, 28, 0.2);
    border-top: 2px solid var(--color-text-dark);
    border-radius: 50%;
    position: absolute;
    opacity: 0;
    transition: var(--transition-smooth);
}

.btn-submit-inquiry.loading .btn-loader {
    opacity: 1;
    animation: btnSpin 0.8s infinite linear;
}

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

/* Success Modal Overlay */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.95);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.success-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.success-modal-card {
    background-color: #121212;
    border: 1px solid var(--color-border-glass);
    padding: 60px;
    max-width: 550px;
    width: 90%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(40px);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.success-modal-overlay.active .success-modal-card {
    transform: translateY(0);
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(197, 168, 128, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.success-check-svg {
    width: 44px;
    height: 44px;
    stroke: var(--color-gold);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.success-check-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-check-path {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.success-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 300;
    color: var(--color-text-light);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.success-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.btn-modal-close {
    font-family: var(--font-body);
    background-color: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-text-light);
    padding: 14px 32px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-modal-close:hover {
    background-color: var(--color-gold);
    color: var(--color-text-dark);
}

/* ==========================================================================
   11. Extra Responsive Rules for inquiry Section
   ========================================================================== */
@media (max-width: 1024px) {
    .inquiry-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .inquiry-info-header,
    .inquiry-form-panel,
    .inquiry-details,
    .inquiry-office-preview {
        width: 100%;
    }
    
    .inquiry-info-header {
        align-items: center;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    
    .inquiry-lead-text {
        max-width: 600px;
    }
    
    .inquiry-details {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .detail-item {
        border-left: none;
        border-top: 1px solid var(--color-gold);
        padding-left: 0;
        padding-top: 15px;
        align-items: center;
        flex: 1 1 250px;
    }
}

@media (max-width: 768px) {
    .inquiry-section {
        padding: 80px 24px;
    }
    
    .inquiry-form-panel {
        padding: 40px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .plan-cards-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .success-modal-card {
        padding: 40px 24px;
    }
}

/* ==========================================================================
   12. Plans & Pricing Section
   ========================================================================== */

.plans-section {
    background-color: #0c0c0c;
    padding: 120px 40px;
    border-top: 1px solid var(--color-border-glass);
    position: relative;
    z-index: 10;
}

.plans-header {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plans-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.plans-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.1;
    margin-bottom: 24px;
}

.plans-lead-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.plans-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
}

.pricing-card {
    background: rgba(18, 18, 18, 0.4);
    border: 1px solid var(--color-border-glass);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: var(--transition-slow);
    cursor: default;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pricing-card-border {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 1px solid transparent;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.pricing-card:hover {
    transform: translateY(-8px);
    background: rgba(18, 18, 18, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.active {
    background: rgba(197, 168, 128, 0.02);
}

.pricing-card.active .pricing-card-border {
    border-color: var(--color-gold);
}

/* Card Header Block */
.card-header-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
}

.plan-badge {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 16px;
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.plan-badge.featured {
    color: var(--color-gold);
    border-color: rgba(197, 168, 128, 0.25);
    background-color: rgba(197, 168, 128, 0.05);
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-text-light);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.plan-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
}

.plan-price .currency {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-gold);
    margin-right: 4px;
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-text-light);
    letter-spacing: -0.02em;
    line-height: 1;
}

.plan-price .unit {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-left: 6px;
    font-weight: 300;
}

.plan-summary {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* Features Block */
.card-features-block {
    margin-bottom: 48px;
    flex-grow: 1;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.check-icon {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 3px;
}

/* Action Block Button */
.card-action-block {
    width: 100%;
}

.btn-select-plan-card {
    font-family: var(--font-body);
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-light);
    padding: 16px 24px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    width: 100%;
    transition: var(--transition-smooth);
    outline: none;
}

.btn-select-plan-card:hover {
    border-color: var(--color-text-light);
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-select-plan-card.active {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-text-dark);
}

.btn-select-plan-card.active:hover {
    background-color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
}

/* Responsive adjustment for pricing cards */
@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 500px;
    }
    .plans-section {
        padding: 80px 24px;
    }
}

/* ==========================================================================
   13. Why Choose Us Section
   ========================================================================== */
.why-section {
    background-color: #0a0a0a;
    padding: 120px 40px;
    border-top: 1px solid var(--color-border-glass);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Background Slider for Why Choose Us */
.why-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.why-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.0);
    z-index: 1;
    transition: opacity 2.5s ease-in-out, transform 10s cubic-bezier(0.25, 1, 0.5, 1);
}

.why-slide.active {
    opacity: 0.55; /* Higher opacity to make images the highlight */
    transform: scale(1.06); /* Elegant slow zoom-in */
    z-index: 2;
}

.why-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: radial-gradient(circle at center, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.6) 50%, #0a0a0a 100%);
    pointer-events: none;
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 4;
}

.why-header {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.why-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.1;
    margin-bottom: 24px;
}

.why-lead-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.why-card {
    background: rgba(12, 12, 12, 0.82);
    border: 1px solid var(--color-border-glass);
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: var(--transition-slow);
    cursor: default;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 4;
}

.why-card-border {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 1px solid transparent;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-8px);
    background: rgba(15, 15, 15, 0.92);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.why-card:hover .why-card-border {
    border-color: var(--color-gold);
}

.why-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(197, 168, 128, 0.05);
    border: 1px solid rgba(197, 168, 128, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon-wrapper {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    transform: rotateY(180deg);
}

.why-icon {
    width: 28px;
    height: 28px;
    color: var(--color-gold);
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
    color: var(--color-text-dark);
}

.why-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-text-light);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.why-card-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* Why Footer (Controls & Caption) */
.why-footer {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-border-glass);
    padding-top: 30px;
    z-index: 5;
    position: relative;
}

.why-controls {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.why-control-btn {
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 4px 8px;
    letter-spacing: 0.05em;
    position: relative;
    transition: var(--transition-smooth);
}

.why-control-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 8px;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

.why-control-btn:hover {
    color: var(--color-text-light);
}

.why-control-btn.active {
    color: var(--color-gold);
}

.why-control-btn.active::after {
    width: calc(100% - 16px);
}

.why-project-caption {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.why-project-caption .caption-label {
    font-weight: 500;
    color: var(--color-gold);
}

.why-project-caption .caption-separator {
    color: var(--color-border-glass);
}

.why-project-caption .caption-name {
    font-weight: 600;
    color: var(--color-text-light);
    transition: opacity 0.4s ease-in-out;
}

/* Why Section Responsive Rules */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .why-section {
        padding: 80px 24px;
    }
    .why-footer {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .why-project-caption {
        flex-direction: column;
        gap: 6px;
        font-size: 0.75rem;
    }
    .why-project-caption .caption-separator {
        display: none;
    }
}

/* ==========================================================================
   14. Philosophy Section
   ========================================================================== */
.philosophy-section {
    background-color: #0c0c0c;
    padding: 120px 40px;
    border-top: 1px solid var(--color-border-glass);
    position: relative;
    z-index: 10;
}

.philosophy-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.philosophy-narrative {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: sticky;
    top: 140px;
}

.philosophy-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.philosophy-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.1;
    margin-bottom: 30px;
}

.philosophy-lead-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.philosophy-pillars {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.philosophy-pillar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 40px;
    transition: var(--transition-smooth);
}

.philosophy-pillar:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pillar-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.pillar-heading {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-text-light);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.pillar-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    font-weight: 300;
}

.philosophy-pillar:hover {
    border-bottom-color: var(--color-gold);
}

/* Philosophy Responsive Rules */
@media (max-width: 1024px) {
    .philosophy-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .philosophy-narrative {
        position: static;
        align-items: center;
        text-align: center;
    }
    
    .philosophy-section {
        padding: 80px 24px;
    }
}

/* ==========================================================================
   15. Residences Portfolio Page Styles
   ========================================================================== */
.portfolio-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    background-color: #0c0c0c;
    border-bottom: 1px solid var(--color-border-glass);
    padding-top: 140px; /* Header spacing */
    overflow: hidden;
}

.portfolio-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(197, 168, 128, 0.04) 0%, rgba(10, 10, 10, 0) 70%);
    pointer-events: none;
}

.portfolio-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 2;
    position: relative;
}

.portfolio-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
    display: block;
}

.portfolio-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-text-light);
}

.portfolio-description {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text-muted);
    max-width: 600px;
}

.portfolio-section {
    padding: 80px 40px 120px;
    background-color: #0a0a0a;
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-filter-bar {
    display: flex;
    gap: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 24px;
    margin-bottom: 60px;
    overflow-x: auto;
    scrollbar-width: none;
}

.portfolio-filter-bar::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 6px 0;
    position: relative;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: -25px; /* Alignment with border line */
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    color: var(--color-text-light);
}

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

.filter-btn.active::after {
    width: 100%;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    transition: var(--transition-slow);
}

.portfolio-card {
    background: rgba(18, 18, 18, 0.4);
    border: 1px solid var(--color-border-glass);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.portfolio-card.filtered-out {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.portfolio-card-border {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 1px solid transparent;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 3;
}

.portfolio-img-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.portfolio-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0) 0%, rgba(12, 12, 12, 0.8) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-card-category {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.portfolio-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-text-light);
    margin-bottom: 6px;
}

.portfolio-card-sub {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.portfolio-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 16px;
    width: 100%;
}

.portfolio-card:hover {
    border-color: rgba(197, 168, 128, 0.3);
}

.portfolio-card:hover .portfolio-card-border {
    border-color: var(--color-gold);
}

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

/* Portfolio Details Modal Styling */
.portfolio-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 200;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    padding: 20px;
}

.portfolio-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.portfolio-modal-card {
    background-color: #121212;
    border: 1px solid var(--color-border-glass);
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.92);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.portfolio-modal-overlay.active .portfolio-modal-card {
    transform: scale(1);
}

.portfolio-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    color: var(--color-text-light);
    font-size: 2.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
    line-height: 1;
    outline: none;
}

.portfolio-modal-close:hover {
    color: var(--color-gold);
    transform: rotate(90deg);
}

.portfolio-modal-body {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 600px;
}

.portfolio-modal-img-col {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    position: relative;
}

.portfolio-modal-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-modal-info-col {
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow-y: auto;
}

.modal-project-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.modal-project-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.modal-project-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--color-text-muted);
    margin-bottom: 36px;
}

.modal-project-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    width: 100%;
    margin-bottom: 36px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.spec-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
}

.spec-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.modal-project-description-wrapper {
    margin-bottom: 48px;
    text-align: left;
}

.description-heading {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 14px;
}

.modal-project-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    font-weight: 300;
}

.modal-cta-btn {
    width: 100%;
    text-align: center;
    text-decoration: none;
}

/* Portfolio CTA Section */
.portfolio-cta {
    padding: 120px 40px;
    background-color: #0c0c0c;
    border-top: 1px solid var(--color-border-glass);
    text-align: center;
}

.portfolio-cta-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.portfolio-cta-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

/* Portfolio Page Responsive Rules */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .portfolio-modal-body {
        grid-template-columns: 1fr;
    }
    .portfolio-modal-img-col {
        height: 350px;
        min-height: 300px;
    }
    .portfolio-modal-info-col {
        padding: 40px 30px;
    }
}

@media (max-width: 640px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .portfolio-section {
        padding: 60px 24px 80px;
    }
    .portfolio-hero {
        min-height: 40vh;
    }
    .portfolio-filter-bar {
        gap: 20px;
        margin-bottom: 40px;
    }
    .modal-project-title {
        font-size: 1.8rem;
    }
    .modal-project-specs {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Inquiry Section - Corporate Office Preview */
.inquiry-office-preview {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.inquiry-office-preview .office-img {
    width: 280px;
    max-width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center 42%;
    border: 2px solid var(--color-gold);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.inquiry-office-preview:hover .office-img {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.4);
}

.inquiry-office-preview .office-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    font-weight: 500;
}

/* ==========================================================================
   16. Philosophy Section Testimonials
   ========================================================================== */
.philosophy-testimonials {
    margin-top: 50px;
    width: 100%;
}

.philosophy-testimonials-slider {
    position: relative;
    width: 100%;
    min-height: 250px;
}

.philosophy-testimonial-slide {
    background: rgba(18, 18, 18, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--color-gold);
    padding: 35px 30px;
    border-radius: 6px;
    display: none;
    opacity: 0;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.philosophy-testimonial-slide:hover {
    border-color: rgba(255, 255, 255, 0.08);
    border-left-color: var(--color-gold-hover);
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.philosophy-testimonial-slide.active {
    display: block;
    animation: fadeInTestimonial 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes fadeInTestimonial {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.philosophy-testimonials .quote-icon-wrapper {
    margin-bottom: 20px;
    color: rgba(197, 168, 128, 0.2);
    transition: var(--transition-smooth);
    display: inline-block;
}

.philosophy-testimonial-slide:hover .quote-icon-wrapper {
    color: rgba(197, 168, 128, 0.35);
    transform: scale(1.05);
}

.philosophy-testimonials .quote-icon {
    width: 32px;
    height: 32px;
}

.philosophy-testimonial-text {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 24px;
    font-weight: 300;
}

.philosophy-testimonial-author-info {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.philosophy-testimonial-author {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--color-gold);
    letter-spacing: 0.05em;
}

.philosophy-testimonial-project {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.philosophy-testimonials-dots {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    padding-left: 5px;
}

.philosophy-testimonials-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.philosophy-testimonials-dots .dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.philosophy-testimonials-dots .dot.active {
    background: var(--color-gold);
    width: 18px;
    border-radius: 3px;
}

@media (max-width: 1024px) {
    .philosophy-testimonials {
        margin-top: 40px;
    }
    .philosophy-testimonial-slide {
        padding: 28px 22px;
    }
}

/* ==========================================================================
   17. Corporate Footer
   ========================================================================== */
.luxury-footer {
    border-top: 1px solid var(--color-border-glass);
    padding: 80px 40px 40px 40px;
    background-color: #080808;
    color: var(--color-text-muted);
    position: relative;
    z-index: 10;
}

.luxury-footer .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
}

.luxury-footer .footer-col {
    flex: 1 1 280px;
}

.luxury-footer .footer-branding {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.luxury-footer .footer-logo {
    height: 130px;
    width: auto;
    opacity: 0.85;
    transition: var(--transition-smooth);
    display: block;
    object-fit: contain;
    align-self: flex-start;
}

.luxury-footer .footer-logo:hover {
    opacity: 1;
    transform: scale(1.02);
}

.luxury-footer .footer-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 500;
    line-height: 1.5;
}

.luxury-footer .footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-gold);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.luxury-footer .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.luxury-footer .footer-nav a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
    display: inline-block;
    width: fit-content;
}

.luxury-footer .footer-nav a:hover {
    color: var(--color-gold);
    transform: translateX(6px);
}

.luxury-footer .footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--color-text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.luxury-footer .footer-contact-details p {
    margin: 0;
}

.luxury-footer .footer-contact-details a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.luxury-footer .footer-contact-details a:hover {
    color: var(--color-gold);
}

.luxury-footer .footer-contact-details .gold-accent {
    color: var(--color-gold);
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.luxury-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 60px;
    padding-top: 30px;
}

.luxury-footer .footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.luxury-footer .footer-bottom-container a.back-to-top {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.luxury-footer .footer-bottom-container a.back-to-top:hover {
    color: var(--color-gold);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .luxury-footer {
        padding: 60px 24px 30px 24px;
    }
    .luxury-footer .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    .luxury-footer .footer-branding {
        align-items: center;
    }
    .luxury-footer .footer-logo {
        align-self: center;
    }
    .luxury-footer .footer-nav {
        align-items: center;
    }
    .luxury-footer .footer-nav a:hover {
        transform: scale(1.05);
    }
    .luxury-footer .footer-bottom {
        margin-top: 40px;
        padding-top: 20px;
    }
    .luxury-footer .footer-bottom-container {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }
}

/* ==========================================================================
   18. About Us Page Styles
   ========================================================================== */
.about-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.9)), url('assets/images/project4_residence_garden.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 120px 24px 60px;
    border-bottom: 1px solid var(--color-border-glass);
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.8) 100%);
    pointer-events: none;
}

.about-hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.about-hero .about-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    display: block;
    margin-bottom: 16px;
    font-weight: 500;
}

.about-hero .about-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Profile Section */
.about-profile-section {
    padding: 100px 40px;
    background-color: var(--color-bg-dark);
    border-bottom: 1px solid var(--color-border-glass);
}

.about-profile-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.profile-text-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.profile-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    font-weight: 500;
}

.profile-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-text-light);
}

.profile-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    font-weight: 300;
}

.profile-img-col {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 580px;
    border: 1px solid var(--color-border-glass);
}

.profile-office-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: var(--transition-slow);
}

.profile-img-col:hover .profile-office-img {
    transform: scale(1.03);
}

/* Founder Section */
.about-founder-section {
    padding: 100px 40px;
    background-color: var(--color-charcoal);
    border-bottom: 1px solid var(--color-border-glass);
}

.about-founder-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 80px;
    align-items: center;
}

.founder-img-col {
    display: flex;
    justify-content: center;
}

.founder-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 520px;
    background: rgba(30, 30, 30, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-gold);
    border-radius: 12px;
    overflow: visible;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 60px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transition: var(--transition-smooth);
}

.founder-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    height: 112%;
    width: auto;
    max-width: 120%;
    object-fit: contain;
    display: block;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.7));
}

.founder-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-gold);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.2;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.founder-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.7);
    border-color: var(--color-gold-hover);
}

.founder-image-wrapper:hover::after {
    transform: translate(-8px, -8px);
    opacity: 0.4;
}

.founder-image-wrapper:hover .founder-img {
    transform: translate(-50%, -5px) scale(1.02);
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.8));
}

.founder-info-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.founder-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    font-weight: 500;
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--color-text-light);
    margin: 0;
}

.founder-degree {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-gold);
    margin-left: 15px;
    letter-spacing: 0.08em;
    border-left: 1px solid var(--color-border-glass);
    padding-left: 15px;
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
}

.founder-title-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-top: -15px;
    font-weight: 400;
}

.founder-bio {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* Achievements / Stats Section */
.about-achievements-section {
    padding: 120px 40px;
    background-color: var(--color-charcoal);
    border-bottom: 1px solid var(--color-border-glass);
}

.about-achievements-section.home-achievements {
    padding: 40px 40px 20px;
}

.home-achievements .achievements-header {
    margin-bottom: 30px;
}

.home-achievements .achievements-stats-grid {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-achievements-section.home-achievements {
        padding: 30px 24px 15px;
    }
    .home-achievements .achievements-header {
        margin-bottom: 20px;
    }
}

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

.achievements-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.achievements-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    font-weight: 500;
}

.achievements-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
}

.achievements-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.6) 0%, rgba(5, 5, 5, 0.6) 100%);
    border: 1px solid var(--color-border-glass);
    border-top: 3px solid var(--color-gold);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(197, 168, 128, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 168, 128, 0.3);
    border-top-color: var(--color-gold-hover);
    box-shadow: 0 20px 45px rgba(197, 168, 128, 0.15);
}

.stat-number {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--color-gold);
    display: block;
    margin-bottom: 10px;
    line-height: 1;
    letter-spacing: 0.02em;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 15px rgba(197, 168, 128, 0.3);
}

.stat-label {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text-light);
    display: block;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.stat-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* Secondary Strengths section */
.strengths-header {
    text-align: center;
    margin-bottom: 45px;
}

.strengths-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.strengths-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.strength-card {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid var(--color-border-glass);
    padding: 30px;
    border-radius: 8px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.strength-card:hover {
    background: rgba(255, 255, 255, 0.01);
    border-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.strength-icon-wrapper {
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(197, 168, 128, 0.08);
    border-radius: 50%;
    margin-bottom: 4px;
}

.strength-icon {
    width: 20px;
    height: 20px;
}

.strength-card-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.strength-card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* Philosophy Pillars Section */
.about-philosophy-section {
    padding: 100px 40px;
    background-color: var(--color-bg-dark);
    border-bottom: 1px solid var(--color-border-glass);
}

.about-philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-philosophy-container .philosophy-pillar {
    background: rgba(18, 18, 18, 0.3);
    border: 1px solid var(--color-border-glass);
    padding: 40px 30px;
    border-radius: 6px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: unset;
}

.about-philosophy-container .philosophy-pillar:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .about-philosophy-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* CTA Section */
.about-cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #b39266 0%, var(--color-gold) 50%, #e5c9a3 100%);
    border-top: 1px solid var(--color-border-glass);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.about-cta-section .about-cta-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
    color: #0c0c0c;
}

.about-cta-section .about-cta-text span.gold-accent {
    color: #000000 !important;
    font-style: italic;
    font-weight: 500;
}

/* Premium Dark CTA Button on Gold Background */
.about-cta-section .btn-primary {
    background-color: #0c0c0c;
    color: var(--color-gold);
    border: 1px solid #0c0c0c;
    transition: var(--transition-smooth);
}

.about-cta-section .btn-primary:hover {
    background-color: transparent;
    color: #0c0c0c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}


/* Responsive Rules for About Page */
@media (max-width: 1024px) {
    .about-profile-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .profile-img-col {
        height: 520px;
        order: -1;
    }
    .about-founder-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .founder-img-col {
        order: -1;
    }
    .founder-image-wrapper {
        max-width: 400px;
        height: 500px;
    }
    .achievements-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .about-hero .about-title {
        font-size: 2.2rem;
    }
    .profile-title, .founder-name, .achievements-title {
        font-size: 2rem;
    }
    .achievements-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .home-achievements .achievements-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
    .home-achievements .stat-number {
        font-size: 2.2rem !important;
    }
    .home-achievements .stat-label {
        font-size: 0.9rem !important;
    }
    .home-achievements .stat-desc {
        font-size: 0.75rem !important;
    }
    .home-achievements .stat-card {
        padding: 20px 15px;
    }
    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .about-cta-text {
        font-size: 1.6rem;
    }
    .founder-image-wrapper {
        max-width: 300px;
        height: 400px;
    }
}

/* ==========================================================================
   19. Awards Page Styles
   ========================================================================== */

.awards-hero {
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.9)), 
                url('assets/images/project3_residence_wood.jpg');
    background-size: cover;
    background-position: center;
}

.awards-section {
    padding: 100px 40px 120px;
    background-color: var(--color-bg-dark);
    position: relative;
}

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

.awards-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.awards-sec-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    font-weight: 500;
}

.awards-sec-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
}

.awards-sec-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* Grid Layout */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Award Card */
.award-card {
    background: rgba(18, 18, 18, 0.4);
    border: 1px solid var(--color-border-glass);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
    cursor: pointer;
    overflow: hidden;
}

.award-card-border {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 1px solid transparent;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 3;
}

.award-img-wrapper {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
    background: #000;
}

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

.award-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0) 0%, rgba(12, 12, 12, 0.85) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.award-card-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.award-card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.3;
    margin-bottom: 8px;
    color: var(--color-text-light);
}

.award-card-sub {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.award-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: auto;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.award-card-meta .meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: var(--color-gold);
}

/* Hover States */
.award-card:hover {
    border-color: rgba(197, 168, 128, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.award-card:hover .award-card-border {
    border-color: var(--color-gold);
}

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

/* Lightbox Modal Styling */
.award-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 200;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    padding: 20px;
}

.award-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.award-modal-card {
    background-color: #121212;
    border: 1px solid var(--color-border-glass);
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.92);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.award-modal-overlay.active .award-modal-card {
    transform: scale(1);
}

.award-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    color: var(--color-text-light);
    font-size: 2.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
    line-height: 1;
    outline: none;
}

.award-modal-close:hover {
    color: var(--color-gold);
    transform: rotate(90deg);
}

.award-modal-body {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 600px;
}

.award-modal-img-col {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.award-modal-img-col img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 20px;
}

.award-modal-info-col {
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-award-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 16px;
}

.modal-award-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.2;
    color: var(--color-text-light);
    margin-bottom: 6px;
}

.modal-award-sub {
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.modal-award-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    width: 100%;
    margin-bottom: 36px;
}

.award-spec-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.award-spec-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    font-weight: 500;
}

.award-spec-value {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-weight: 300;
}

.modal-award-description-wrapper {
    margin-bottom: 40px;
    width: 100%;
}

.award-description-heading {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
}

.modal-award-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* Responsive Rules for Awards Page */
@media (max-width: 1024px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .award-modal-body {
        grid-template-columns: 1fr;
    }
    .award-modal-img-col {
        height: 400px;
        min-height: 350px;
    }
    .award-modal-img-col img {
        padding: 10px;
    }
    .award-modal-info-col {
        padding: 40px 30px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 768px) {
    .awards-section {
        padding: 60px 24px 80px;
    }
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .awards-sec-title {
        font-size: 2.2rem;
    }
    .modal-award-title {
        font-size: 1.8rem;
    }
    .modal-award-specs {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ==========================================================================
   20. Press Gallery Section Styles
   ========================================================================== */

.press-section {
    padding: 60px 40px 120px;
    background-color: var(--color-bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

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

.press-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.press-sec-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    font-weight: 500;
}

.press-sec-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
}

.press-sec-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* Press Grid */
.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Press Card */
.press-card {
    background: rgba(18, 18, 18, 0.4);
    border: 1px solid var(--color-border-glass);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
    cursor: pointer;
    overflow: hidden;
}

.press-card-border {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 1px solid transparent;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 3;
}

.press-img-wrapper {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.press-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.press-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0) 0%, rgba(12, 12, 12, 0.9) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.press-card-magazine {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.press-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.3;
    margin-bottom: 6px;
    color: var(--color-text-light);
}

.press-card-sub {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* Hover States */
.press-card:hover {
    border-color: rgba(197, 168, 128, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.press-card:hover .press-card-border {
    border-color: var(--color-gold);
}

.press-card:hover .press-img {
    transform: scale(1.06);
}

/* Press Image Lightbox Modal */
.press-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 210;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 40px;
}

.press-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.press-modal-card {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.press-modal-overlay.active .press-modal-card {
    transform: scale(1);
}

.press-modal-card img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border: 1px solid var(--color-border-glass);
    display: block;
}

.press-modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: transparent;
    border: none;
    color: var(--color-text-light);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 220;
    line-height: 1;
}

.press-modal-close:hover {
    color: var(--color-gold);
    transform: rotate(90deg);
}

/* Responsive Rules for Press Gallery */
@media (max-width: 1024px) {
    .press-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .press-img-wrapper {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .press-section {
        padding: 60px 24px 80px;
    }
    .press-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .press-sec-title {
        font-size: 2.2rem;
    }
    .press-modal-overlay {
        padding: 20px;
    }
    .press-modal-close {
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   16. Video Feature Section Styles (Side-by-Side)
   ========================================================================== */
.video-feature-section {
    background-color: #0c0c0c;
    padding: 120px 40px;
    border-top: 1px solid var(--color-border-glass);
    border-bottom: 1px solid var(--color-border-glass);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.video-feature-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.video-feature-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.video-feature-tagline {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.video-feature-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.2;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.video-feature-title .gold-text {
    color: var(--color-gold);
    font-weight: 400;
}

.video-feature-title .subtitle-text {
    font-size: 0.75em;
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}

.video-feature-title .title-separator {
    color: var(--color-gold);
    margin: 0 6px;
    font-weight: 300;
}

.video-feature-divider {
    width: 60px;
    height: 1px;
    background-color: var(--color-gold);
    margin-bottom: 28px;
}

.video-feature-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* Video Player Container */
.video-feature-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
    border: 1px solid var(--color-border-glass);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: border-color 0.4s ease, transform 0.4s ease;
}

.video-feature-player:hover {
    border-color: var(--color-gold);
    transform: translateY(-6px);
}

.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.video-feature-player:hover .video-thumbnail {
    transform: scale(1.06);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 84px;
    height: 84px;
    background-color: rgba(10, 10, 10, 0.85);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
    z-index: 3;
}

.play-svg {
    width: 32px;
    height: 32px;
    color: var(--color-gold);
    margin-left: 4px; /* Alignment adjustment for play triangle */
    transition: color 0.4s ease, transform 0.4s ease;
}

.video-feature-player:hover .video-play-btn {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 0 35px rgba(197, 168, 128, 0.55);
}

.video-feature-player:hover .play-svg {
    color: var(--color-text-dark);
    transform: scale(1.12);
}

/* Video Iframe */
.video-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Rules for Video Feature */
@media (max-width: 1024px) {
    .video-feature-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .video-feature-section {
        padding: 80px 24px;
    }
    .video-feature-content {
        align-items: center;
        text-align: center;
    }
    .video-feature-divider {
        margin: 0 auto 28px;
    }
}

@media (max-width: 640px) {
    .video-feature-title {
        font-size: 1.8rem;
    }
    .video-play-btn {
        width: 64px;
        height: 64px;
    }
    .play-svg {
        width: 24px;
        height: 24px;
    }
}

/* ==========================================================================
   CINEMATIC CAMERA REEL SECTION (INFINITE SCROLLING SHOWCASE)
   ========================================================================== */
.cinematic-reel-section {
    width: 100%;
    overflow: hidden;
    background-color: var(--color-bg-dark);
    padding: 80px 0 0 0;
    margin: 0;
    position: relative;
    border-top: 1px solid var(--color-border-glass);
    border-bottom: 1px solid var(--color-border-glass);
}

.reel-header {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
}

.reel-section-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.reel-section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.1;
}

.reel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Gradient Vignette overlays to softly fade entering/leaving images at edges */
.reel-container::before,
.reel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 180px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.reel-container::before {
    left: 0;
    background: linear-gradient(to right, #0a0a0a 0%, rgba(10, 10, 10, 0.8) 25%, rgba(10, 10, 10, 0) 100%);
}

.reel-container::after {
    right: 0;
    background: linear-gradient(to left, #0a0a0a 0%, rgba(10, 10, 10, 0.8) 25%, rgba(10, 10, 10, 0) 100%);
}

.reel-track {
    display: flex;
    width: max-content;
    animation: reel-scroll 38s linear infinite;
}

/* Note: Hover pause removed as requested to keep the camera reel scrolling continuously */

.reel-item {
    position: relative;
    flex-shrink: 0;
    width: auto;
    height: 420px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--color-gold);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.reel-item:hover {
    border-color: var(--color-gold-hover);
    box-shadow: inset 0 0 20px rgba(229, 201, 163, 0.25), 0 10px 30px rgba(197, 168, 128, 0.15);
}

.reel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.82) contrast(1.05);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reel-item:hover img {
    transform: scale(1.04);
    filter: brightness(0.95) contrast(1.05);
}

/* Caption and luxury overlay text */
.reel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px 40px;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.7) 60%, rgba(5, 5, 5, 0) 100%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 1;
    transform: translateY(0);
    transition: var(--transition-smooth);
}

.reel-item:hover .reel-caption {
    padding-bottom: 40px;
}

.reel-tag {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 6px;
    transition: var(--transition-smooth);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.reel-item:hover .reel-tag {
    color: var(--color-gold-hover);
    letter-spacing: 2.5px;
}

.reel-title {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 300;
    color: var(--color-text-light);
    letter-spacing: 1px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

/* High-performance infinite scrolling animation loop */
@keyframes reel-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        /* Translates exactly by half the track size (width of the 4 original slides) */
        transform: translate3d(-50%, 0, 0);
    }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .cinematic-reel-section {
        padding: 60px 0 0 0;
    }
    .reel-header {
        margin-bottom: 40px;
    }
    .reel-item {
        width: auto;
        height: 320px;
    }
    .reel-container::before,
    .reel-container::after {
        width: 100px;
    }
    .reel-caption {
        padding: 25px 30px;
    }
    .reel-title {
        font-size: 1.35rem;
    }
}

@media (max-width: 768px) {
    .cinematic-reel-section {
        padding: 50px 0 0 0;
    }
    .reel-header {
        margin-bottom: 30px;
    }
    .reel-section-subtitle {
        margin-bottom: 12px;
    }
    .reel-item {
        width: auto;
        height: 250px;
    }
    .reel-container::before,
    .reel-container::after {
        width: 50px;
    }
    .reel-caption {
        padding: 20px 24px;
    }
    .reel-tag {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }
    .reel-title {
        font-size: 1.15rem;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-smooth), background-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.whatsapp-float:hover {
    background-color: #22c35e;
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

/* Pulsing effect to draw attention */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.4;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Adjust on smaller screens */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }
}
