/* ==========================================================================
   HOVAS DEVELOPMENTS - PREMIUM LUXURY STYLING
   ========================================================================== */


/* Custom Variable Definitions */
:root {
    --bg-primary: #0f192d;
    --bg-secondary: #1b2638;
    --bg-glass: rgba(18, 20, 24, 0.7);
    --bg-glass-hover: rgba(26, 29, 35, 0.8);
    
    --color-gold: #C5A880;
    --color-gold-light: #E5C49F;
    --color-gold-dark: #A38760;
    --color-gold-gradient: linear-gradient(135deg, #E5C49F 0%, #C5A880 50%, #A38760 100%);
    --color-gold-glow: rgba(197, 168, 128, 0.15);
    
    --text-primary: #F5F5F7;
    --text-muted: #9A9A9E;
    --text-dark: #0B0C0E;
    
    --border-glass: rgba(197, 168, 128, 0.12);
    --border-glass-hover: rgba(197, 168, 128, 0.3);
    
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s ease-out;
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    --shadow-luxury: 0 20px 40px rgba(0, 0, 0, 0.6);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    letter-spacing: -0.01em;
    overflow-x: hidden;
    background-color: var(--bg-primary);
}

/* Typography styling */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    color: var(--text-muted);
}

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

ul {
    list-style: none;
}

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

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

.section-padding {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }
}

.bg-alt {
    background-color: var(--bg-secondary);
}

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

.text-gold {
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    border: 1px solid var(--border-glass);
    background: rgba(197, 168, 128, 0.05);
    border-radius: 40px;
    backdrop-filter: blur(4px);
    margin-bottom: 24px;
}

.mt-4 {
    margin-top: 40px;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 40px;
}

.grid-2-col {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3-col {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4-col {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 991px) {
    .grid-3-col {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-4-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2-col, .grid-3-col, .grid-4-col {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Button Component Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-headings);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--color-gold-gradient);
    color: var(--text-dark);
    border: none;
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold-gradient);
    color: var(--text-dark);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.2);
}

.btn-block {
    width: 100%;
}

/* Sections Common Header */
.section-header {
    margin-bottom: 60px;
    max-width: 700px;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
}

.section-tagline {
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
}

/* Slide Indicator Section */
.slide-indicator-section {
    font-family: var(--font-headings);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    opacity: 0.6;
    margin-top: 30px;
    border-top: 1px solid var(--border-glass);
    padding-top: 16px;
    /*display: inline-block;*/
    display: none!important;
}

.slide-indicator-section.inline {
    margin-top: 50px;
    border-top: none;
    padding-top: 0;
    /*display: block;*/
    display: none!important;
}

/* Header Navigation Bar Styling */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid var(--border-glass);
    background-color: rgba(11, 12, 14, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    padding: 12px 0;
    background-color: rgba(11, 12, 14, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.site-header.scrolled .header-container {
    padding: 12px 40px;
}

@media (max-width: 768px) {
    .header-container {
        padding: 20px 24px;
    }
    .site-header.scrolled .header-container {
        padding: 12px 24px;
    }
}

.logo {
    font-family: var(--font-headings);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.logo-accent {
    color: var(--color-gold);
    font-weight: 800;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    padding: 8px 0;
    position: relative;
}

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

.nav-link:hover {
    color: var(--text-primary);
}

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

.nav-btn {
    padding: 10px 20px;
    font-size: 0.75rem;
}

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

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

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: var(--bg-secondary);
        border-left: 1px solid var(--border-glass);
        padding: 100px 40px 40px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
        transition: var(--transition-smooth);
        display: flex;
        flex-direction: column;
    }

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

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        width: 100%;
    }

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

    .nav-btn {
        width: 100%;
        margin-top: 20px;
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    /* Toggle animations to form X */
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--color-gold);
    }
    
    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--color-gold);
    }
}

/* Hero Section (Slide 01) */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(11, 12, 14, 0.4) 0%, rgba(11, 12, 14, 0.95) 100%);
    z-index: 2;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: kenBurns 30s infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 850px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 650px;
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
}

.slide-indicator {
    position: absolute;
    bottom: 50px;
    right: 40px;
    z-index: 5;
    font-family: var(--font-headings);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    display: none!important;
}

.slide-indicator .current {
    font-size: 1.5rem;
    color: var(--color-gold);
    font-weight: 700;
    display: none!important;
}

