/* ============================================

   PARADISE by Next Gen - Design System

   Premium Hospitality & Real Estate Website

   ============================================ */



/* -------------------- Fonts -------------------- */

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



/* -------------------- CSS Variables -------------------- */

:root {

    /* Primary Backgrounds - Warm Beige Palette */

    --bg-sand: #E8E1D8;

    --bg-limestone: #E3DACF;

    --bg-clay: #DED4C7;



    /* Secondary Tones */

    --bg-taupe: #B8AEA2;

    --bg-stone: #C7C1B8;

    --bg-taupe-dark: #9A9189;



    /* Text Colors */

    --text-primary: #5F564C;

    --text-secondary: #6F665C;

    --text-light: #FFFFFF;

    --text-dark: #4A433B;



    /* Accent - Champagne/Bronze (limited use) */

    --accent-champagne: #BFA57A;

    --accent-champagne-hover: #A8905E;



    /* Typography */

    --font-heading: 'Cormorant Garamond', Georgia, serif;

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;



    /* Spacing */

    --space-xs: 0.5rem;

    --space-sm: 1rem;

    --space-md: 1.5rem;

    --space-lg: 2rem;

    --space-xl: 3rem;

    --space-2xl: 4rem;

    --space-3xl: 6rem;

    --space-4xl: 8rem;

    --space-5xl: 10rem;



    /* Container */

    --container-max: 1200px;

    --container-wide: 1400px;

    --container-narrow: 900px;



    /* Border Radius */

    --radius-sm: 4px;

    --radius-md: 8px;

    --radius-lg: 12px;



    /* Transitions - Slow & Calm */

    --transition-slow: 0.6s ease;

    --transition-base: 0.4s ease;

}



/* -------------------- Reset & Base -------------------- */

*,

*::before,

*::after {

    box-sizing: border-box;

    margin: 0;

    padding: 0;

}



html {

    scroll-behavior: smooth;

    font-size: 16px;

}



body {

    font-family: var(--font-body);

    font-size: 1rem;

    line-height: 1.7;

    color: var(--text-primary);

    background-color: var(--bg-sand);

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

}



img {

    max-width: 100%;

    height: auto;

    display: block;

}



a {

    color: inherit;

    text-decoration: none;

    transition: color var(--transition-base);

}



ul,

ol {

    list-style: none;

}



button {

    font-family: inherit;

    cursor: pointer;

    border: none;

    background: none;

}



/* -------------------- Typography -------------------- */

h1,

h2,

h3,

h4,

h5,

h6 {

    font-family: var(--font-heading);

    font-weight: 500;

    color: var(--text-dark);

    line-height: 1.2;

    letter-spacing: 0.02em;

}



h1 {

    font-size: clamp(2.5rem, 5vw, 4.5rem);

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.08em;

}



h2 {

    font-size: clamp(2rem, 4vw, 3.5rem);

    letter-spacing: 0.04em;

}



h3 {

    font-size: clamp(1.5rem, 3vw, 2rem);

}



h4 {

    font-size: 1.25rem;

    font-family: var(--font-body);

    font-weight: 500;

}



p {

    margin-bottom: 1rem;

    color: var(--text-secondary);

}



.text-muted {

    color: var(--text-secondary);

}



/* -------------------- Layout -------------------- */

.container {

    width: 100%;

    max-width: var(--container-max);

    margin: 0 auto;

    padding: 0 var(--space-lg);

}



.container-wide {

    width: 100%;

    max-width: var(--container-wide);

    margin: 0 auto;

    padding: 0 var(--space-lg);

}



.container-narrow {

    max-width: var(--container-narrow);

}



section {

    padding: var(--space-5xl) 0;

}



/* -------------------- Section Backgrounds -------------------- */

.section-sand {

    background: var(--bg-sand);

}



.section-limestone {

    background: var(--bg-limestone);

}



.section-clay {

    background: var(--bg-clay);

}



.section-taupe {

    background: var(--bg-taupe);

    color: var(--text-light);

}



.section-taupe h2,

.section-taupe h3,

.section-taupe h4,

.section-taupe p {

    color: var(--text-light);

}



/* -------------------- Buttons -------------------- */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: var(--space-xs);

    padding: 1rem 2rem;

    font-size: 0.875rem;

    font-weight: 500;

    letter-spacing: 0.05em;

    text-transform: uppercase;

    border-radius: var(--radius-sm);

    transition: all var(--transition-base);

    cursor: pointer;

    border: none;

}



