/* 
   KOKANE BUILDERS - LUXURY DESIGN SYSTEM (ENHANCED EDITION)
   Color Palette: Obsidian, Deep Charcoal, Champagne Gold, Ivory White
   Typography: Cormorant Garamond (Heading), Plus Jakarta Sans (Body/UI)
*/

/* --- ROOT VARIABLES --- */
:root {
    --color-bg-primary: #070707;
    --color-bg-secondary: #0E0E0E;
    --color-bg-tertiary: #151515;
    
    --color-gold-primary: #D4AF37;
    --color-gold-light: #F4E0A5;
    --color-gold-dark: #AA820A;
    --color-gold-glow: rgba(212, 175, 55, 0.2);
    --color-gold-gradient: linear-gradient(135deg, #F4E0A5 0%, #D4AF37 50%, #9A7B1C 100%);
    
    --color-text-light: #F5F5F7;
    --color-text-muted: #9A9A9F;
    --color-text-dark: #1C1C1E;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-luxury: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.25s ease;
    
    --border-luxury: 1px solid rgba(212, 175, 55, 0.15);
    --border-light: 1px solid rgba(255, 255, 255, 0.05);
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold-primary);
    border: 2px solid var(--color-bg-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-light);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-primary);
    color: var(--color-text-light);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.65;
}

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

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

ul {
    list-style: none;
}

/* --- UTILITIES & LAYOUT --- */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.accent-text {
    color: var(--color-gold-primary);
    font-family: var(--font-heading);
    font-style: italic;
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-luxury);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--color-gold-gradient);
    color: var(--color-bg-primary);
    border: 1px solid var(--color-gold-primary);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

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

.btn-outline {
    background-color: transparent;
    color: var(--color-text-light);
    border: var(--border-luxury);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-gold-gradient);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scaleX(0);
    transform-origin: right;
    z-index: -1;
}

.btn-outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-outline:hover {
    color: var(--color-bg-primary);
    border-color: var(--color-gold-primary);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* --- NAVBAR STYLING --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: var(--transition-luxury);
    background: linear-gradient(to bottom, rgba(7, 7, 7, 0.8) 0%, transparent 100%);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 16px 0;
    background-color: rgba(7, 7, 7, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: var(--border-glass);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Logo styling */
.logo {
    display: flex;
    align-items: center;
    line-height: 1;
}

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-luxury);
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-light);
    opacity: 0.75;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-fast);
}

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

.nav-link:hover {
    opacity: 1;
    color: var(--color-gold-primary);
}

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

.nav-btn-mobile {
    display: none;
}

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

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

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 850px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.08);
    transition: transform 8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.hero-section:hover .hero-bg {
    transform: scale(1.02);
}

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

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding-top: 100px;
    padding-bottom: 150px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5.6rem;
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--color-text-light);
    opacity: 0.8;
    margin-bottom: 48px;
    max-width: 650px;
    line-height: 1.85;
}

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

/* Scroll Indicator */
.scroll-indicator-wrapper {
    position: absolute;
    bottom: 180px;
    right: 30px;
    z-index: 10;
    display: flex;
    align-items: center;
    transform: rotate(90deg);
    transform-origin: right bottom;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

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

.mouse {
    width: 20px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    transform: rotate(-90deg); /* Counteract parent rotation */
}

.wheel {
    width: 3px;
    height: 6px;
    background-color: var(--color-gold-primary);
    border-radius: 50%;
    animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 0; }
    30% { opacity: 1; }
    80% { transform: translateY(12px); opacity: 0; }
    100% { opacity: 0; }
}

.scroll-indicator:hover .scroll-text {
    color: var(--color-gold-primary);
}

/* Floating Stats Bar */
.stats-bar-wrapper {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: calc(100% - 60px); /* Leaves a 30px gap on left/right of screen */
    max-width: 1200px; /* Restrict width to fit comfortably inside window */
    z-index: 10;
}

