/* ============================================================
   AVASA INTERIORS — GLOBAL DESIGN SYSTEM v4.0
   Premium luxury interior design brand stylesheet
   Fonts: Playfair Display (luxury serif) + Inter (modern sans)
   ============================================================ */

/* --- RESET & ROOT --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #A31F34;
    --primary-dark: #7d1728;
    --primary-light: rgba(163, 31, 52, 0.08);
    --primary-glow: rgba(163, 31, 52, 0.15);
    --gold: #FFFFFF;
    --gold-light: rgba(255, 255, 255, 0.12);
    --beige: #F5F0E8;
    --beige-dark: #EDE5D8;
    --charcoal: #1C1C1E;
    --charcoal-mid: #2D2D2D;
    --charcoal-light: #3A3A3C;
    --off-white: #FAFAF8;
    --cream: #FDF9F3;
    --text-muted: #8A8A8A;
    --text-light: #B0B0B0;
    --border: rgba(0, 0, 0, 0.07);
    --border-light: rgba(0, 0, 0, 0.04);

    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-sans: 'Inter', 'DM Sans', sans-serif;

    --nav-height: 80px;
    --transition-smooth: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-snappy: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.07);
    --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.13);
    --shadow-glow: 0 0 40px rgba(163, 31, 52, 0.12);
    --radius-card: 1.75rem;
    --radius-xl: 2.5rem;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: #FFFFFF;
    color: #000000;
    line-height: 1.7;
    font-weight: 400;
}

main {
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================================
   TYPOGRAPHY SYSTEM
   ============================================================ */

.font-serif {
    font-family: var(--font-serif) !important;
}

.font-sans {
    font-family: var(--font-sans) !important;
}

.text-display {
    font-family: var(--font-serif);
    font-weight: 700;
    font-style: italic;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.text-heading {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.05;
}

.label-tag {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary);
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background: #1C1C1E;
    border-radius: 99px;
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #FFFFFF, var(--primary));
    background-size: 200% 100%;
    animation: gradientShift 4s linear infinite;
    transform-origin: left;
    transform: scaleX(0);
    z-index: 10001;
    box-shadow: 0 0 15px var(--primary-glow);
}

/* ============================================================
   PRELOADER
   ============================================================ */

/* Premium Preloader Background */
#preloader {
    position: fixed;
    inset: 0;
    background: #FFFFFF;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Animated Background Pattern */
.preloader-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    animation: bgFloat 8s ease-in-out infinite;
}

@keyframes bgFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}


/* Premium Content Container */
.pre-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

/* Logo Container with Premium Effects */
.pre-logo-container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
}

.pre-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(163, 31, 52, 0.2));
    animation: logoFloat 4s ease-in-out infinite;
    position: relative;
    z-index: 10;
}

.logo-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid transparent;
}

.ring-1 {
    width: 130px;
    height: 130px;
    border-top-color: var(--primary);
    border-bottom-color: var(--gold);
    animation: spin1 2s linear infinite;
}

.ring-2 {
    width: 160px;
    height: 160px;
    border-left-color: var(--gold);
    border-right-color: var(--primary);
    animation: spin2 3.5s linear infinite;
    opacity: 0.6;
}

.ring-3 {
    width: 190px;
    height: 190px;
    border-top-color: rgba(163, 31, 52, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.3);
    animation: spin1 5s linear infinite reverse;
}

@keyframes spin1 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spin2 {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 10px 30px rgba(163, 31, 52, 0.2));
    }

    50% {
        transform: translateY(-15px) scale(1.05);
        filter: drop-shadow(0 15px 40px rgba(255, 255, 255, 0.25));
    }
}

.logo-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    filter: blur(15px);
    animation: logoGlowPulse 2.5s ease-in-out infinite;
}

@keyframes logoGlowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

/* Premium Progress Bar */
.pre-progress-container {
    width: 100%;
    max-width: 280px;
    position: relative;
    padding: 0 2rem;
}

.pre-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(163, 31, 52, 0.05);
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(163, 31, 52, 0.05);
}

.pre-progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg,
            transparent,
            #A31F34,
            #FFFFFF,
            #A31F34,
            transparent);
    animation: progressFlow 2s ease-in-out infinite;
    transform-origin: left;
}

@keyframes progressFlow {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

.progress-glow {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 300%;
    background: radial-gradient(ellipse at center, rgba(163, 31, 52, 0.3) 0%, transparent 70%);
    transform: translateY(-50%);
    filter: blur(8px);
    animation: progressGlowFlow 2s ease-in-out infinite;
}

@keyframes progressGlowFlow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Status Text */
.pre-status-text {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary);
    opacity: 0.8;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Particle Effects */
.preloader-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.preloader-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: particleFlow linear forwards;
}