.btn-champagne {

    background-color: var(--accent-champagne);

    color: var(--text-light);

}



.btn-champagne:hover {

    background-color: var(--accent-champagne-hover);

}



.btn-outline {

    background: transparent;

    border: 1px solid var(--text-primary);

    color: var(--text-primary);

}



.btn-outline:hover {

    background-color: var(--text-primary);

    color: var(--text-light);

}



.btn-light {

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.5);

    color: var(--text-light);

}



.btn-light:hover {

    background: rgba(255, 255, 255, 0.1);

    border-color: var(--text-light);

}



.btn-whatsapp {
    background-color: #25D366;
    /* WhatsApp green */
    color: white;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 2rem;
    /* More rounded as per image */
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.btn-whatsapp:hover {
    background-color: #1da851;
    /* Darker green on hover */
    transform: translateY(-2px);
}



/* -------------------- Navigation -------------------- */

.navbar {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    z-index: 1000;

    padding: var(--space-md) 0;

    transition: all var(--transition-base);

}



.navbar.scrolled {

    background: rgba(232, 225, 216, 0.95);

    backdrop-filter: blur(10px);

    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);

}



.navbar-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    max-width: var(--container-wide);

    margin: 0 auto;

    padding: 0 var(--space-lg);

}



.navbar-logo {

    display: flex;

    align-items: center;

    transition: transform var(--transition-base);

}



.navbar-logo:hover {

    transform: scale(1.02);

}



.navbar-logo .logo-img {

    height: 180px;

    width: auto;

    transition: all var(--transition-base);

}



.navbar.scrolled .navbar-logo .logo-img {

    height: 150px;

}



.navbar-menu {

    display: flex;

    align-items: center;

    gap: var(--space-xl);

}



.navbar-links {

    display: flex;

    gap: var(--space-lg);

}



.navbar-links a {

    font-size: 0.875rem;

    font-weight: 400;

    color: var(--text-light);

    letter-spacing: 0.05em;

    text-transform: uppercase;

    opacity: 0.9;

    transition: opacity var(--transition-base);

}



.navbar.scrolled .navbar-links a {

    color: var(--text-primary);

}



.navbar-links a:hover {

    opacity: 1;

}



.navbar-toggle {

    display: none;

    flex-direction: column;

    gap: 5px;

    padding: 5px;

}



.navbar-toggle span {

    width: 24px;

    height: 2px;

    background: var(--text-light);

    transition: all var(--transition-base);

}



.navbar.scrolled .navbar-toggle span {

    background: var(--text-primary);

}



/* -------------------- Hero Video Section -------------------- */

.hero-video {

    position: relative;

    width: 100%;

    /* Modern viewport height - prevents iOS/Android vh jump */
    height: auto;
    min-height: 100svh;
    max-height: 800px;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

}

/* Use dynamic viewport height if supported */
@supports (min-height: 100dvh) {
    .hero-video {
        min-height: 100dvh;
    }
}

/* Mobile landscape: prevent vertical stretch */
@media (orientation: landscape) and (max-width: 932px) {
    .hero-video {
        min-height: 360px;
        max-height: 520px;
    }
}

/* Tablet portrait: prevent vertical stretch */
@media (orientation: portrait) and (min-width: 768px) and (max-width: 1024px) {
    .hero-video {
        min-height: 520px;
        max-height: 700px;
    }
}

/* Desktop: full viewport hero */
@media (min-width: 1025px) {
    .hero-video {
        min-height: 600px;
        max-height: none;
    }
}



.hero-video-bg {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block !important;

    /* NEVER HIDE VIDEO */

    z-index: 1;

}



/* Hide any legacy fallback images - video is primary */

.hero-video .hero-bg-image {

    display: none !important;

}



.hero-video-overlay {

    position: relative;

    z-index: 10;

    text-align: center;

    max-width: 70%;

}



.hero-video-overlay h1 {

    font-family: var(--font-body);

    font-size: clamp(2rem, 5vw, 4rem);

    font-weight: 700;

    color: var(--text-light);

    text-transform: uppercase;

    letter-spacing: 0.15em;

    line-height: 1.3;

    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);

}



/* -------------------- Concepts Grid -------------------- */

/* -------------------- Villa Concepts - Reference Style -------------------- */

.villa-concepts {

    padding: var(--space-4xl) 0;

}



.villa-header {

    text-align: center;

    margin-bottom: var(--space-2xl);

}



.villa-header h2 {

    font-size: clamp(2rem, 4vw, 3rem);

    margin-bottom: var(--space-xs);

}