.stats-bar {
    background: rgba(14, 14, 14, 0.75);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: var(--border-glass);
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    padding: 24px 20px; /* Reduced padding to keep content inside container */
    align-items: center;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border-bottom: 2px solid var(--color-gold-primary);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 10px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem; /* Slightly smaller to prevent text wrapping/overflow */
    font-weight: 300;
    color: var(--color-gold-primary);
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.65rem; /* Tighter typography for metadata descriptions */
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.stat-divider {
    width: 1px;
    height: 44px; /* Shorter divider to align with reduced grid heights */
    background-color: rgba(212, 175, 55, 0.15);
    justify-self: center;
}

/* --- SECTION HEADERS --- */
.section-header {
    margin-bottom: 70px;
}

.section-header.center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header.between {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.section-tagline {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold-primary);
    margin-bottom: 18px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.section-description {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--color-text-muted);
    margin-top: 24px;
    line-height: 1.85;
}

/* --- ABOUT SECTION --- */
.about-section {
    padding-top: 220px; /* Offset the floating stats bar */
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 100px;
    align-items: center;
}

.lead-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.45;
    margin-bottom: 28px;
    color: var(--color-text-light);
}

.body-text {
    font-size: 0.98rem;
    font-weight: 300;
    color: var(--color-text-muted);
    margin-bottom: 48px;
    line-height: 1.85;
}

/* Trust Values */
.values-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 48px;
}

.value-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.value-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-bg-secondary);
    border: var(--border-luxury);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-primary);
    flex-shrink: 0;
    transition: var(--transition-luxury);
}

.value-item:hover .value-icon {
    background-color: var(--color-gold-primary);
    color: var(--color-bg-primary);
    box-shadow: 0 0 15px var(--color-gold-glow);
    transform: translateY(-2px);
}

.value-icon svg {
    width: 22px;
    height: 22px;
}

.value-text h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.value-text p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Certifications */
.certifications {
    border-top: var(--border-light);
    padding-top: 36px;
}

.cert-title {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.badge {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 8px 18px;
    background-color: var(--color-bg-secondary);
    border: var(--border-light);
    color: var(--color-text-light);
    transition: var(--transition-fast);
}

.badge:hover {
    border-color: var(--color-gold-primary);
    color: var(--color-gold-primary);
}

/* About Image styling */
.about-image-wrapper {
    position: relative;
}

.about-img-container {
    position: relative;
    padding: 24px;
    border: var(--border-luxury);
}

.about-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    filter: grayscale(15%) contrast(105%);
    transition: var(--transition-luxury);
}

.about-img-container:hover .about-img {
    filter: grayscale(0%) contrast(100%);
}

.experience-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background-color: var(--color-bg-tertiary);
    border: var(--border-luxury);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.exp-years {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 300;
    color: var(--color-gold-primary);
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.exp-text {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1.5;
    color: var(--color-text-light);
}

/* --- SERVICES SECTION --- */
.services-section {
    background-color: var(--color-bg-secondary);
}

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

.service-card {
    background-color: var(--color-bg-tertiary);
    border: var(--border-light);
    padding: 50px 36px;
    transition: var(--transition-luxury);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold-gradient);
    transition: var(--transition-luxury);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212, 175, 55, 0.03);
}

.service-card:hover::after {
    width: 100%;
}

.service-icon {
    width: 58px;
    height: 58px;
    color: var(--color-gold-primary);
    margin-bottom: 36px;
    transition: var(--transition-luxury);
}

.service-card:hover .service-icon {
    transform: scale(1.08);
    color: var(--color-gold-light);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
    line-height: 1.25;
}

.service-card p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-details {
    border-top: var(--border-light);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-details li {
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.service-details li::before {
    content: '';
    width: 5px;
    height: 5px;
    background-color: var(--color-gold-primary);
    border-radius: 50%;
}

/* --- PORTFOLIO GALLERY --- */
.portfolio-filters {
    display: flex;
    gap: 16px;
}

.filter-btn {
    background-color: transparent;
    border: var(--border-light);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 12px 28px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--color-gold-primary);
    color: var(--color-gold-primary);
    box-shadow: 0 0 15px var(--color-gold-glow);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    transition: var(--transition-luxury);
}

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

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(80%) contrast(105%);
}

.portfolio-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px;
    background: linear-gradient(to top, rgba(7, 7, 7, 0.95) 0%, rgba(7, 7, 7, 0.4) 65%, transparent 100%);
    z-index: 2;
    transform: translateY(30px);
    transition: var(--transition-luxury);
    opacity: 0;
}

.project-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--color-gold-primary);
    display: block;
    margin-bottom: 12px;
}

.project-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.project-desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: var(--transition-luxury);
}

.project-meta {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    text-transform: uppercase;
}

/* Portfolio Hover framing and zoom */
.portfolio-item::before,
.portfolio-item::after {
    content: '';
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 24px;
    right: 24px;
    transition: var(--transition-luxury);
    z-index: 3;
    pointer-events: none;
}

