/* ==========================================================================
   KANO Luxury Minimalist Landing Page Stylesheet
   ========================================================================== */

/* Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* Design System Tokens */
:root {
    /* Colors */
    --color-bg-primary: #F8FAFC;
    --color-bg-secondary: #FFFFFF;
    --color-bg-dark: #0F172A;
    --color-bg-dark-card: #1E293B;
    
    --color-text-primary: #0F172A;
    --color-text-secondary: #475569;
    --color-text-muted: #64748B;
    
    --color-text-light: #FFFFFF;
    --color-text-light-secondary: #E2E8F0;
    --color-text-light-muted: #94A3B8;
    
    --color-border: #E2E8F0;
    --color-border-light: rgba(255, 255, 255, 0.08);
    --color-border-card: rgba(15, 23, 42, 0.04);
    
    --color-accent: #2391E6;
    --color-accent-hover: #601CA3;
    --color-gradient-primary: linear-gradient(135deg, #2391E6 0%, #601CA3 100%);
    
    /* Typography */
    --font-heading: 'Outfit', 'Montserrat', sans-serif;
    --font-body: 'Inter', Arial, sans-serif;
    
    /* Spacing */
    --section-padding: 8rem 0;
    --container-max-width: 1320px;
    
    /* Layout Constants */
    --radius-lg: 32px;
    --radius-md: 20px;
    --radius-sm: 12px;
    --radius-pill: 100px;
    
    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Shadows */
    --shadow-subtle: 0 4px 30px rgba(0, 0, 0, 0.015);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.02);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

html.lenis, html.lenis body {
    height: auto;
}

.lenis-smooth {
    scroll-behavior: auto !important;
}

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

.site-frame {
    background-color: var(--color-bg-primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600' fill='none' stroke='rgba(35, 145, 230, 0.15)' stroke-width='1.2'%3E%3Cpath d='M50,50 L550,50 L550,550 L50,550 Z'/%3E%3Cpath d='M200,50 L200,300 L550,300'/%3E%3Cpath d='M50,250 L350,250 L350,550'/%3E%3Cpath d='M200,120 A 70 70 0 0 1 270,190' stroke-dasharray='3 3'/%3E%3Cline x1='200' y1='190' x2='270' y2='190'/%3E%3Cpath d='M120,250 A 70 70 0 0 1 190,320' stroke-dasharray='3 3'/%3E%3Cline x1='190' y1='250' x2='190' y2='320'/%3E%3Crect x='80' y='80' width='80' height='50' rx='3'/%3E%3Ccircle cx='120' cy='65' r='10'/%3E%3Cpath d='M400,100 L440,100 A20,20 0 0,1 460,120 L460,160 A20,20 0 0,1 440,180 L400,180 Z'/%3E%3Cline x1='420' y1='100' x2='420' y2='180' stroke-width='0.8'/%3E%3Ccircle cx='430' cy='140' r='15'/%3E%3Cline x1='20' y1='50' x2='20' y2='550' stroke-width='0.5' stroke-dasharray='4 4'/%3E%3Cline x1='50' y1='580' x2='550' y2='580' stroke-width='0.5' stroke-dasharray='4 4'/%3E%3Cpath d='M20,50 L25,60 M20,550 L25,540'/%3E%3Cpath d='M50,580 L60,575 M550,580 L540,585'/%3E%3C/svg%3E");
    background-size: 600px 600px;
    background-repeat: repeat;
    overflow: hidden;
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
}

/* Layout Containers */
.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

/* Typography Rules (Refined and Consistent) */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1, h2 {
    color: #2391E6; /* Fallback color if gradient fails or is not supported */
    position: relative;
    z-index: 1;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    h1, h2 {
        background: linear-gradient(135deg, #2391E6 0%, #601CA3 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 400;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

p {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    font-weight: 300;
}

.text-meta {
    font-size: 0.75rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 1.25rem;
    display: inline-block;
}

/* Button & Call to Action Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-quick);
    gap: 0.75rem;
    border: none;
    position: relative;
    overflow: hidden;
}

/* Primary Button (Gradient Pill with Glow) */
.btn-primary {
    background: var(--color-gradient-primary);
    color: var(--color-text-light);
    box-shadow: 0 4px 15px rgba(35, 145, 230, 0.15);
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #601CA3 0%, #2391E6 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(35, 145, 230, 0.35);
}

.btn-primary:hover::before {
    opacity: 1;
}

/* Arrow inside primary button */
.btn-arrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-secondary);
    color: var(--color-text-primary);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-right: -1rem;
    margin-left: 0.5rem;
    transition: var(--transition-quick);
}

.btn-primary:hover .btn-arrow-icon {
    transform: translateX(3px) rotate(-45deg);
}

/* Secondary Button (Outline Pill) */
.btn-outline {
    background-color: transparent;
    border: 1.5px solid var(--color-border);
    color: var(--color-text-primary);
}

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

.btn-outline .btn-arrow-icon {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    transition: var(--transition-quick);
}

.btn-outline:hover .btn-arrow-icon {
    background-color: var(--color-accent);
    transform: translateX(3px) rotate(-45deg);
}

/* Light button (for Dark CTA Section) */
.btn-light {
    background-color: var(--color-bg-secondary);
    color: var(--color-text-primary);
}

.btn-light:hover {
    background-color: var(--color-bg-primary);
    transform: translateY(-2px);
}

.btn-light .btn-arrow-icon {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.btn-light:hover .btn-arrow-icon {
    transform: translateX(3px) rotate(-45deg);
}

/* Text Link Action */
.action-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: var(--transition-quick);
    margin-top: 1rem;
}

.action-link .arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    transition: var(--transition-quick);
}

.action-link:hover {
    color: var(--color-accent);
}

.action-link:hover .arrow-circle {
    background: var(--color-gradient-primary);
    color: var(--color-text-light);
    border-color: transparent;
    transform: translateX(3px) rotate(-45deg);
    box-shadow: 0 2px 8px rgba(35, 145, 230, 0.3);
}

/* Header & Navigation */
.site-header {
    width: 100%;
    max-width: 100%;
    padding: 1.25rem 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background-color 0.4s ease, padding 0.4s ease, border-bottom 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.scrolled {
    padding: 0.85rem 0;
    background-color: rgba(248, 250, 252, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90% !important;
    max-width: 1320px !important;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 44px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: var(--transition-quick);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--color-text-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Header CTA Button specific */
.header-cta .btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.85rem;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text-primary);
    transition: var(--transition-quick);
}

/* Hero Section */
.hero-section {
    padding-top: 5rem; /* Space below fixed header */
    padding-bottom: 1.5rem;
    position: relative;
}

#hero .container {
    width: 98% !important;
    max-width: 1680px !important;
}

.hero-banner-card {
    width: 100%;
    min-height: 680px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background-color: var(--color-bg-primary);
    display: flex;
    align-items: center;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 115%; /* for GSAP Scroll parallax */
    object-fit: cover;
    object-position: right center;
    z-index: 1;
    will-change: transform;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(248, 250, 252, 0.9) 0%, 
        rgba(248, 250, 252, 0.8) 35%, 
        rgba(248, 250, 252, 0.45) 55%, 
        rgba(248, 250, 252, 0) 80%);
    z-index: 2;
}

.hero-banner-content {
    position: relative;
    z-index: 3;
    max-width: 580px;
    padding: 5rem 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.hero-headline {
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-subtext {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    max-width: 450px;
    font-weight: 300;
    color: var(--color-text-secondary);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Play Video Button style */
.btn-play {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    gap: 0.75rem;
    transition: var(--transition-quick);
}

.play-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-secondary);
    transition: var(--transition-quick);
}

.play-circle svg {
    margin-left: 2px;
    fill: var(--color-text-primary);
    transition: var(--transition-quick);
}

.btn-play:hover {
    color: var(--color-text-primary);
}

.btn-play:hover .play-circle {
    background: var(--color-gradient-primary);
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(35, 145, 230, 0.3);
}

.btn-play:hover .play-circle svg {
    fill: var(--color-text-light);
}

/* Floating overlay card */
.hero-detail-overlay {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    max-width: 380px;
    gap: 1.25rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    margin-top: 1rem;
}

.hero-detail-overlay:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(15, 23, 42, 0.15);
}

.hero-detail-img {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.hero-detail-content p {
    font-size: 0.85rem;
    color: var(--color-text-primary);
    font-weight: 500;
    line-height: 1.4;
}

.hero-detail-link {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    margin-top: 0.25rem;
    display: inline-block;
    transition: var(--transition-quick);
}

.hero-detail-overlay:hover .hero-detail-link {
    color: var(--color-text-primary);
}

/* Hero Media Column */
.hero-media-wrapper {
    position: relative;
    width: 100%;
}

.hero-img-container {
    width: 100%;
    height: 620px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background-color: var(--color-border);
}

/* Parallax Inner Image container */
.parallax-img {
    width: 100%;
    height: 115%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    will-change: transform;
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: var(--section-padding);
    border-top: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.why-header-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.why-header-headline {
    margin-bottom: 0;
}

.why-header-description {
    font-size: 1.15rem;
    font-weight: 300;
    max-width: 460px;
}

/* 4-Column Card Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.benefit-card {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 240px;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    position: relative;
    justify-content: space-between;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(35, 145, 230, 0.08), 0 1px 3px rgba(15, 23, 42, 0.02);
    border-color: rgba(35, 145, 230, 0.3);
}

.benefit-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background-color: var(--color-bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    transition: var(--transition-quick);
}

.benefit-card:hover .benefit-icon-wrapper {
    background: var(--color-gradient-primary);
    color: var(--color-text-light);
    box-shadow: 0 4px 10px rgba(35, 145, 230, 0.25);
}

.benefit-card-content {
    margin-top: 2rem;
    flex-grow: 1;
}

.benefit-card-content p {
    font-size: 0.95rem;
    margin-top: 0.75rem;
    line-height: 1.5;
}

.benefit-metric-wrapper {
    margin-top: auto;
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
}

.benefit-metric {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 1;
    color: var(--color-text-primary);
}

.benefit-metric-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

/* Portfolio Section */
.portfolio-section {
    padding: var(--section-padding);
    border-top: 1px solid var(--color-border);
}

.portfolio-header {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.portfolio-headline {
    margin-bottom: 0;
    max-width: 600px;
}

/* 3-Column Project Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.project-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.project-card:hover {
    transform: translateY(-8px);
}

.project-img-wrapper {
    width: 100%;
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background-color: var(--color-border);
    margin-bottom: 1.75rem;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

.project-card:hover .project-img-wrapper {
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
}

.project-img {
    width: 100%;
    height: 110%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: absolute;
    top: 0;
    left: 0;
}

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

.project-title {
    font-size: 1.45rem;
    margin-bottom: 0.5rem;
    transition: var(--transition-quick);
}

.project-card:hover .project-title {
    color: var(--color-accent);
}

.project-specs {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.project-specs span:not(:last-child)::after {
    content: '·';
    margin-left: 0.5rem;
    color: var(--color-text-muted);
}

.project-card .action-link {
    margin-top: 1.25rem;
}

/* Footer & Call To Action Banner (High-Contrast Dark Section) */
.footer-cta-section {
    padding: 4rem 0 0 0;
    background-color: var(--color-bg-primary);
}

.cta-banner-container {
    background-color: var(--color-bg-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    padding: 5.5rem 5.5rem 0 5.5rem;
    min-height: 520px;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    height: 100%;
    align-items: flex-start;
}

.cta-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 5.5rem;
}

.cta-headline {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.cta-description {
    color: var(--color-text-light-secondary);
    font-size: 1.15rem;
    margin-bottom: 3rem;
    max-width: 480px;
}

/* CTA Image Container (overlaps and sits beautifully inside the block) */
.cta-media-wrapper {
    position: relative;
    height: 480px;
    width: 100%;
    margin-top: -2.5rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    align-self: end;
}

.cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bottom Footer Credentials */
.bottom-footer {
    background-color: var(--color-bg-primary);
    padding: 3rem 0;
    border-top: 1px solid var(--color-border);
    margin-top: 0;
}

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

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

.footer-brand-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--color-text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 38px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
}

.footer-brand-tagline {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

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

/* Scroll To Top Button */
.btn-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-secondary);
    color: var(--color-text-primary);
    cursor: pointer;
    transition: var(--transition-quick);
}

.btn-top:hover {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    border-color: var(--color-bg-dark);
    transform: translateY(-3px);
}

/* GSAP Scroll reveal classes (pre-reveal states) */
.gsap-reveal {
    opacity: 0;
    transform: translateY(35px);
    will-change: transform, opacity;
    transition: none !important;
}

/* Parallax zoom visual containers */
.parallax-container {
    overflow: hidden;
    position: relative;
}

/* Responsive CSS Media Queries */
@media (max-width: 1200px) {
    :root {
        --section-padding: 6rem 0;
    }
    
    .benefits-grid,
    .benefits-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefit-card {
        height: auto;
        min-height: 240px;
        padding: 2rem;
    }
    
    .portfolio-grid {
        gap: 1.5rem;
    }
    
    .project-img-wrapper {
        height: 340px;
    }
    
    .cta-banner-container {
        padding: 4rem 4rem 0 4rem;
    }
    
    .cta-content-wrapper {
        padding-bottom: 4rem;
    }
}

@media (max-width: 991px) {
    .hero-banner-card {
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
    }
    
    .hero-bg-img {
        position: relative;
        height: 380px;
        width: 100%;
        top: 0;
        right: 0;
    }
    
    .hero-gradient-overlay {
        background: linear-gradient(180deg, rgba(248, 250, 252, 0) 0%, rgba(248, 250, 252, 1) 100%);
        height: 150px;
        top: 230px;
        left: 0;
        width: 100%;
    }
    
    .hero-banner-content {
        padding: 2rem 1rem;
        max-width: 100%;
        margin-top: -80px; /* Pull content up slightly to overlay on the image gradient */
    }
    
    .hero-detail-overlay {
        max-width: 100%;
        width: 100%;
    }
    
    .why-header-grid,
    .portfolio-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cta-content-wrapper {
        padding-bottom: 0;
    }
    
    .cta-media-wrapper {
        margin-top: 0;
        height: 380px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 0;
    }
    
    .site-frame {
        border-radius: 0;
    }
    
    .site-header {
        width: 100%;
        max-width: 100%;
        top: 0;
        padding: 1rem 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 380px;
        height: 100vh;
        background-color: var(--color-bg-secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        padding: 2rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-section {
        padding-top: 8rem;
    }
    

    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .project-img-wrapper {
        height: 420px;
    }
    
    .cta-banner-container {
        padding: 3rem 2rem 0 2rem;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .btn-top {
        align-self: flex-start;
    }
}

@media (max-width: 576px) {
    body {
        padding: 0;
    }
    
    .site-frame {
        border-radius: 0;
    }
    
    .site-header {
        width: 100%;
        max-width: 100%;
        top: 0;
        border-radius: 0;
    }
    
    .benefits-grid,
    .benefits-grid-3 {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .benefit-card {
        height: auto;
        min-height: 200px;
        padding: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-detail-overlay {
        max-width: 100%;
    }
    
    .project-img-wrapper {
        height: 300px;
    }
    
    .cta-media-wrapper {
        height: 280px;
    }
}

/* Video Modal Popup Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #000000;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 2001;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 2002;
    transition: var(--transition-quick);
    line-height: 1;
}

.modal-close:hover {
    color: var(--color-accent);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Projects Horizontal Carousel Slider Styles */
.projects-carousel-container {
    width: 100%;
    overflow: hidden;
    padding-bottom: 2rem;
    margin-top: 2rem;
}

.projects-carousel-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 3rem 0 4.5rem 17.5vw;
    scroll-padding-left: 17.5vw;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.projects-carousel-wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

.carousel-card {
    flex: 0 0 20vw;
    margin-right: 2.5vw;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.carousel-img-wrapper {
    position: relative;
    width: 100%;
    height: 360px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--color-border);
}

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

.card-badges {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.card-badge {
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.view-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 5;
}

.view-circle {
    width: 72px;
    height: 72px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 500;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-card:hover .view-overlay {
    opacity: 1;
}

.carousel-card:hover .view-circle {
    transform: scale(1);
    background: var(--color-gradient-primary);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(35, 145, 230, 0.4);
}

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

.carousel-card-info {
    margin-top: 1.25rem;
    padding: 0 0.5rem;
}

.carousel-card-info h3 {
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
    transition: var(--transition-quick);
}

.carousel-card:hover .carousel-card-info h3 {
    color: var(--color-accent);
}

.card-location {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.15rem;
}

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

/* Alternating Up/Down Carousel Cards layout */
.carousel-card:nth-child(odd) {
    transform: translateY(-30px);
}

.carousel-card:nth-child(even) {
    transform: translateY(30px);
}

.carousel-card:nth-child(odd):hover {
    transform: translateY(-35px) scale(1.01);
}

.carousel-card:nth-child(even):hover {
    transform: translateY(25px) scale(1.01);
}

/* Responsive Overrides for Alternating Carousel Cards */
@media (max-width: 991px) {
    .projects-carousel-wrapper {
        padding: 3rem 0 4rem 5%;
        scroll-padding-left: 5%;
    }
    .carousel-card {
        flex: 0 0 320px;
        margin-right: 1.5rem;
    }
    .carousel-card:nth-child(odd) {
        transform: translateY(-20px);
    }
    .carousel-card:nth-child(even) {
        transform: translateY(20px);
    }
    .carousel-card:nth-child(odd):hover {
        transform: translateY(-24px) scale(1.01);
    }
    .carousel-card:nth-child(even):hover {
        transform: translateY(16px) scale(1.01);
    }
}

@media (max-width: 576px) {
    .projects-carousel-wrapper {
        padding: 3rem 0 4rem 5%;
        scroll-padding-left: 5%;
    }
    .carousel-card {
        flex: 0 0 270px;
        margin-right: 1rem;
    }
    .carousel-img-wrapper {
        height: 280px;
    }
    .carousel-card:nth-child(odd) {
        transform: translateY(-20px);
    }
    .carousel-card:nth-child(even) {
        transform: translateY(20px);
    }
    .carousel-card:nth-child(odd):hover {
        transform: translateY(-24px) scale(1.01);
    }
    .carousel-card:nth-child(even):hover {
        transform: translateY(16px) scale(1.01);
    }
}

/* Stats & Gallery Section */
.stats-gallery-section {
    padding: 2rem 0 6rem 0;
    background-color: var(--color-bg-primary);
}

.stats-gallery-grid {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 5rem;
    width: 100%;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 420px;
    background-color: var(--color-border);
    flex: 0.9;
    transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.gallery-card.large-card {
    flex: 2.2;
}

/* Hover Accordion Interaction */
.stats-gallery-grid:hover .gallery-card {
    flex: 0.8;
}

.stats-gallery-grid:hover .gallery-card:hover {
    flex: 2.2;
}

.gallery-card img.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-card:hover img.gallery-img {
    transform: scale(1.03);
}

.gallery-detail-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
    cursor: pointer;
    outline: none;
    transition: background 0.3s ease, transform 0.3s ease, opacity 0.4s ease;
}

.gallery-detail-circle:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translate(-50%, -50%) scale(1.08);
}

.gallery-badges {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    gap: 0.75rem;
    z-index: 10;
    transition: opacity 0.4s ease;
}

.badge-capsule {
    background-color: #FFFFFF;
    color: var(--color-text-primary);
    padding: 0.65rem 1.30rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

/* Visibility Control for Card Overlays */
.gallery-card .gallery-detail-circle,
.gallery-card .gallery-badges {
    opacity: 0;
    pointer-events: none;
}

/* Default state: large card shows overlay by default when grid not hovered */
.stats-gallery-grid:not(:hover) .large-card .gallery-detail-circle,
.stats-gallery-grid:not(:hover) .large-card .gallery-badges {
    opacity: 1;
    pointer-events: auto;
}

/* Hover state: active hovered card shows overlay */
.gallery-card:hover .gallery-detail-circle,
.gallery-card:hover .gallery-badges {
    opacity: 1;
    pointer-events: auto;
}

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

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

/* Project Detail Modal Styles */
.project-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-detail-modal.active {
    display: flex;
    opacity: 1;
}

#project-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.project-detail-modal .modal-content {
    position: relative;
    width: 92%;
    max-width: 1000px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    z-index: 2001;
    transform: translateY(30px) scale(0.98);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    border: 1px solid var(--color-border);
}

.project-detail-modal.active .modal-content {
    transform: translateY(0) scale(1);
}

#project-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-quick);
}

#project-modal-close:hover {
    background-color: var(--color-text-primary);
    color: var(--color-bg-secondary);
    transform: rotate(90deg);
}

.project-modal-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 520px;
}

.project-modal-gallery {
    background-color: var(--color-bg-dark);
    display: flex;
    flex-direction: column;
    position: relative;
}

.modal-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-grow: 1;
}

.modal-thumb-grid {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    background-color: rgba(15, 23, 42, 0.8);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 5;
}

.modal-thumb {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: var(--transition-quick);
}

.modal-thumb.active,
.modal-thumb:hover {
    border-color: var(--color-accent);
    opacity: 1;
}

.project-modal-info {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-bg-secondary);
}

.project-modal-info .text-meta {
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-modal-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.project-specs-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1.5rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.spec-label {
    font-weight: 500;
    color: var(--color-text-muted);
}

.spec-val {
    font-weight: 600;
    color: var(--color-text-primary);
    text-align: right;
}

.project-modal-description {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Responsive stats & gallery */
@media (max-width: 991px) {
    .stats-gallery-grid {
        gap: 1rem;
    }
    
    .gallery-card {
        height: 360px;
    }
    
    .stats-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .metric-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .project-detail-modal .modal-content {
        max-height: 85vh;
        display: flex;
        flex-direction: column;
    }
    
    .project-modal-grid {
        display: flex;
        flex-direction: column;
        height: 100%;
        max-height: 85vh;
        overflow: hidden;
    }
    
    .project-modal-gallery {
        height: 200px;
        flex-shrink: 0;
    }
    
    .modal-thumb-grid {
        padding: 0.5rem;
    }
    
    .modal-thumb {
        width: 48px;
        height: 36px;
    }
    
    .project-modal-info {
        flex: 1 1 auto;
        overflow-y: auto;
        padding: 2rem 1.5rem;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    
    .project-modal-title {
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
    }
    
    #project-modal-close {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
        z-index: 100;
    }
}

@media (max-width: 576px) {
    .stats-gallery-grid {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .stats-gallery-grid .gallery-card {
        flex: none !important;
        width: 100%;
        height: 280px;
    }
    
    .stats-gallery-grid:hover .gallery-card {
        flex: none !important;
    }
    
    .stats-gallery-grid:hover .gallery-card:hover {
        flex: none !important;
    }
    
    .gallery-card .gallery-detail-circle,
    .gallery-card .gallery-badges {
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .gallery-detail-circle {
        width: 90px;
        height: 90px;
        font-size: 0.85rem;
    }
    
    .gallery-badges {
        bottom: 1.25rem;
        left: 1.25rem;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .badge-capsule {
        padding: 0.45rem 0.95rem;
        font-size: 0.75rem;
    }
    
    .stats-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .metric-number {
        font-size: 2.5rem;
    }
}

/* About Us Fullscreen Pinned Section Styles */
.about-fullscreen-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    background-color: transparent;
    border-top: 1px solid var(--color-border);
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

.about-fullscreen-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5rem;
    width: 100%;
    align-items: stretch;
}

.about-left-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3rem;
}

.about-right-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3rem;
}

.about-badge {
    align-self: flex-start;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-reveal-paragraph {
    font-size: clamp(1.85rem, 2.75vw, 2.35rem);
    line-height: 1.35;
    font-weight: 400;
}

.about-reveal-paragraph {
    color: var(--color-text-primary);
}

.gsap-text-reveal {
    color: inherit;
}

.js-enabled .gsap-text-reveal {
    background: none !important;
    -webkit-text-fill-color: initial !important;
    color: var(--color-text-primary);
}

/* Word/Line reveal style */
.about-reveal-paragraph span.reveal-word,
.gsap-text-reveal span.reveal-word {
    display: inline-block;
    color: inherit;
}

.about-reveal-paragraph span.reveal-char,
.gsap-text-reveal span.reveal-char {
    display: inline-block;
    will-change: opacity;
}

.js-enabled .about-reveal-paragraph span.reveal-char {
    opacity: 0.2;
}

.js-enabled .gsap-text-reveal span.reveal-word {
    display: inline !important;
}

.js-enabled .gsap-text-reveal span.reveal-char {
    display: inline !important;
    opacity: 1 !important;
    will-change: auto !important;
    background: none !important;
    -webkit-text-fill-color: inherit !important;
    color: inherit !important;
    background-clip: initial !important;
}

.js-enabled .gsap-text-reveal .line-inner {
    display: block;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #2391E6 0%, #601CA3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #2391E6;
}

/* Reset for dark background CTA heading */
.property-cta-title .line-inner {
    background: none !important;
    -webkit-text-fill-color: var(--color-text-light) !important;
    color: var(--color-text-light) !important;
}

.property-cta-title span.reveal-char {
    background: none !important;
    -webkit-text-fill-color: var(--color-text-light) !important;
    color: var(--color-text-light) !important;
}

.line-mask {
    display: block;
    overflow: hidden;
}

.line-inner {
    display: block;
    will-change: transform;
}

.about-metrics-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-metrics-title {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-metrics-row {
    display: flex;
    gap: 4rem;
}

.about-metric-item {
    display: flex;
    flex-direction: column;
}

.about-metric-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 500;
    color: var(--color-text-primary);
    line-height: 1;
}

.about-metric-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

.about-image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 420px;
    width: 100%;
    position: relative;
    background-color: var(--color-border);
}

.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

@media (max-width: 991px) {
    .about-fullscreen-section {
        min-height: auto;
        height: auto;
        padding: 5rem 0;
    }
    
    .about-fullscreen-grid {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
    
    .about-left-col,
    .about-right-col {
        display: contents;
    }
    
    .about-badge {
        order: 1;
    }
    
    .about-reveal-paragraph {
        order: 2;
        font-size: clamp(1.25rem, 3.5vw, 1.65rem);
        line-height: 1.45;
    }
    
    .about-image-card {
        order: 3;
        height: 320px;
    }
    
    .about-metrics-block {
        order: 4;
    }
    
    .about-metrics-row {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-metrics-row {
        gap: 1.5rem;
    }
    
    .about-metric-number {
        font-size: 2.25rem;
    }
    
    .about-metric-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .about-metrics-row {
        gap: 0.75rem;
    }
    
    .about-metric-number {
        font-size: 1.85rem;
    }
    
    .about-metric-label {
        font-size: 0.7rem;
    }
}


/* ==========================================================================
   Resources Grid & Property CTA Styles
   ========================================================================== */

.resources-section {
    padding: var(--section-padding);
    background-color: rgba(255, 255, 255, 0.75);
    border-top: 1px solid var(--color-border);
}

.resources-header {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: flex-end;
}

.resources-headline {
    margin-bottom: 0;
}

.resources-intro {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    font-weight: 300;
}

.resources-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.resources-row {
    display: grid;
    gap: 3rem;
}

.row-staggered-1 {
    grid-template-columns: 44fr 56fr;
}

.row-staggered-2 {
    grid-template-columns: 56fr 44fr;
}

.resource-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.resource-card:hover {
    transform: translateY(-8px);
}

.resource-img-wrapper {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
    background-color: var(--color-border);
    position: relative;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

.resource-card:hover .resource-img-wrapper {
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
}

.resource-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.resource-card:hover .resource-img {
    transform: scale(1.04);
}

.resource-title {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
    transition: var(--transition-quick);
}

.resource-card:hover .resource-title {
    color: var(--color-accent);
}

.resource-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.resource-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.btn-read-more {
    font-size: 0.8rem;
    padding: 0.65rem 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    background: var(--color-bg-secondary);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-quick);
}

.btn-read-more:hover {
    background: var(--color-gradient-primary);
    color: var(--color-text-light);
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(35, 145, 230, 0.25);
}

/* Property CTA Section styling */
.property-cta-section {
    padding: 2rem 0 6rem 0;
    background-color: transparent;
}

.property-cta-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 3rem;
}

.property-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.property-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.45);
    z-index: 2;
}

.property-cta-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.property-cta-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: var(--color-text-light);
    -webkit-text-fill-color: var(--color-text-light);
    background: none;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.property-cta-description {
    font-size: 1.15rem;
    color: var(--color-text-light-secondary);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 620px;
}

.property-cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}


/* Responsive Overrides */
@media (max-width: 991px) {
    .resources-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .resources-row {
        grid-template-columns: 1fr !important;
        gap: 3rem;
    }
    
    .resources-container {
        gap: 3rem;
    }
    
    .resource-img-wrapper {
        height: 320px;
    }
    
    .property-cta-container {
        min-height: 500px;
        padding: 4rem 2rem;
    }
}

@media (max-width: 576px) {
    .resource-img-wrapper {
        height: 240px;
    }
    
    .property-cta-container {
        min-height: 400px;
        padding: 3rem 1.5rem;
    }
    
    .property-cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .property-cta-actions .btn {
        width: 100%;
        margin-left: 0 !important;
    }
}

/* Ambient Spotlight Glow Effects */
.ambient-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(35, 145, 230, 0.16) 0%, rgba(96, 28, 163, 0.07) 50%, transparent 100%);
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.9;
}

.glow-top-right {
    top: 5%;
    right: -10%;
}

.glow-mid-left {
    top: 35%;
    left: -15%;
}

.glow-bottom-right {
    bottom: 10%;
    right: -10%;
}