.villa-header p {

    font-size: 1.1rem;

    opacity: 0.7;

}



/* Villa Title Tabs - Above Cards */

.villa-tabs {

    display: none;

    /* Hidden, use integrated card titles instead */

}



/* Villa Cards Grid */

.villa-cards-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: var(--space-sm);

    max-width: 1300px;

    margin: 0 auto;

    justify-content: center;

}



.villa-card {

    position: relative;

    overflow: hidden;

    cursor: pointer;

    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

}



/* Title Bar Above Image */

.villa-card-title {

    background: linear-gradient(135deg,

            rgba(232, 225, 216, 0.95) 0%,

            rgba(218, 207, 193, 0.95) 100%);

    padding: var(--space-md) var(--space-lg);

    font-family: var(--font-heading);

    font-size: 1.1rem;

    font-weight: 500;

    letter-spacing: 0.15em;

    color: var(--text-dark);

    text-align: center;

    position: relative;

    z-index: 2;

    transition: all 0.4s ease;

    border-bottom: 2px solid transparent;

}



.villa-card:hover .villa-card-title {

    background: linear-gradient(135deg,

            var(--accent-champagne) 0%,

            var(--accent-champagne-hover) 100%);

    color: white;

    letter-spacing: 0.2em;

}



/* Image Container */

.villa-card-image {

    position: relative;

    height: 450px;

    overflow: hidden;

}



.villa-card-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);

}



.villa-card:hover .villa-card-image img {

    transform: scale(1.08);

    filter: brightness(1.05);

}



.villa-card-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(to top,

            rgba(0, 0, 0, 0.3) 0%,

            transparent 50%);

    transition: all 0.4s ease;

}



.villa-card:hover .villa-card-overlay {

    background: linear-gradient(to top,

            rgba(191, 165, 122, 0.25) 0%,

            transparent 60%);

}



/* Hover Lift Effect */

.villa-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);

}



/* Responsive */

@media (max-width: 1024px) {

    .villa-cards-grid {

        gap: var(--space-xs);

    }



    .villa-card-image {

        height: 350px;

    }



    .villa-card-title {

        font-size: 0.95rem;

        padding: var(--space-sm) var(--space-md);

    }

}



@media (max-width: 768px) {

    .villa-cards-grid {

        grid-template-columns: 1fr;

        gap: var(--space-md);

    }



    .villa-card-image {

        height: 300px;

    }

}



/* -------------------- Showcase Section (formerly Masterplan) -------------------- */

.showcase,
.masterplan {

    padding: var(--space-5xl) 0;

}



.masterplan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: stretch;
    /* Changed from center to stretch for equal heights */
}



.masterplan-left {

    position: relative;

}



.masterplan-left .photo-frame {

    position: relative;

    overflow: hidden;

    border-radius: var(--radius-md);

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);

    transition: all var(--transition-slow);

}



.masterplan-left .photo-frame:hover {

    transform: translateY(-10px);

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);

}



.masterplan-left .photo-frame img {

    width: 100%;

    height: auto;

    display: block;

    transition: transform var(--transition-slow);

}



.masterplan-left .photo-frame:hover img {

    transform: scale(1.03);

}



.masterplan-right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}



.masterplan-right h2 {

    font-size: clamp(3rem, 6vw, 5rem);

    letter-spacing: 0.15em;

    margin-bottom: var(--space-xs);

    color: var(--text-dark);

    opacity: 0.25;

    text-transform: uppercase;

}



.masterplan-right .subtitle {

    font-family: var(--font-heading);

    font-size: 1.75rem;

    font-style: italic;

    color: var(--accent-champagne);

    margin-bottom: var(--space-lg);

}



.masterplan-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-slow);
}

.masterplan-image:hover {
    transform: scale(1.02);
}

.masterplan-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* -------------------- PREMIUM Features Section -------------------- */

.features-premium {

    padding: var(--space-5xl) 0;

}



.features-premium .features-header {

    text-align: center;

    margin-bottom: var(--space-3xl);

}



.features-premium .features-header h2 {

    font-size: clamp(2rem, 4vw, 3rem);

    margin-bottom: var(--space-sm);

}



.features-premium .features-header p {

    font-size: 1.125rem;

    opacity: 0.8;

}



.features-cards-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: var(--space-lg);

    max-width: 1300px;

    margin: 0 auto;

    justify-content: center;

}



.feature-card {

    position: relative;

    background: #fff;

    border-radius: var(--radius-lg);

    overflow: hidden;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);

    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

}