.portfolio-item::before {
    border-top: 1px solid rgba(212, 175, 55, 0);
    border-bottom: 1px solid rgba(212, 175, 55, 0);
    transform: scaleX(0);
}

.portfolio-item::after {
    border-left: 1px solid rgba(212, 175, 55, 0);
    border-right: 1px solid rgba(212, 175, 55, 0);
    transform: scaleY(0);
}

.portfolio-item:hover::before {
    border-color: rgba(212, 175, 55, 0.25);
    transform: scaleX(1);
}

.portfolio-item:hover::after {
    border-color: rgba(212, 175, 55, 0.25);
    transform: scaleY(1);
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.06);
    filter: brightness(60%) contrast(100%);
}

.portfolio-item:hover .portfolio-overlay-content {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-item:hover .project-desc {
    max-height: 100px;
    opacity: 1;
    margin-top: 10px;
}

/* Filtering Transitions */
.portfolio-item.hidden {
    display: none;
}

/* --- TESTIMONIALS --- */
.testimonials-section {
    background-color: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

/* Architectural background grids */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 10%;
    right: 10%;
    border: 1px solid rgba(255, 255, 255, 0.02);
    pointer-events: none;
}

.testimonials-slider-container {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    padding: 0 50px;
    overflow-anchor: none; /* Prevent scroll jumps */
}

.testimonials-slider {
    position: relative;
    min-height: 280px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease;
    transform: translateY(20px);
    text-align: center;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 7.5rem;
    color: var(--color-gold-primary);
    line-height: 1;
    margin-bottom: -30px;
    opacity: 0.15;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 36px;
    font-style: italic;
    letter-spacing: -0.01em;
}

.testimonial-author h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.testimonial-author p {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Testimonial Nav dots */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

.nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    border: none;
    cursor: pointer;
    transition: var(--transition-luxury);
}

.nav-dot:hover,
.nav-dot.active {
    background-color: var(--color-gold-primary);
    transform: scale(1.5);
    box-shadow: 0 0 8px var(--color-gold-glow);
}

/* --- CONTACT / INQUIRY SECTION --- */
.inquiry-section {
    background-color: var(--color-bg-primary);
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 120px;
    align-items: center;
}

.contact-details {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-gold-primary);
}

.contact-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 300;
    transition: var(--transition-fast);
}

.contact-value:hover {
    color: var(--color-gold-primary);
}

.contact-value.text-muted {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* Inquiry Form Box with Glassmorphism */
.inquiry-form-wrapper {
    background-color: rgba(14, 14, 14, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--border-glass);
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

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

.input-group {
    position: relative;
    width: 100%;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 14px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 0.88rem;
    transition: var(--transition-luxury);
    border-radius: 0;
}

.input-group textarea {
    resize: none;
}

/* Floating labels style */
.input-group label {
    position: absolute;
    left: 0;
    top: 14px;
    color: var(--color-text-muted);
    font-size: 0.88rem;
    pointer-events: none;
    transition: var(--transition-luxury);
}

/* Focus and active label styling */
.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    outline: none;
    border-bottom-color: var(--color-gold-primary);
}

.input-group input:focus ~ label,
.input-group input:valid ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:valid ~ label,
.input-group select:focus ~ label,
.input-group select:valid ~ label {
    top: -14px;
    font-size: 0.72rem;
    color: var(--color-gold-primary);
    letter-spacing: 0.08em;
}

/* Select specific label tweaks */
.input-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%238E8E93' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0px center;
    background-size: 16px;
    cursor: pointer;
}

.select-label {
    top: 14px;
}

/* Alert Styling */
.form-alert {
    padding: 18px 24px;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    margin-top: 15px;
    border-left: 2px solid;
    background-color: var(--color-bg-tertiary);
}

.form-alert.success {
    border-color: var(--color-gold-primary);
    color: var(--color-text-light);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.05);
}

.form-alert.error {
    border-color: #FF3B30;
    color: var(--color-text-light);
}

.hidden {
    display: none !important;
}

/* Form Submit Loading State */
.loader {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(7, 7, 7, 0.2);
    border-top: 2px solid var(--color-bg-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

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

/* --- FOOTER --- */
.footer {
    background-color: #040404;
    border-top: var(--border-light);
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1fr 0.7fr;
    gap: 80px;
    margin-bottom: 80px;
}

.brand-desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--color-text-muted);
    margin-top: 24px;
    line-height: 1.8;
    max-width: 360px;
}

