/* ========================================
   WebCraft - Luxury Design System
   Inspired by Porsche's sophistication
   ======================================== */

/* ===== FONTS & RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #e8e6e3;
    background: #0a1628;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

section {
    scroll-margin-top: 100px;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.desktop-br {
    display: inline;
}

/* ===== NAVIGATION ===== */
.nav-luxury {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 28px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.logo-luxury {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 300;
    color: #d4af37;
    letter-spacing: 0.05em;
    z-index: 1001;
    transition: opacity 0.3s ease;
}

.logo-luxury.cursor-pointer {
    cursor: pointer;
}

.logo-luxury.cursor-pointer:hover {
    opacity: 0.7;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 32px;
    height: 1px;
    background: #d4af37;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.nav-links {
    display: flex;
    gap: 56px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #e8e6e3;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.05em;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.nav-links a:hover {
    color: #d4af37;
}

.nav-contact {
    color: #d4af37;
    padding: 10px 28px;
    border: 1px solid #d4af37;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-contact:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
}

/* ===== HERO SECTION ===== */
.hero-luxury {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5% 0;
    position: relative;
    background: radial-gradient(ellipse at top, rgba(15, 30, 55, 0.8) 0%, #0a1628 60%);
}

.hero-content-luxury {
    max-width: 1000px;
    text-align: center;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.hero-subtitle {
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 32px;
    font-weight: 400;
}

.hero-title-luxury {
    font-size: 96px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 40px;
    color: #fff;
    letter-spacing: -0.03em;
}

.hero-description-luxury {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(232, 230, 227, 0.7);
    margin-bottom: 56px;
    font-weight: 300;
}

.btn-luxury {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 40px;
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.05em;
    font-weight: 400;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-luxury:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.btn-luxury svg {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-luxury:hover svg {
    transform: translateX(4px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    opacity: 0.5;
}

.hero-scroll-indicator span {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #d4af37;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, #d4af37 0%, transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

/* ===== STATEMENT SECTION ===== */
.statement-section {
    padding: 160px 5%;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    background: rgba(15, 30, 55, 0.3);
}

.statement-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.statement-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    line-height: 1.7;
    color: #e8e6e3;
    font-weight: 300;
    font-style: italic;
}

/* ===== STATS SECTION ===== */
.stats-luxury {
    padding: 120px 5%;
}

.stats-grid-luxury {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 80px;
    align-items: center;
}

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

.stat-number-luxury {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 16px;
    line-height: 1;
}

.stat-label-luxury {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(232, 230, 227, 0.6);
    font-weight: 400;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: rgba(212, 175, 55, 0.2);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-luxury {
    padding: 140px 5%;
    background: rgba(15, 30, 55, 0.3);
}

.testimonials-grid-luxury {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.testimonial-item-luxury {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    padding: 48px 40px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-item-luxury:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Featured Testimonial */
.featured-testimonial {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
    transform: scale(1.02);
}

.featured-testimonial:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.25);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0a1628;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.featured-badge svg {
    fill: #0a1628;
    stroke: none;
}

.featured-avatar {
    border: 2px solid #d4af37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0a1628;
    font-weight: 700;
}

.quote-icon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    line-height: 1;
    color: rgba(212, 175, 55, 0.2);
    margin-bottom: 24px;
    flex-shrink: 0;
}

.testimonial-text {
    font-family: 'Noto Sans Malayalam', 'Inter', -apple-system, sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    font-weight: 400;
    letter-spacing: 0.01em;
    flex-grow: 1;
}

/* Audio Player Luxury */
.audio-player-luxury {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(15, 30, 55, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    margin-bottom: 40px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.audio-player-luxury:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(15, 30, 55, 0.6);
}

.audio-play-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #c5a028 100%);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #0a1628;
}

.audio-play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.audio-play-btn:active {
    transform: scale(0.95);
}

.audio-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.audio-label {
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.8);
    font-family: 'Inter', sans-serif;
}

.audio-progress-container {
    width: 100%;
    height: 4px;
    background: rgba(232, 230, 227, 0.1);
    border-radius: 2px;
    cursor: pointer;
    overflow: hidden;
}

.audio-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #d4af37 0%, #c5a028 100%);
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 2px;
}

.audio-time {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(232, 230, 227, 0.5);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    flex-shrink: 0;
    margin-top: auto;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: #d4af37;
    flex-shrink: 0;
    object-fit: cover;
    object-position: center;
}

.author-info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.author-note {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    color: rgba(212, 175, 55, 0.7);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.03em;
    font-style: italic;
    font-weight: 400;
}

/* ===== PORTFOLIO SECTION (Commented) ===== */
.portfolio-luxury {
    padding: 140px 5%;
}

.section-header-luxury {
    max-width: 800px;
    margin: 0 auto 100px;
    text-align: center;
}

.section-header-luxury h2 {
    font-size: 64px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 24px;
}

.section-header-luxury p {
    font-size: 16px;
    color: rgba(232, 230, 227, 0.6);
    letter-spacing: 0.05em;
}

/* Collage Grid Layout */
.portfolio-collage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.collage-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.collage-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.collage-item.medium {
    grid-column: span 2;
    grid-row: span 1;
}

.collage-item.small {
    grid-column: span 2;
    grid-row: span 1;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.collage-item:hover img {
    transform: scale(1.05);
}

.collage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
        opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

.collage-item:hover .collage-overlay {
        opacity: 1;
    }

.collage-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.collage-info p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.collage-zoom {
    align-self: flex-end;
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.collage-item:hover .collage-zoom {
    background: rgba(212, 175, 55, 0.3);
    border-color: #d4af37;
    transform: scale(1.1);
}

.collage-zoom svg {
    stroke: #d4af37;
}

/* CTA Item in Collage */
.cta-item {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-item:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25) 0%, rgba(118, 75, 162, 0.25) 100%);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-4px);
}

.collage-cta {
    text-align: center;
    padding: 32px;
}

.cta-icon {
    font-size: 56px;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.collage-cta h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
}

.collage-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.cta-link {
    font-size: 14px;
    color: #d4af37;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    padding: 40px;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 1200px;
    width: 100%;
    position: relative;
    animation: scaleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 56px;
    height: 56px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    transform: rotate(90deg);
}

.lightbox-close svg {
    stroke: #d4af37;
}

.lightbox-image-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 32px;
}

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

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

.lightbox-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 16px;
}

.lightbox-info p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.lightbox-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.05em;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.lightbox-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.lightbox-btn svg {
    stroke: #d4af37;
}

/* ===== SERVICES SECTION ===== */
.services-luxury {
    padding: 140px 5%;
    background: rgba(15, 30, 55, 0.3);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-luxury h2 {
    font-size: 64px;
    font-weight: 300;
    color: #fff;
    text-align: center;
    margin-bottom: 100px;
}

.services-grid-luxury {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.service-item-luxury {
    text-align: center;
}

.service-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    color: #d4af37;
    margin-bottom: 32px;
    opacity: 0.5;
}

.service-item-luxury h3 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 24px;
    font-weight: 400;
}

.service-item-luxury p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(232, 230, 227, 0.7);
    font-weight: 300;
}

/* ===== PRICING SECTION ===== */
.pricing-luxury {
    padding: 140px 5%;
}

.pricing-header-luxury {
    max-width: 800px;
    margin: 0 auto 100px;
    text-align: center;
}

.pricing-header-luxury h2 {
    font-size: 64px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 24px;
}

.pricing-header-luxury p {
    font-size: 16px;
    color: rgba(232, 230, 227, 0.6);
    letter-spacing: 0.05em;
}

.pricing-grid-luxury {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.pricing-grid-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    gap: 48px;
}

.pricing-card-luxury {
    padding: 64px 48px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    background: rgba(15, 30, 55, 0.2);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.pricing-card-luxury:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(15, 30, 55, 0.4);
    transform: translateY(-8px);
}

.featured-luxury {
    border-color: #d4af37;
    background: rgba(15, 30, 55, 0.5);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #d4af37;
    background: #0a1628;
    padding: 6px 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.pricing-badge-subtle {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(232, 230, 227, 0.5);
    background: rgba(15, 30, 55, 0.6);
    padding: 6px 20px;
    border: 1px solid rgba(232, 230, 227, 0.15);
}

.pricing-tier {
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 32px;
}

.pricing-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    margin-bottom: 24px;
}

.custom-price {
    font-size: 48px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.currency {
    font-size: 40px;
    vertical-align: middle;
    margin-right: 4px;
    opacity: 0.8;
    position: relative;
    top: -4px;
}

.pricing-description {
    font-size: 15px;
    color: rgba(232, 230, 227, 0.6);
    margin-bottom: 48px;
    font-weight: 300;
}

.pricing-features-luxury {
    margin-bottom: 48px;
}

.feature-luxury {
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 15px;
    color: rgba(232, 230, 227, 0.8);
    font-weight: 300;
}

.feature-luxury:last-child {
    border-bottom: none;
}

.btn-pricing-luxury {
    display: block;
    text-align: center;
    padding: 16px 32px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-pricing-luxury:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
}

/* ===== CTA SECTION ===== */
.cta-luxury {
    padding: 200px 5%;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    background: radial-gradient(ellipse at center, rgba(15, 30, 55, 0.6) 0%, #0a1628 70%);
}

.cta-content-luxury h2 {
    font-size: 72px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 32px;
}

.cta-content-luxury p {
    font-size: 18px;
    color: rgba(232, 230, 227, 0.6);
    margin-bottom: 56px;
}

.btn-luxury-large {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 20px 56px;
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-luxury-large:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.btn-luxury-large svg {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-luxury-large:hover svg {
    transform: translateX(6px);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
    padding: 40px 5%;
    text-align: center;
    background: rgba(15, 30, 55, 0.3);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.trust-strip p {
    font-size: 15px;
    color: rgba(232, 230, 227, 0.6);
    letter-spacing: 0.02em;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
}

/* ===== FAQ SECTION ===== */
.faq-luxury {
    padding: 140px 5%;
    background: #0a1628;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    padding: 40px;
    background: rgba(15, 30, 55, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
    background: rgba(15, 30, 55, 0.6);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

.faq-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: #d4af37;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(232, 230, 227, 0.8);
    font-weight: 300;
}

/* ===== FOOTER ===== */
.footer-luxury {
    padding: 80px 5%;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-luxury p {
    font-size: 12px;
    color: rgba(232, 230, 227, 0.4);
    letter-spacing: 0.1em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-title-luxury {
        font-size: 72px;
    }
    
    .section-header-luxury h2,
    .services-luxury h2,
    .pricing-header-luxury h2,
    .cta-content-luxury h2 {
        font-size: 52px;
    }
    
    .stats-grid-luxury {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .stat-divider {
        width: 80px;
        height: 1px;
        margin: 0 auto;
    }
    
    /* Tablet: 2-column collage */
    .portfolio-collage {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 24px;
    }
    
    .collage-item.large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 350px;
    }
    
    .collage-item.medium,
    .collage-item.small {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 300px;
    }
    
    .testimonials-grid-luxury,
    .services-grid-luxury,
    .pricing-grid-luxury,
    .pricing-grid-two,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    /* Collage Mobile Layout */
    .portfolio-collage {
        grid-template-rows: auto;
    }
    
    .collage-item.large,
    .collage-item.medium,
    .collage-item.small {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 300px;
    }
    
    .collage-overlay {
        opacity: 1;
        background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
    }
    
    .collage-info h3 {
        font-size: 24px;
    }
    
    .collage-info p {
        font-size: 14px;
    }
    
    .lightbox {
        padding: 20px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 48px;
        height: 48px;
    }
    
    .lightbox-info h3 {
        font-size: 28px;
    }
    
    .lightbox-info p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .desktop-br {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 24px;
    }
    
    .nav-contact {
        padding: 16px 40px;
        border: 2px solid #d4af37;
        border-radius: 4px;
        font-size: 20px;
    }
    
    .hero-title-luxury {
        font-size: 48px;
    }
    
    .hero-description-luxury {
        font-size: 16px;
    }
    
    .statement-text {
        font-size: 24px;
    }
    
    .section-header-luxury h2,
    .services-luxury h2,
    .pricing-header-luxury h2 {
        font-size: 40px;
    }
    
    .cta-content-luxury h2 {
        font-size: 48px;
    }
    
    .stat-number-luxury {
        font-size: 56px;
    }
    
    .pricing-amount {
        font-size: 56px;
    }
    
    .custom-price {
        font-size: 36px;
    }
    
    .price-note {
        font-size: 12px;
        padding: 10px 16px;
        margin-top: -24px;
        margin-bottom: 24px;
    }
    
    .faq-item {
        padding: 32px 24px;
    }
    
    .faq-item h3 {
        font-size: 20px;
    }
    
    .faq-item p {
        font-size: 15px;
    }
    
    .trust-strip p {
        font-size: 14px;
    }
    
    .faq-luxury {
        padding: 80px 5%;
    }
    
    .testimonials-luxury {
        padding: 80px 5%;
    }
    
    .testimonial-item-luxury {
        padding: 32px 24px;
    }
    
    .featured-testimonial {
        transform: scale(1);
    }
    
    .featured-testimonial:hover {
        transform: translateY(-8px);
    }
    
    .featured-badge {
        font-size: 11px;
        padding: 6px 16px;
        top: -10px;
    }
    
    .featured-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .quote-icon {
        font-size: 64px;
        margin-bottom: 16px;
    }
    
    .testimonial-text {
        font-size: 15px;
        line-height: 1.85;
        margin-bottom: 24px;
    }
    
    .audio-player-luxury {
        flex-direction: row;
        gap: 16px;
        padding: 20px;
    }
    
    .audio-play-btn {
        width: 44px;
        height: 44px;
    }
    
    .audio-label {
        font-size: 11px;
    }
    
    .audio-time {
        font-size: 10px;
    }
    
    .author-avatar {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .author-info h4 {
        font-size: 18px;
    }
    
    .author-info span {
        font-size: 13px;
    }
    
    .author-note {
        font-size: 10px;
        margin-top: 6px;
    }
}

@media (max-width: 480px) {
    .hero-title-luxury {
        font-size: 40px;
    }
    
    .statement-text {
        font-size: 20px;
    }
    
    .section-header-luxury h2,
    .services-luxury h2,
    .pricing-header-luxury h2,
    .cta-content-luxury h2 {
        font-size: 32px;
    }
}

/* Performance */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