.feature-card:hover {

    transform: translateY(-15px);

    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15),

        0 0 40px rgba(191, 165, 122, 0.15);

}



.feature-card-image {

    position: relative;

    height: 200px;

    overflow: hidden;

}



.feature-card-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

}



.feature-card:hover .feature-card-image img {

    transform: scale(1.1);

    filter: brightness(1.1);

}



.feature-card-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(to top,

            rgba(95, 86, 76, 0.4) 0%,

            transparent 60%);

    transition: all 0.4s ease;

}



.feature-card:hover .feature-card-overlay {

    background: linear-gradient(to top,

            rgba(191, 165, 122, 0.3) 0%,

            transparent 70%);

}



.feature-card-content {

    padding: var(--space-lg);

    position: relative;

}



.feature-num {

    font-family: var(--font-heading);

    font-size: 2.5rem;

    color: var(--accent-champagne);

    opacity: 0.4;

    position: absolute;

    top: -1rem;

    right: var(--space-lg);

    transition: all 0.4s ease;

}



.feature-card:hover .feature-num {

    opacity: 0.8;

    transform: scale(1.1);

    color: var(--accent-champagne-hover);

}



.feature-card-content h3 {

    font-family: var(--font-heading);

    font-size: 1.25rem;

    margin-bottom: var(--space-xs);

    color: var(--text-dark);

    transition: color 0.3s ease;

}



.feature-card:hover .feature-card-content h3 {

    color: var(--accent-champagne-hover);

}



.feature-card-content p {

    font-size: 0.9rem;

    line-height: 1.6;

    color: var(--text-secondary);

}



/* Responsive Features Grid */

@media (max-width: 1024px) {

    .features-cards-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}



@media (max-width: 768px) {

    .features-cards-grid {

        grid-template-columns: 1fr;

    }



    .feature-card-image {

        height: 180px;

    }

}



/* -------------------- Architecture Section -------------------- */

.architecture {

    padding: var(--space-5xl) 0;

}



.architecture-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: var(--space-lg);

}



.architecture-image {

    overflow: hidden;

}



.architecture-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform var(--transition-slow);

}



.architecture-image:hover img {

    transform: scale(1.02);

}



.architecture-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: var(--space-2xl);

}



.architecture-content h2 {

    margin-bottom: var(--space-md);

}



.architecture-content p {

    margin-bottom: var(--space-lg);

}



/* -------------------- Gallery Grid -------------------- */

.gallery {

    padding: var(--space-5xl) 0;

}



.gallery-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    grid-template-rows: repeat(2, 300px);

    gap: var(--space-sm);

}



.gallery-item {

    position: relative;

    overflow: hidden;

}



.gallery-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform var(--transition-slow);

}



.gallery-item:hover img {

    transform: scale(1.05);

}



.gallery-item:first-child {

    grid-column: span 2;

    grid-row: span 2;

}



/* -------------------- CTA Section -------------------- */

.cta-section {

    padding: var(--space-4xl) 0;

    text-align: center;

}



.cta-section h2 {

    margin-bottom: var(--space-md);

}



.cta-section p {

    margin-bottom: var(--space-lg);

    max-width: 600px;

    margin-left: auto;

    margin-right: auto;

}



/* -------------------- Footer -------------------- */

.footer {

    background: var(--bg-taupe);

    color: var(--text-light);

    padding: var(--space-3xl) 0 var(--space-lg);

}



.footer-container {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: var(--space-2xl);

    margin-bottom: var(--space-2xl);

}



.footer-brand {

    max-width: 300px;

}



.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}



.footer-description {

    font-size: 0.9375rem;

    line-height: 1.7;

    opacity: 0.8;

    color: var(--text-light);

}



.footer-column h4 {

    font-family: var(--font-body);

    font-size: 0.875rem;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.1em;

    margin-bottom: var(--space-md);

    color: var(--text-light);

}



.footer-links {

    display: flex;

    flex-direction: column;

    gap: var(--space-sm);

}



.footer-links a {

    font-size: 0.9375rem;

    opacity: 0.8;

    transition: opacity var(--transition-base);

}



.footer-links a:hover {

    opacity: 1;

}



/* Social Icons */

.social-icons {

    display: flex;

    gap: 1.25rem;

    align-items: center;

    margin-top: 0.5rem;

}



.social-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 24px;

    height: 24px;

    color: var(--text-light);

    opacity: 0.6;

    /* Subtle default state */

    transition: all 0.3s ease;

}