@keyframes particleFlow {
    0% {
        opacity: 0.6;
        transform: translate(0, 0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(0);
    }
}

/* Hide scrollbar during preload */
#preloader~* {
    animation: hideScrollbar 0.3s ease forwards;
}

@keyframes hideScrollbar {
    to {
        overflow: hidden;
    }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    padding: 1.25rem 1.5rem;
    transition: padding 0.4s ease;
}

#main-header.scrolled {
    padding: 0.75rem 1.5rem;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal-mid);
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--primary);
    transition: width 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 1.1rem 2.5rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(163, 31, 52, 0.22);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 10px 35px rgba(163, 31, 52, 0.38);
    transform: translateY(-2px);
}

/* Enhanced Premium Button with Gradient Shimmer */
.btn-premium {
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 1.2rem 2.8rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 8px 20px rgba(163, 31, 52, 0.25);
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.8s ease;
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    box-shadow: 0 15px 40px rgba(163, 31, 52, 0.4),
        0 0 30px rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.btn-premium:active {
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 1.1rem 2.5rem;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    white-space: nowrap;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(163, 31, 52, 0.05);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--charcoal);
    border-bottom: 1.5px solid var(--primary);
    padding-bottom: 2px;
    transition: var(--transition-snappy);
    text-decoration: none;
}

.btn-text:hover {
    color: var(--primary);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 2rem;
    right: 2rem;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 8000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
}

.whatsapp-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    z-index: 0;
    animation: waPulse 2s infinite;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    background: #20BA56;
}

@media (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.reveal-up {
    opacity: 0;
    transform: translateY(28px);
}

.reveal-fade {
    opacity: 0;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
}

.reveal-right {
    opacity: 0;
    transform: translateX(28px);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
}

.anim-line {
    transform-origin: left;
}

.hero-title .char {
    display: inline-block;
    transform-origin: 50% 100%;
}

/* Horizontal scroll section */
.horizontal-scroll-section {
    overflow: hidden;
    position: relative;
}

.horizontal-scroll-track {
    display: flex;
    gap: 2rem;
    will-change: transform;
}

/* Counter animation */
.counter-number {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
}

/* Line grow animation */
.line-grow {
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.line-grow.active {
    width: 100%;
}

/* Text gradient animation */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
   SECTION LAYOUT
   ============================================================ */
.section-pad {
    padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
    .section-pad {
        padding: 7rem 2rem;
    }
}

@media (min-width: 1024px) {
    .section-pad {
        padding: 9rem 2.5rem;
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-header.centered {
    text-align: center;
}

.section-eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.section-title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-style: italic;
    font-size: clamp(2.2rem, 6vw, 5.5rem);
    line-height: 0.95;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}

.section-title .bold {
    font-weight: 700;
    font-style: normal;
}

.section-title .accent {
    color: var(--primary);
    font-style: normal;
    font-weight: 700;
}

/* ============================================================
   DECORATIVE ELEMENTS
   ============================================================ */
.decorative-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
}

.decorative-line {
    height: 1px;
    background: linear-gradient(90deg, var(--primary), var(--gold), transparent);
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 0 auto;
    max-width: 600px;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
    background: #fff;
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease, border-color 0.35s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.card-img-wrap {
    overflow: hidden;
    position: relative;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.card:hover .card-img-wrap img {
    transform: scale(1.06);
}

.card-body {
    padding: 1.75rem;
}

/* Service mini cards */
.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 2rem;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

/* Service main cards (services page) */
.service-main-card {
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
    text-decoration: none;
}

.service-main-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-main-card .card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-main-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.service-main-card:hover .card-img img {
    transform: scale(1.06);
}

/* Service mini cards (services page specialised) */
.service-mini-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.service-mini-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

/* Feature cards (why us) */
.feature-card {
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    background: #FFFFFF;
    border: 1px solid #EFEFEF;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 0;
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-card>* {
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.feature-card:hover h3 {
    color: #fff;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    transition: color 0.3s;
}

.feature-card:hover p {
    color: rgba(255, 255, 255, 0.65);
}

/* Value cards */
.value-card {
    padding: 2rem;
    border-radius: var(--radius-card);
    background: #FFFFFF;
    border: 1px solid #EFEFEF;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
    background: #fff;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), #FFFFFF, transparent);
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
    padding-left: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.35rem;
    top: 0.4rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--off-white);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.timeline-year {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--charcoal);
    transition: color 0.3s ease;
    gap: 1rem;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question .faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-snappy);
    color: var(--primary);
}

.faq-item.active .faq-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.19, 1, 0.22, 1), padding 0.5s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   TESTIMONIAL CARDS
   ============================================================ */
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-serif);
    font-size: 6rem;
    color: rgba(163, 31, 52, 0.07);
    line-height: 1;
    font-weight: 700;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
}

.testimonial-role {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin-top: 0.15rem;
}

/* star rating */
.star-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.star-rating .star {
    color: #f59e0b;
    font-size: 1rem;
}

/* ============================================================
   MATERIAL SHOWCASE
   ============================================================ */
.material-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
}