.footer-links h4,
.footer-socials h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-gold-primary);
    margin-bottom: 28px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a,
.footer-credential {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

.footer-credential {
    display: block;
}

.footer-links a:hover {
    color: var(--color-gold-primary);
    padding-left: 6px;
}

.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--color-bg-secondary);
    border: var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-text-light);
}

.social-icons a:hover {
    border-color: var(--color-gold-primary);
    color: var(--color-bg-primary);
    background: var(--color-gold-gradient);
    box-shadow: 0 0 15px var(--color-gold-glow);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: var(--border-light);
    padding-top: 40px;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 300;
}

/* --- ANIMATIONS & INTERSECTION OBSERVER --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.fade-in-left {
    transform: translateX(-50px);
}

.animate-on-scroll.fade-in-right {
    transform: translateX(50px);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Animation Delays */
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* --- RESPONSIVENESS (MEDIA QUERIES) --- */

@media (max-width: 1200px) {
    .hero-title {
        font-size: 4.6rem;
    }
    .about-grid {
        gap: 60px;
    }
    .inquiry-grid {
        gap: 60px;
    }
    .footer-grid {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .section-padding {
        padding: 100px 0;
    }
    
    /* Header toggle */
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background-color: var(--color-bg-secondary);
        border-left: var(--border-light);
        flex-direction: column;
        justify-content: center;
        gap: 36px;
        z-index: 1000;
        transition: var(--transition-luxury);
        padding: 60px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-btn-mobile {
        display: inline-flex;
        width: 100%;
        margin-top: 24px;
    }
    
    .nav-actions {
        display: none;
    }
    
    /* Mobile nav icon animation */
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero layout */
    .hero-section {
        height: auto;
        min-height: auto;
        padding-top: 160px;
        padding-bottom: 260px;
    }
    
    .hero-title {
        font-size: 3.8rem;
    }
    
    .scroll-indicator-wrapper {
        display: none; /* Hide scroll indicator on mobile/tablet */
    }
    
    .stats-bar-wrapper {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: -140px;
        margin-bottom: 50px;
    }
    
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .stat-divider {
        display: none;
    }
    
    /* Grid collapses */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }
    
    .about-img-container {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-img {
        height: 440px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .portfolio-img-wrapper {
        height: 420px;
    }
    
    .inquiry-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }
    
    .inquiry-form-wrapper {
        padding: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .container,
    .nav-container {
        padding-left: 45px;
        padding-right: 15px;
    }

    .testimonials-slider {
        min-height: 360px; /* Taller on mobile for wrapped absolute text */
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 16px;
    }
    
    .section-header.between {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }
    
    .portfolio-filters {
        flex-wrap: wrap;
        width: 100%;
    }
    
    .filter-btn {
        flex-grow: 1;
        text-align: center;
        padding: 10px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 576px) {
    .stats-bar {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .experience-badge {
        padding: 20px 24px;
        gap: 12px;
    }
    
    .exp-years {
        font-size: 3.2rem;
    }
}

/* --- LUXURY VIDEO INTRO LOADER --- */
#video-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease;
    overflow: hidden;
}

#loader-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100vw;
    max-height: 100vh;
}

#video-loader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.loading {
    overflow: hidden;
}

/* ==========================================================================
   ABOUT PAGE CUSTOM STYLES (Obys, Exo Ape, Steven Inspired)
   ========================================================================== */

.about-hero-section {
    position: relative;
    padding: 180px 0 100px 0;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--color-bg-primary);
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
    max-width: 1000px;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.about-hero-title span {
    font-style: italic;
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-text-muted);
    text-align: center;
    max-width: 600px;
    margin-bottom: 50px;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

.editorial-divider {
    width: 100px;
    height: 1px;
    background: var(--color-gold-gradient);
    margin: 40px auto 0 auto;
    position: relative;
    overflow: hidden;
}

.editorial-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    animation: dividerGlow 3s infinite linear;
}

@keyframes dividerGlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Founder & Vision Section */
.founder-section {
    background-color: var(--color-bg-secondary);
    position: relative;
}

.founder-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.founder-img-wrapper {
    position: relative;
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    background-color: rgba(21, 21, 21, 0.5);
    backdrop-filter: blur(10px);
    transition: var(--transition-luxury);
    border-radius: 4px;
}