.social-icon:hover {

    opacity: 1;

    transform: translateY(-3px);

    color: var(--text-light);

    /* Ensure it stays white/light */

}





.footer-links a:hover {

    opacity: 1;

}



.footer-bottom {

    padding-top: var(--space-lg);

    border-top: 1px solid rgba(255, 255, 255, 0.15);

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 0.875rem;

    opacity: 0.7;

}



/* -------------------- ENHANCED SCROLL ANIMATIONS -------------------- */



/* Basic fade in from bottom */

.fade-in {

    opacity: 0;

    transform: translateY(40px);

    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),

        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);

}



.fade-in.visible {

    opacity: 1;

    transform: translateY(0);

}



/* Slide in from left */

.slide-left {

    opacity: 0;

    transform: translateX(-60px);

    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),

        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);

}



.slide-left.visible {

    opacity: 1;

    transform: translateX(0);

}



/* Slide in from right */

.slide-right {

    opacity: 0;

    transform: translateX(60px);

    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),

        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);

}



.slide-right.visible {

    opacity: 1;

    transform: translateX(0);

}



/* Scale up animation */

.scale-up {

    opacity: 0;

    transform: scale(0.9);

    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),

        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);

}



.scale-up.visible {

    opacity: 1;

    transform: scale(1);

}



/* Staggered animations for grid children */

.stagger>* {

    opacity: 0;

    transform: translateY(30px);

}



.stagger.visible>*:nth-child(1) {

    transition-delay: 0.1s;

}



.stagger.visible>*:nth-child(2) {

    transition-delay: 0.2s;

}



.stagger.visible>*:nth-child(3) {

    transition-delay: 0.3s;

}



.stagger.visible>*:nth-child(4) {

    transition-delay: 0.4s;

}



.stagger.visible>*:nth-child(5) {

    transition-delay: 0.5s;

}



.stagger.visible>*:nth-child(6) {

    transition-delay: 0.6s;

}



.stagger.visible>* {

    opacity: 1;

    transform: translateY(0);

    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),

        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);

}



/* -------------------- HOVER GLOW & LIFT EFFECTS -------------------- */



/* Image hover with glow and lift */

.hover-glow {

    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    cursor: pointer;

}



.hover-glow:hover {

    transform: translateY(-8px) scale(1.02);

    box-shadow: 0 20px 50px rgba(191, 165, 122, 0.25),

        0 0 30px rgba(191, 165, 122, 0.1);

}



/* Card hover with lift and shadow */

.hover-lift {

    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    cursor: pointer;

}



.hover-lift:hover {

    transform: translateY(-12px);

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);

}



/* Image brightness on hover */

.hover-bright img {

    transition: all 0.4s ease;

}



.hover-bright:hover img {

    filter: brightness(1.1);

    transform: scale(1.05);

}



/* Concept cards enhanced hover */

.concept-card {

    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

}



.concept-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);

}



.concept-card::after {

    content: '';

    position: absolute;

    inset: 0;

    background: linear-gradient(to top,

            rgba(0, 0, 0, 0.5) 0%,

            rgba(0, 0, 0, 0.2) 30%,

            transparent 60%);

    opacity: 0.8;

    transition: opacity 0.4s ease;

}



.concept-card:hover::after {

    opacity: 1;

}



.concept-card:hover .concept-card-content h3 {

    transform: translateY(-5px);

    transition: transform 0.4s ease;

}



/* Gallery items enhanced */

.gallery-item {

    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    overflow: hidden;

}



.gallery-item:hover {

    z-index: 10;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);

}



.gallery-item::before {

    content: '';

    position: absolute;

    inset: 0;

    background: rgba(191, 165, 122, 0);

    transition: background 0.4s ease;

    z-index: 1;

    pointer-events: none;

}



.gallery-item:hover::before {

    background: rgba(191, 165, 122, 0.1);

}



/* Feature items hover */

.feature-item {

    padding: var(--space-lg);

    border-radius: var(--radius-md);

    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

}



.feature-item:hover {

    background: rgba(255, 255, 255, 0.5);

    transform: translateY(-5px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

}



.feature-item:hover .feature-number {

    opacity: 1;

    transform: scale(1.1);

    transition: all 0.3s ease;

}



/* Architecture image hover */

.architecture-image {

    overflow: hidden;

    border-radius: var(--radius-md);

    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

}



.architecture-image:hover {

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);

}



/* Button hover enhancements */