.material-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary);
}

.material-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary);
}

/* ============================================================
   PARALLAX ELEMENTS
   ============================================================ */
.parallax-wrap {
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-xl);
}

.parallax-img {
    height: 120%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    will-change: transform;
}

/* ============================================================
   PROJECT GRID / PORTFOLIO CARDS
   ============================================================ */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-card);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 20, 20, 0.85) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

/* ============================================================
   PRICING / PACKAGE CARDS
   ============================================================ */
.package-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.package-card.featured {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(163, 31, 52, 0.12);
}

.package-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 1.25rem;
    right: -2rem;
    background: var(--primary);
    color: #fff;
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.35rem 2.5rem;
    transform: rotate(45deg);
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.package-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.package-price {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.package-price span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-weight: 400;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.package-features li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-features li .check {
    color: var(--primary);
    font-weight: 700;
}

/* ============================================================
   STATS / COUNTERS
   ============================================================ */
.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ============================================================
   MAGNETIC BUTTON (desktop)
   ============================================================ */
@media (min-width: 1024px) {
    .magnetic-btn {
        will-change: transform;
    }
}

/* ============================================================
   ABOUT SECTION SPECIFICS
   ============================================================ */
.about-badge {
    position: absolute;
    bottom: -2rem;
    right: -1.5rem;
    background: var(--primary);
    border-radius: 2rem;
    padding: 2rem 1.75rem;
    color: #fff;
    max-width: 220px;
    box-shadow: 0 20px 40px rgba(163, 31, 52, 0.35);
}

@media (max-width: 767px) {
    .about-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        max-width: 100%;
        border-radius: 1.25rem;
        padding: 1.25rem;
    }
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-step {
    text-align: center;
    position: relative;
}

.process-step-num {
    width: 4rem;
    height: 4rem;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(163, 31, 52, 0.3);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(163, 31, 52, 0.15) 0%, transparent 65%);
    pointer-events: none;
}

/* ============================================================
   INFO GRID — Interior Tips, Material Showcase
   ============================================================ */
.info-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.info-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.info-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.12;
    line-height: 1;
    margin-bottom: 0.75rem;
}

/* ============================================================
   BRAND MARQUEE  
   ============================================================ */
.brand-marquee {
    display: flex;
    animation: marquee 30s linear infinite;
    gap: 4rem;
    align-items: center;
}

.brand-marquee:hover {
    animation-play-state: paused;
}

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 767px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .hide-desktop {
        display: none !important;
    }
}

/* ============================================================
   LOADING SKELETON
   ============================================================ */
.skeleton {
    background: linear-gradient(90deg, #E5E5E5 25%, #D0D0D0 50%, #E5E5E5 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 0.5rem;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--charcoal);
    color: #fff;
    padding: 4rem 1.5rem 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    background: var(--beige);
    padding: 8rem 1.5rem 4rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .page-hero {
        padding: 10rem 2rem 5rem;
    }
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: min(500px, 60vw);
    height: min(500px, 60vw);
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================================
   GOLD ACCENT ELEMENTS
   ============================================================ */
.gold-accent {
    color: var(--gold);
}

.gold-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    max-width: 160px;
    margin: 1.25rem auto;
    opacity: 0.4;
}

/* Label with accent dot */
.premium-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.35rem 0.85rem 0.35rem 0.65rem;
    border-radius: 999px;
}

.premium-label::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

/* ============================================================
   PREMIUM ANIMATED BACKGROUNDS & EFFECTS
   ============================================================ */

/* Floating Background Orbs Animation */
.floating-orbs {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
}

/* Animated SVG backgrounds */
.animated-bg-svg {
    mix-blend-mode: multiply;
    opacity: 0.6;
}

/* Morphing shapes background */
.morph-shapes {
    z-index: -3;
    opacity: 0.15;
    will-change: transform;
}

.hero-section {
    position: relative;
    /* Background handled entirely by the video + overlay divs */
}

/* Premium Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.shimmer-text {
    background: linear-gradient(90deg,
            var(--charcoal),
            var(--primary),
            var(--gold),
            var(--charcoal));
    background-size: 1000px 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 8s infinite;
}

/* Glow Effect on Hover */
@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(163, 31, 52, 0.3),
            0 0 40px rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(163, 31, 52, 0.5),
            0 0 60px rgba(255, 255, 255, 0.3);
    }
}