.founder-img-wrapper::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    border: 1px solid transparent;
    border-image: var(--color-gold-gradient) 1;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    border-radius: 4px;
}

.founder-img-wrapper:hover {
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.05);
}

.founder-img-wrapper:hover::before {
    opacity: 1;
}

.founder-image {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 2px;
    filter: brightness(95%) contrast(102%);
    transition: filter 0.5s ease;
}

.founder-img-wrapper:hover .founder-image {
    filter: brightness(100%) contrast(105%);
}

.founder-quote {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 300;
    line-height: 1.5;
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.founder-quote span {
    color: var(--color-gold-primary);
}

.founder-signature-block {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.founder-name {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

.founder-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold-primary);
}

/* Timeline of Creations */
.timeline-section {
    background-color: var(--color-bg-primary);
    position: relative;
}

.timeline-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}

.timeline-line-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-vertical-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.3) 20%, rgba(212, 175, 55, 0.3) 80%, rgba(212, 175, 55, 0.05) 100%);
    transform: translateX(-50%);
}

.timeline-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 70px;
    position: relative;
    align-items: center;
}

.timeline-row:last-child {
    margin-bottom: 0;
}

.timeline-content-left {
    text-align: right;
    padding-right: 50px;
}

.timeline-content-right {
    text-align: left;
    padding-left: 50px;
}

.timeline-date {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-gold-primary);
    line-height: 1;
    margin-bottom: 12px;
}

.timeline-project-title {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

.timeline-project-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--color-bg-primary);
    border: 2px solid var(--color-gold-primary);
    transform: translate(-50%, -50%);
    z-index: 5;
    box-shadow: 0 0 10px var(--color-gold-glow);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.timeline-row:hover .timeline-dot {
    background-color: var(--color-gold-primary);
    transform: translate(-50%, -50%) scale(1.3);
}

/* Philosophy Pillars */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.philosophy-card {
    background-color: var(--color-bg-secondary);
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    position: relative;
    transition: var(--transition-luxury);
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--color-gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.philosophy-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.15);
    background-color: rgba(21, 21, 21, 0.6);
}

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

.philosophy-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-gold-primary);
    opacity: 0.6;
    margin-bottom: 24px;
    display: block;
    line-height: 1;
}

.philosophy-card h3 {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    margin-bottom: 18px;
}

.philosophy-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* About Page Media Queries */
@media (max-width: 992px) {
    .about-hero-title {
        font-size: 4.5rem;
    }
    
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .founder-image {
        height: 500px;
    }
    
    .timeline-vertical-line {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .timeline-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
        padding-left: 50px;
    }
    
    .timeline-content-left,
    .timeline-content-right {
        text-align: left;
        padding: 0;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 3.2rem;
    }
    
    .founder-image {
        height: 400px;
    }
    
    .timeline-date {
        font-size: 2.8rem;
    }
}

/* --- TEAM MEMBERS SECTION --- */
.team-section {
    background-color: var(--color-bg-primary);
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    background-color: var(--color-bg-secondary);
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    text-align: center;
    transition: var(--transition-luxury);
    position: relative;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.15);
    background-color: rgba(21, 21, 21, 0.6);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.03);
}

.team-img-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.team-name {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-light);
    margin-bottom: 6px;
}

.team-role {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold-primary);
    margin-bottom: 16px;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .team-img-wrapper {
        height: 340px;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 50px auto 0 auto;
    }
}

/* --- BACK TO TOP BUTTON --- */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background-color: rgba(14, 14, 14, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--color-gold-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-luxury);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}

#back-to-top svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

#back-to-top:hover {
    background-color: var(--color-gold-primary);
    color: var(--color-bg-primary);
    border-color: var(--color-gold-primary);
    box-shadow: 0 0 15px var(--color-gold-glow);
}

#back-to-top:hover svg {
    transform: translateY(-2px);
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Alternating Grid Columns for stacked profiles on Desktop */
@media (min-width: 993px) {
    .founder-section:nth-of-type(even) .founder-grid {
        grid-template-columns: 1.05fr 0.95fr;
    }
    .founder-section:nth-of-type(even) .founder-img-wrapper {
        order: 2;
    }
    .founder-section:nth-of-type(even) .founder-content {
        order: 1;
        padding-right: 50px;
        padding-left: 0;
    }
}

/* Smooth Scrolling Anchor Behavior */
html {
    scroll-behavior: smooth;
}