.slide-indicator .divider {
    opacity: 0.3;
    display: none!important;
}

.slide-indicator .total {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: none!important;
}

@media (max-width: 768px) {
    .slide-indicator {
        bottom: 30px;
        right: 24px;
        display: none!important;
    }
}

.scroll-prompt {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-text {
    font-family: var(--font-headings);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    opacity: 0.8;
}

.scroll-icon {
    width: 24px;
    height: 40px;
    border: 2px solid var(--border-glass-hover);
    border-radius: 20px;
    position: relative;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0% { transform: translate(-50%, 0); opacity: 0; }
    30% { opacity: 1; }
    80% { transform: translate(-50%, 14px); opacity: 0; }
    100% { transform: translate(-50%, 0); opacity: 0; }
}

@media (max-width: 768px) {
    .scroll-prompt {
        display: none;
    }
}

/* Animations for Entrance */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll reveal initial states */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Who We Are / Corporate Profile (Slide 02) */
.about-text-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-right: 40px;
}

.lead-text {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.body-text {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.about-cards-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-card {
    background-color: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 36px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glass-hover);
    box-shadow: var(--shadow-luxury);
    background-color: var(--bg-glass-hover);
}

.card-icon-container {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(229, 196, 159, 0.1) 0%, rgba(197, 168, 128, 0.02) 100%);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-bottom: 24px;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-text-content {
        padding-right: 0;
    }
    .about-card {
        padding: 24px;
    }
}

/* Operational Pillars (Slide 03) */
.pillar-card {
    position: relative;
    background-color: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 48px 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    z-index: 5;
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-glass-hover);
    box-shadow: var(--shadow-luxury);
    background-color: var(--bg-glass-hover);
}

.pillar-num {
    font-family: var(--font-headings);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(197, 168, 128, 0.08);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
    z-index: -1;
    transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-num {
    color: rgba(197, 168, 128, 0.15);
    transform: scale(1.1);
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.pillar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-gold-gradient);
    transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-title::after {
    width: 80px;
}

.pillar-desc {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Background Glow Effect on cards */
.pillar-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.1) 0%, transparent 70%);
    bottom: -75px;
    right: -75px;
    border-radius: 50%;
    z-index: -2;
    transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-glow {
    background: radial-gradient(circle, rgba(197, 168, 128, 0.2) 0%, transparent 70%);
    transform: scale(1.5);
}

@media (max-width: 768px) {
    .pillar-card {
        padding: 36px 28px;
    }
}

/* Development Lifecycle Timeline (Slide 04) */
.timeline-container {
    position: relative;
    margin-top: 80px;
    margin-bottom: 40px;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--border-glass);
    z-index: 1;
}

.timeline-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 25%; /* Initial progress matches Phase 1 */
    background: var(--color-gold-gradient);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.5);
    transition: width 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.timeline-items {
    position: relative;
    z-index: 5;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.timeline-node {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-glass);
    background-color: var(--bg-primary);
    border-radius: 50%;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    position: relative;
}