.btn {

    position: relative;

    overflow: hidden;

}



.btn::before {

    content: '';

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 100%;

    background: linear-gradient(90deg,

            transparent,

            rgba(255, 255, 255, 0.2),

            transparent);

    transition: left 0.5s ease;

}



.btn:hover::before {

    left: 100%;

}



.btn-champagne:hover {

    transform: translateY(-3px);

    box-shadow: 0 10px 30px rgba(191, 165, 122, 0.4);

}



/* -------------------- Responsive -------------------- */

@media (max-width: 1024px) {

    .concepts-grid {

        grid-template-columns: repeat(2, 1fr);

    }



    .features-grid {

        grid-template-columns: repeat(2, 1fr);

    }



    .footer-container {

        grid-template-columns: 1fr 1fr;

    }



    .gallery-grid {

        grid-template-columns: repeat(2, 1fr);

        grid-template-rows: repeat(3, 250px);

    }



    .gallery-item:first-child {

        grid-column: span 2;

        grid-row: span 1;

    }

}



@media (max-width: 768px) {

    section {

        padding: var(--space-3xl) 0;

    }



    .navbar-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(232, 225, 216, 0.98);
        backdrop-filter: blur(10px);
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-lg);
        z-index: 999;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu .navbar-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-lg);
    }

    .navbar-menu .navbar-links a {
        font-size: 1.25rem;
        color: var(--text-primary);
    }

    .navbar-menu .btn-whatsapp {
        margin-top: var(--space-lg);
    }

    .navbar-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .navbar-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }




    .hero-video-overlay {

        max-width: 90%;

    }



    .hero-video-overlay h1 {

        font-size: clamp(1.5rem, 6vw, 2.5rem);

        letter-spacing: 0.1em;

    }



    .concepts-grid,

    .features-grid {

        grid-template-columns: 1fr;

    }



    .architecture-grid {

        grid-template-columns: 1fr;

    }



    .architecture-content {

        padding: var(--space-lg);

    }



    .gallery-grid {

        grid-template-columns: 1fr;

        grid-template-rows: auto;

    }



    .gallery-item:first-child {

        grid-column: span 1;

    }



    .footer-container {

        grid-template-columns: 1fr;

        text-align: center;

    }



    .footer-brand {

        max-width: 100%;

    }



    .footer-bottom {

        flex-direction: column;

        gap: var(--space-sm);

    }

}



@media (max-width: 480px) {

    html {

        font-size: 14px;

    }



    .container {

        padding: 0 var(--space-md);

    }

}

/* -------------------- Blog / Article Layout -------------------- */
.blog-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 240px 20px 80px;
    /* Blog specific padding */
}

/* Specific FAQ Container to allow independent adjustment */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 20px 80px;
    /* Reduced to 180px per user request 'starts too low' */
}


.blog-header {
    margin-bottom: 3rem;
    text-align: center;
    /* Added centering per user request */
}

.blog-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    /* Match bold headline request */
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.blog-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 400;
}