.glow-element:hover {
    animation: glow 3s ease-in-out;
}


.float-element {
    animation: float 6s ease-in-out infinite;
}


/* Animated Border */
@keyframes borderGlow {
    0% {
        border-color: rgba(163, 31, 52, 0.3);
        box-shadow: 0 0 10px rgba(163, 31, 52, 0.2);
    }

    50% {
        border-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }

    100% {
        border-color: rgba(163, 31, 52, 0.3);
        box-shadow: 0 0 10px rgba(163, 31, 52, 0.2);
    }
}

.border-glow {
    border: 2px solid rgba(163, 31, 52, 0.3);
    animation: borderGlow 4s ease-in-out infinite;
}

/* Smooth Pulse Animation */
@keyframes smoothPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.pulse-element {
    animation: smoothPulse 3s ease-in-out infinite;
}

/* Gradient Text Animation */
@keyframes gradientFlow {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.gradient-text {
    background: linear-gradient(90deg,
            var(--primary) 0%,
            var(--gold) 25%,
            var(--primary) 50%,
            var(--gold) 75%,
            var(--primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 6s linear infinite;
    font-weight: bold;
}

/* Animated Underline */
@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.animated-underline {
    position: relative;
    display: inline-block;
}

.animated-underline::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    border-radius: 3px;
    animation: expandWidth 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Backdrop Blur Enhanced */
.backdrop-blur-premium {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Smooth Color Transition */
@keyframes colorShift {
    0% {
        color: var(--primary);
    }

    50% {
        color: var(--gold);
    }

    100% {
        color: var(--primary);
    }
}

.color-shift {
    animation: colorShift 6s ease-in-out infinite;
}

/* Premium Text Shadow */
.premium-shadow {
    text-shadow: 0 10px 30px rgba(163, 31, 52, 0.2),
        0 0 20px rgba(255, 255, 255, 0.15);
}

/* Animated Dots Pattern */
@keyframes dotFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(20px, -20px);
    }

    50% {
        transform: translate(0, -40px);
    }

    75% {
        transform: translate(-20px, -20px);
    }
}

.dot-pattern {
    animation: dotFloat 8s ease-in-out infinite;
}

/* Enhanced Card Hover Effect */
.card-hover-premium {
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.card-hover-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(163, 31, 52, 0.15),
        0 0 40px rgba(255, 255, 255, 0.1);
}

/* Liquid Swipe Animation */
@keyframes liquidSwipe {
    0% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    }

    50% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

.liquid-reveal {
    animation: liquidSwipe 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Staggered opacity animation */
@keyframes staggerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-fade {
    animation: staggerFadeIn 0.8s ease-out forwards;
}

/* Premium Focus State */
.focus-glow:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(163, 31, 52, 0.1),
        0 0 0 5px var(--primary);
}

/* ============================================================
   KEYFRAMES — CORE ANIMATIONS
   ============================================================ */

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-16px); }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ============================================================
   HERO SECTION UTILITIES
   ============================================================ */

.animate-float {
    animation: float 5s ease-in-out infinite;
}

.animate-marquee {
    display: flex;
    animation: marquee 22s linear infinite;
    width: fit-content;
}

/* INTERIORS word — starts visible (translated to 0) via GSAP */
.hover-reveal {
    /* Initial state set by GSAP: translateY(100%) */
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
}

/* On hover of the container, lift INTERIORS slightly */
.hero-title-container:hover .hover-reveal {
    transform: translateY(-3%) !important;
}

.hero-visual {
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-visual:hover {
    transform: scale(1.015) rotate(-0.5deg);
}

/* Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.45);
}

@media (max-width: 1024px) {
    .hero-title-container h1 {
        font-size: clamp(2.8rem, 11vw, 5rem);
    }
}

@keyframes scrollIndicator {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

.animate-scrollIndicator {
    animation: scrollIndicator 1.6s ease-in-out infinite;
}

/* ============================================================
   VIDEO HERO — Inner Pages
   ============================================================ */
.video-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.video-hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

.video-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.video-hero-content h1 {
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-hero-content p {
    color: rgba(255, 255, 255, 0.85);
}

.video-hero-content .hero-tag {
    color: #FFFFFF;
    background: rgba(163, 31, 52, 0.8);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

/* Gallery Image */
.gallery-img {
    overflow: hidden;
    border-radius: var(--radius-xl);
    position: relative;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery-img:hover img {
    transform: scale(1.06);
}

/* Parallax wrapper for inner pages */
.parallax-wrapper {
    overflow: hidden;
    border-radius: var(--radius-xl);
    position: relative;
}

.parallax-wrapper img,
.parallax-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