.node-dot {
    width: 8px;
    height: 8px;
    background-color: transparent;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.timeline-content {
    padding: 0 10px;
    transition: var(--transition-smooth);
    opacity: 0.6;
    transform: translateY(10px);
}

.phase-num {
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
    transition: var(--transition-smooth);
}

.phase-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.phase-desc {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Active Timeline Stage State */
.timeline-item.active .timeline-node {
    border-color: var(--color-gold);
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.4);
    transform: scale(1.15);
}

.timeline-item.active .node-dot {
    background-color: var(--color-gold);
    box-shadow: 0 0 8px var(--color-gold);
}

.timeline-item.active .timeline-content {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item.active .phase-num {
    color: var(--color-gold);
}

/* Responsive lifecycle layout */
@media (max-width: 991px) {
    .timeline-line {
        display: none;
    }
    
    .timeline-container {
        margin-top: 40px;
        padding-left: 20px;
    }
    
    .timeline-container::after {
        content: '';
        position: absolute;
        top: 0;
        left: 30px;
        width: 2px;
        height: 100%;
        background-color: var(--border-glass);
        z-index: 1;
    }
    
    .timeline-container-vertical-progress {
        position: absolute;
        top: 0;
        left: 30px;
        width: 2px;
        background: var(--color-gold-gradient);
        z-index: 2;
        transition: height 1s ease;
    }
    
    .timeline-items {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .timeline-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }
    
    .timeline-node {
        margin-bottom: 0;
        margin-right: 30px;
        flex-shrink: 0;
        z-index: 5;
    }
    
    .timeline-content {
        padding: 0;
        transform: translateX(10px);
    }
    
    .timeline-item.active .timeline-content {
        transform: translateX(0);
    }
}

/* Featured Portfolio Slider (Slide 05, 06, 07) */
.portfolio-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.portfolio-intro-desc {
    max-width: 500px;
    font-size: 1.1rem;
    margin-top: 16px;
}

.portfolio-intro .slide-indicator-section {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

@media (max-width: 768px) {
    .portfolio-intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

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

.portfolio-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 200%; /* Represents 2 slide sets side-by-side */
}

.project-slide {
    width: 50%; /* One slide spans full width of container */
    flex-shrink: 0;
    opacity: 0.3;
    filter: blur(2px);
    transform: scale(0.97);
    transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-slide.active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

.project-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    background-color: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 991px) {
    .project-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }
}

.project-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.project-slide.active:hover .project-img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 12, 14, 0.4) 0%, transparent 50%);
}

.project-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: var(--color-gold);
    color: var(--text-dark);
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.project-info-wrapper {
    padding-right: 20px;
    display: flex;
    flex-direction: column;
}

.project-location-badge {
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.project-name {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.project-meta-desc {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.project-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.project-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.highlight-icon {
    color: var(--color-gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.highlight-item strong {
    display: block;
    font-family: var(--font-headings);
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.highlight-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.project-slide-label {
    font-family: var(--font-headings);
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.5;
    border-top: 1px solid var(--border-glass);
    padding-top: 16px;
    margin-top: 10px;
}

/* Slider Controls Button Elements */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-glass);
    background-color: var(--bg-glass);
    border-radius: 50%;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background-color: rgba(197, 168, 128, 0.05);
    transform: scale(1.05);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-glass-hover);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--color-gold);
    box-shadow: 0 0 8px var(--color-gold);
    transform: scale(1.2);
}

/* Performance Indicators Metric Counters (Slide 08) */
.metrics-grid {
    margin-top: 60px;
}

.metric-card {
    background-color: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 50px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.metric-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glass-hover);
    box-shadow: var(--shadow-luxury);
    background-color: var(--bg-glass-hover);
}

.metric-value-container {
    font-family: var(--font-headings);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.metric-val {
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-unit {
    font-size: 2.5rem;
    color: var(--color-gold-light);
    margin-left: 2px;
}

.metric-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.metric-desc {
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .metric-card {
        padding: 40px 24px;
    }
    .metric-value-container {
        font-size: 3.5rem;
    }
    .metric-unit {
        font-size: 2rem;
    }
}

/* Contact Section & Form Element (Slide 09) */
.contact-info {
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

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

.detail-icon-wrapper {
    width: 52px;
    height: 52px;
    border: 1px solid var(--border-glass);
    background-color: var(--bg-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.detail-label {
    display: block;
    font-family: var(--font-headings);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.detail-link {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-primary);
}

.detail-link:hover {
    color: var(--color-gold-light);
}

.detail-link-static {
    display: inline-block;
    line-height: 1.5;
    font-size: 1.05rem;
}

.contact-form-container {
    background-color: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-luxury);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 16px;
}

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

.form-group label {
    display: block;
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.form-group input, .form-group textarea {
    width: 100%;
    background-color: rgba(11, 12, 14, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm);
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.15);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.1);
    background-color: rgba(11, 12, 14, 0.85);
}

.form-status {
    margin-top: 20px;
    font-family: var(--font-headings);
    font-size: 0.9rem;
    text-align: center;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.form-status.success {
    padding: 12px;
    background-color: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.form-status.error {
    padding: 12px;
    background-color: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

@media (max-width: 991px) {
    .contact-info {
        padding-right: 0;
        margin-bottom: 50px;
    }
    .contact-form-container {
        padding: 30px;
    }
}

/* Site Footer */
.site-footer {
    border-top: 1px solid var(--border-glass);
    background-color: #07080a;
    padding: 40px 0;
}

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

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-family: var(--font-headings);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

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

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
}