.blog-content section {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-content section:last-child {
    border-bottom: none;
}

.blog-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.blog-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.blog-content ul {
    list-style: none;
    margin-bottom: 2rem;
    padding-left: 0;
}

.blog-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.blog-content li::before {
    content: '•';
    color: var(--accent-champagne);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.blog-footer {
    margin-top: 3rem;
    background: var(--bg-limestone);
    padding: 2rem;
    border-radius: var(--radius-md);
}

/* -------------------- Team Section -------------------- */
.team-section {
    padding: 4rem 0;
    max-width: 1600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    justify-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Make 4th and 5th cards (bottom row) larger */
.team-grid .team-card:nth-child(4),
.team-grid .team-card:nth-child(5) {
    grid-column: span 1;
}

/* Wrap for centering bottom 2 cards - DISABLED for 6-item layout */
/*
@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .team-grid .team-card:nth-child(1),
    .team-grid .team-card:nth-child(2),
    .team-grid .team-card:nth-child(3) {
        grid-column: span 2;
    }

    .team-grid .team-card:nth-child(4) {
        grid-column: 1 / 4;
    }

    .team-grid .team-card:nth-child(5) {
        grid-column: 4 / 7;
    }
}
*/

.team-member {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    max-width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Team Card - for full image cards */
.team-card {
    display: block;
    /* For anchor element support */
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    text-decoration: none;
    cursor: pointer;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.team-card img {
    width: 100%;
    height: auto;
    display: block;
}

.team-photo {
    width: 100px;
    height: 100px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--bg-sand);
}

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

.team-member h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.team-role {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-bio {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.team-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--text-dark);
    transition: color var(--transition-base);
}

.team-social:hover {
    color: #0077b5;
}

/* Responsive: 2 columns on tablet, 1 on mobile */
@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid .team-member:nth-child(4),
    .team-grid .team-member:nth-child(5) {
        grid-column: auto;
        justify-self: center;
        margin: 0;
    }

    .team-grid .team-member:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 320px;
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-grid .team-member:nth-child(5) {
        grid-column: auto;
    }
}

/* ==================== LIVING SAND BACKGROUND EFFECT ==================== */
/* Dynamic Liquid Gradient Background */

.living-sand {
    position: relative;
    overflow: hidden;
    background-color: #E3DACF;
    /* Base sand color */
}

.living-sand-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    /* Composite layer for performance */
    transform: translateZ(0);
}

/* Ensure content stays above animated background */
.living-sand .container-wide {
    position: relative;
    z-index: 1;
}

/* Liquid Blobs - The core of the effect */
.liquid-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    /* Heavy blur to merge shapes */
    opacity: 0.8;
}

/* Blob 1 - Warm Gold (Top Left) */
.blob-1 {
    top: -20%;
    left: -10%;
    width: 70vw;
    height: 70vw;
    background: #E8E0D6;
    animation: moveBlob1 25s infinite alternate ease-in-out;
}

/* Blob 2 - Deep Sand (Bottom Right) */
.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: #D8CDBF;
    animation: moveBlob2 30s infinite alternate ease-in-out;
}

/* Blob 3 - Light Highlight (Floating Center) */
.blob-3 {
    top: 30%;
    left: 40%;
    width: 40vw;
    height: 40vw;
    background: #F7F2ED;
    opacity: 0.6;
    animation: moveBlob3 20s infinite alternate ease-in-out;
}

/* Blob 4 - Accent Shadow (Bottom Left) */
.blob-4 {
    bottom: -10%;
    left: 10%;
    width: 50vw;
    height: 50vw;
    background: #CFC3B3;
    opacity: 0.5;
    animation: moveBlob4 28s infinite alternate ease-in-out;
}

/* Texture Overlay */
.sand-texture {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

/* Liquid Motion Animations */
@keyframes moveBlob1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(10%, 15%) scale(1.1);
    }
}

@keyframes moveBlob2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-15%, -10%) scale(0.9);
    }
}

@keyframes moveBlob3 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-20%, 20%) scale(1.2);
    }
}

@keyframes moveBlob4 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(15%, -15%) scale(1.1);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .liquid-blob {
        animation: none;
        filter: blur(60px);
        /* Slightly less blur for static state */
    }
}

/* ==================== FAQ + CONTACT SECTION ==================== */
.faq-contact-section {
    padding: 6rem 0;
    background-color: #E8E2DA;
}

.faq-contact-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 4rem;
    align-items: start;
}

/* FAQ Column */
.faq-column {
    padding-right: 2rem;
}

.faq-heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 400;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-icon {
    font-size: 1.25rem;
    font-weight: 300;
    color: #8B7355;
    min-width: 20px;
    text-align: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem 3rem;
    margin: 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.faq-item.active {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Column */
.contact-column {
    padding-left: 1rem;
}

.contact-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    margin-bottom: 1.5rem;
}

.contact-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-info-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.contact-arrow {
    color: #8B7355;
    font-size: 1.25rem;
}

.contact-info-row a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-info-row a:hover {
    color: #8B7355;
}

.contact-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.contact-social-icons a {
    color: var(--text-dark);
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-social-icons a:hover {
    color: #8B7355;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 900px) {
    .faq-contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-column {
        padding-right: 0;
    }

    .contact-column {
        padding-left: 0;
    }
}

@media (max-width: 600px) {
    .faq-heading {
        font-size: 2rem;
    }

    .contact-heading {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 0.875rem 1rem;
    }
}

/* ==================== MASTERPLAN SECTION TYPOGRAPHY ==================== */
.masterplan-content {
    text-align: center;
    padding: 2rem;
    background: rgba(248, 245, 240, 0.9);
    border-radius: 12px;
}

.masterplan-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: #8B7355;
    margin: 0 0 0.25rem 0;
    text-transform: uppercase;
}

.masterplan-subtitle {
    font-family: 'Pacifico', 'Brush Script MT', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    color: #4A7C59;
    margin: 0 0 2rem 0;
    font-style: italic;
}

.masterplan-image {
    border-radius: 8px;
    overflow: hidden;
}

.masterplan-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .masterplan-title {
        font-size: 2.5rem;
        letter-spacing: 0.2em;
    }

    .masterplan-subtitle {
        font-size: 1.75rem;
    }
}

/* ==================== FAQ REBUILD STYLES ==================== */

.faq-contact-section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.faq-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

@media (max-width: 900px) {
    .faq-contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* FAQ Column */
.faq-heading {
    margin-bottom: var(--space-md);
    font-size: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-champagne);
}

.faq-question span:first-child {
    padding-right: 1rem;
    flex: 1;
    text-align: center;
    text-wrap: balance;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-secondary);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--accent-champagne);
}

.faq-item.active .faq-icon {
    color: var(--accent-champagne);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
}

/* Contact Column */
.contact-column {
    background: #fff;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.contact-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.contact-image-wrapper:hover img {
    transform: scale(1.05);
}

.contact-heading {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

.contact-info-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--space-sm);
    flex-wrap: wrap;
    font-weight: 500;
}

.contact-arrow {
    color: var(--accent-champagne);
}

.contact-text {
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
}

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

.contact-social-icons a {
    color: var(--text-dark);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.contact-social-icons a:hover {
    opacity: 1;
}

/* ==================== MOBILE HEADER ADJUSTMENTS ==================== */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }

    .navbar-logo .logo-img {
        height: 85px;
    }

    .navbar.scrolled .navbar-logo .logo-img {
        height: 60px;
    }
}


/* ==================== PROJECT MOBILE MENU FIX ==================== */
@media (max-width: 768px) {
    .navbar-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(232, 225, 216, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        /* Changed from center to start */
        padding-top: 140px;
        /* Push content down below logo */
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 999;
    }

    .navbar-menu.active {
        transform: translateX(0);
    }

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

    .navbar-links a {
        font-size: 1.5rem;
        color: var(--text-dark);
    }

    /* Ensure Home is visible if it was hidden */
    .navbar-links li:first-child {
        display: block;
    }
}


/* ==================== TIGHTER HEADER FIX ==================== */
@media (max-width: 768px) {
    .navbar {
        padding: 5px 0 !important;
        /* Force tight padding */
        min-height: auto !important;
    }

    .navbar-logo .logo-img {
        height: 75px !important;
        /* Slightly smaller to fit tight bar */
        margin: 0 !important;
        padding: 0 !important;
    }

    .navbar.scrolled .navbar-logo .logo-img {
        height: 55px !important;
    }
}

/* ==================== LINKAI FOOTER LINK - GOLDEN GLOW ==================== */
.linkai-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.linkai-link .linkai-text {
    transition: all 0.3s ease;
}

.linkai-link:hover .linkai-text {
    color: #D4AF37;
    text-shadow:
        0 0 8px rgba(212, 175, 55, 0.8),
        0 0 20px rgba(212, 175, 55, 0.6),
        0 0 35px rgba(212, 175, 55, 0.4);
}

/* ==================== ABOUT NGH SECTION RESPONSIVE ==================== */
@media (max-width: 900px) {
    .about-ngh {
        padding: 140px 20px 80px !important;
    }

    .about-ngh__content {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }

    .about-ngh__intro h2 {
        font-size: 36px !important;
    }
}

/* ==================== FOOTER LAYOUT FIX ==================== */
.footer-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Always side by side */
    gap: 40px;
    text-align: left;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

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

/* Mobile & Tablet adjustments */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        /* Stack brand above links */
        gap: 40px;
        text-align: left !important;
    }

    .footer-right {
        display: grid !important;
        grid-template-columns: 0.7fr 1.3fr !important;
        /* FORCE side-by-side on mobile, favoring Contact content */
        gap: 15px;
        width: 100%;
        text-align: left !important;
    }

    .footer-brand {
        max-width: 100%;
        text-align: left !important;
    }

    .footer-column {
        text-align: left !important;
    }

    .footer-logo {
        text-align: left !important;
    }

    .footer-description {
        text-align: left !important;
    }
}

@media (max-width: 480px) {

    /* Only on very small screens, maybe reduce gap */
    .footer-right {
        gap: 15px;
    }
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .footer-bottom {
        padding-left: 20px;
        padding-right: 20px;
        flex-direction: column;
        gap: 1rem;
        text-align: right !important;
        align-items: flex-end !important;
    }

    .footer-copyright,
    .footer-bottom p {
        text-align: right !important;
    }
}