/**
 * The Look - Inner Pages Styles
 * Compact, premium design for all secondary pages
 */

/* =========================================
   Page Hero (Compact)
   ========================================= */
.page-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    padding: 110px 0 2rem;
    overflow: hidden;
}

.page-hero.enhanced-hero {
    min-height: 55vh;
    padding: 120px 0 4rem;
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease-out;
}

.page-hero:hover .hero-bg img {
    transform: scale(1.05);
}

.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(26, 26, 26, 0.75) 100%);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    max-width: 700px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(201, 169, 98, 0.2);
    border: 1px solid var(--accent-gold);
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.hero-tag i {
    font-size: 0.75rem;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.page-hero h1 .text-gold {
    color: var(--accent-gold);
}

.page-hero p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* =========================================
   Hero Inline Stats
   ========================================= */
.hero-inline-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(201, 169, 98, 0.2);
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.inline-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.inline-stat .stat-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.inline-stat .stat-value i {
    color: var(--accent-gold);
}

.inline-stat.highlight .stat-value {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.inline-stat .stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(201, 169, 98, 0.3);
}

/* =========================================
   Hero Scroll Hint
   ========================================= */
.page-hero .hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.page-hero .hero-scroll-hint span {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.page-hero .hero-scroll-hint .scroll-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 98, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounceDown 2s ease-in-out infinite;
}

.page-hero .hero-scroll-hint .scroll-arrow i {
    color: var(--accent-gold);
    font-size: 0.75rem;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(6px); }
    60% { transform: translateY(3px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* =========================================
   Hero Decorative Elements
   ========================================= */
.hero-decor {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 98, 0.15);
}

.decor-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: pulse 8s ease-in-out infinite;
}

.decor-circle-2 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    left: -50px;
    animation: pulse 8s ease-in-out infinite 2s;
}

.decor-line-left,
.decor-line-right {
    position: absolute;
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(201, 169, 98, 0.3), transparent);
}

.decor-line-left {
    left: 10%;
    top: 20%;
}

.decor-line-right {
    right: 10%;
    bottom: 20%;
}

.decor-grid {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(201, 169, 98, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 98, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.floating-shapes .shape {
    position: absolute;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 50%;
}

.shape-1 {
    width: 10px;
    height: 10px;
    top: 25%;
    right: 15%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 6px;
    height: 6px;
    top: 40%;
    right: 25%;
    animation: float 6s ease-in-out infinite 1s;
}

.shape-3 {
    width: 8px;
    height: 8px;
    bottom: 30%;
    right: 20%;
    animation: float 6s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Decorative Quote Marks */
.decor-quotes {
    position: absolute;
    inset: 0;
}

.decor-quotes i {
    position: absolute;
    font-size: 4rem;
    color: rgba(201, 169, 98, 0.1);
}

.decor-quotes .quote-1 {
    top: 20%;
    right: 15%;
    animation: fadeFloat 4s ease-in-out infinite;
}

.decor-quotes .quote-2 {
    bottom: 25%;
    right: 25%;
    animation: fadeFloat 4s ease-in-out infinite 1s;
}

/* Decorative Question Marks */
.decor-questions {
    position: absolute;
    inset: 0;
}

.decor-questions .question-mark {
    position: absolute;
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 300;
    color: rgba(201, 169, 98, 0.08);
}

.decor-questions .q-1 {
    top: 15%;
    right: 20%;
    animation: fadeFloat 5s ease-in-out infinite;
}

.decor-questions .q-2 {
    top: 40%;
    right: 12%;
    font-size: 3rem;
    animation: fadeFloat 5s ease-in-out infinite 1s;
}

.decor-questions .q-3 {
    bottom: 25%;
    right: 25%;
    font-size: 4rem;
    animation: fadeFloat 5s ease-in-out infinite 2s;
}

/* Decorative Map Pins */
.decor-map-pins {
    position: absolute;
    inset: 0;
}

.decor-map-pins i {
    position: absolute;
    font-size: 2rem;
    color: rgba(201, 169, 98, 0.2);
    animation: pinBounce 3s ease-in-out infinite;
}

.decor-map-pins .pin-1 {
    top: 25%;
    right: 20%;
}

.decor-map-pins .pin-2 {
    top: 45%;
    right: 30%;
    animation-delay: 0.5s;
}

.decor-map-pins .pin-3 {
    bottom: 30%;
    right: 15%;
    animation-delay: 1s;
}

@keyframes pinBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeFloat {
    0%, 100% { opacity: 0.5; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-15px); }
}

/* =========================================
   Hero Floating Badge
   ========================================= */
.hero-floating-badge {
    position: absolute;
    right: 5%;
    bottom: 25%;
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: floatBadge 4s ease-in-out infinite;
}

.hero-floating-badge .badge-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), #d4b978);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-floating-badge .badge-icon i {
    color: #1a1a1a;
    font-size: 1.1rem;
}

.hero-floating-badge .badge-text {
    display: flex;
    flex-direction: column;
}

.hero-floating-badge .badge-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.hero-floating-badge .badge-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* =========================================
   Page-Specific Hero Accents
   ========================================= */
.about-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.7) 100%);
}

.staging-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(26, 26, 26, 0.75) 100%);
}

.interior-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.88) 0%, rgba(26, 26, 26, 0.72) 100%);
}

.pricing-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.92) 30%, rgba(201, 169, 98, 0.15) 100%);
}

.testimonials-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.75) 100%);
}

.contact-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(26, 26, 26, 0.8) 100%);
}

/* =========================================
   Responsive Hero Enhancements
   ========================================= */
@media (max-width: 768px) {
    .page-hero.enhanced-hero {
        min-height: 50vh;
        padding: 100px 0 3rem;
    }
    
    .hero-inline-stats {
        gap: 1rem;
        padding: 0.75rem 0;
    }
    
    .stat-divider {
        height: 25px;
    }
    
    .inline-stat .stat-value {
        font-size: 1rem;
    }
    
    .inline-stat.highlight .stat-value {
        font-size: 1.2rem;
    }
    
    .inline-stat .stat-label {
        font-size: 0.6rem;
    }
    
    .page-hero .hero-scroll-hint {
        bottom: 1rem;
    }
    
    .hero-floating-badge {
        display: none;
    }
    
    .decor-circle-1 {
        width: 200px;
        height: 200px;
    }
    
    .decor-circle-2 {
        width: 150px;
        height: 150px;
    }
    
    .decor-quotes i,
    .decor-questions .question-mark,
    .decor-map-pins i {
        font-size: 2rem;
    }
}

/* =========================================
   Buttons
   ========================================= */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #c9a962 0%, #d4b978 100%);
    color: #1a1a1a;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 98, 0.4);
}

.btn-gold.full-width {
    width: 100%;
    justify-content: center;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: transparent;
    border: 2px solid #c9a962;
    color: #c9a962;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: #c9a962;
    color: #1a1a1a;
}

/* =========================================
   Trust Stats Bar - Enhanced
   ========================================= */
.trust-stats-bar {
    background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.stats-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.stat-box {
    text-align: center;
    padding: 1rem 1.5rem;
    position: relative;
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.stat-icon i {
    font-size: 1.25rem;
    color: #c9a962;
}

.stat-box:hover .stat-icon {
    background: rgba(201, 169, 98, 0.2);
    transform: scale(1.1);
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: #c9a962;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-txt {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(201, 169, 98, 0.3), transparent);
}

/* =========================================
   Content Sections
   ========================================= */
.content-section {
    padding: 3rem 0;
}

.content-section.bg-white {
    background: #fff;
}

.content-section.bg-cream {
    background: #f9f7f4;
}

.content-section.bg-dark {
    background: #1a1a1a;
    color: #fff;
}

.section-header-center {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header-center.light h2 {
    color: #fff;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #c9a962;
    margin-bottom: 0.5rem;
}

.section-tag.light {
    color: #c9a962;
}

.content-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    color: #262626;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.content-section.bg-dark h2 {
    color: #fff;
}

.text-gold {
    color: #c9a962;
}

/* =========================================
   Two Column Grid
   ========================================= */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.two-col-grid.reverse .col-content {
    order: 2;
}

.col-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.col-image {
    position: relative;
}

.rounded-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* =========================================
   Benefits List
   ========================================= */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-item i {
    font-size: 1rem;
    color: #c9a962;
    margin-top: 3px;
}

.benefit-item strong {
    display: block;
    font-size: 0.9rem;
    color: #262626;
    margin-bottom: 0.15rem;
}

.benefit-item span {
    font-size: 0.8rem;
    color: #666;
}

/* Enhanced Benefits with Icon Wraps */
.benefit-icon-wrap {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.15) 0%, rgba(201, 169, 98, 0.05) 100%);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-icon-wrap i {
    font-size: 1rem;
    color: #c9a962;
}

.benefit-item:hover .benefit-icon-wrap {
    background: linear-gradient(135deg, #c9a962 0%, #d4b978 100%);
    transform: scale(1.05);
}

.benefit-item:hover .benefit-icon-wrap i {
    color: #1a1a1a;
}

/* Lead Text */
.lead-text {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Image Showcase */
.image-showcase {
    position: relative;
}

.image-showcase .main-img {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #c9a962 0%, #d4b978 100%);
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-badge .badge-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1;
}

.floating-badge .badge-txt {
    font-size: 0.7rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Subtitle */
.section-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

.section-subtitle-light {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
}

/* =========================================
   Ideal For Cards - Enhanced
   ========================================= */
.ideal-section {
    overflow: hidden;
}

.ideal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.ideal-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.ideal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c9a962, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ideal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(201, 169, 98, 0.2);
}

.ideal-card:hover::before {
    opacity: 1;
}

.ideal-card.featured {
    background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
    border-color: rgba(201, 169, 98, 0.3);
}

.ideal-card.featured h4,
.ideal-card.featured p {
    color: #fff;
}

.ideal-card.featured p {
    color: rgba(255, 255, 255, 0.7);
}

.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #c9a962 0%, #d4b978 100%);
    color: #1a1a1a;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.ideal-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ideal-icon i {
    font-size: 1.75rem;
    color: #c9a962;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.icon-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(201, 169, 98, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ideal-card:hover .icon-ring {
    border-color: rgba(201, 169, 98, 0.5);
    transform: scale(1.1);
}

.ideal-card:hover .ideal-icon i {
    transform: scale(1.1);
}

.ideal-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: #262626;
    margin-bottom: 0.75rem;
}

.ideal-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 1rem;
}

.card-indicator {
    width: 35px;
    height: 35px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 50%;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.card-indicator i {
    font-size: 0.8rem;
    color: #c9a962;
}

.ideal-card:hover .card-indicator {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Before/After Gallery - Enhanced
   ========================================= */
.transformations-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.ba-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.ba-card {
    border-radius: 16px;
    overflow: hidden;
    background: #262626;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ba-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.ba-images {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.ba-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ba-card:hover .ba-img {
    transform: scale(1.08);
}

.ba-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ba-card:hover .ba-overlay {
    opacity: 1;
}

.view-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(201, 169, 98, 0.9);
    color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: #fff;
}

.ba-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #c9a962 0%, #d4b978 100%);
    color: #1a1a1a;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
}

.ba-info {
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ba-info-left {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.room-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.ba-impact {
    text-align: right;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: #c9a962;
    line-height: 1;
}

.impact-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =========================================
   Pricing Box - Enhanced
   ========================================= */
.pricing-section {
    overflow: visible;
}

.pricing-intro {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.pricing-box {
    background: #f9f7f4;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-box.enhanced {
    background: linear-gradient(135deg, #f9f7f4 0%, #fff 100%);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.price-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #c9a962 0%, #d4b978 100%);
    color: #1a1a1a;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 2.5rem;
    transform: rotate(45deg);
}

.price-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.price-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 0.5rem;
}

.price-amount-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
}

.price-currency {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #c9a962;
    line-height: 1;
    margin-top: 0.5rem;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    color: #c9a962;
    line-height: 1;
}

.price-period {
    display: block;
    font-size: 0.75rem;
    color: #888;
    margin-top: 0.25rem;
}

.price-includes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    color: #444;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-includes li:last-child {
    border-bottom: none;
}

.price-includes li i {
    color: #c9a962;
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.price-includes li strong {
    color: #262626;
}

.price-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.price-guarantee i {
    color: #c9a962;
    font-size: 1.25rem;
}

.price-guarantee span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.addons-box {
    margin-bottom: 1.5rem;
}

.addons-box.enhanced h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.addons-box.enhanced h4 i {
    color: #c9a962;
}

.addons-box h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #262626;
    margin-bottom: 1rem;
}

.addon-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.addon-tags span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    font-size: 0.8rem;
    color: #555;
    transition: all 0.3s ease;
}

.addon-tags span i {
    color: #c9a962;
    font-size: 0.75rem;
}

.addon-tags span:hover {
    border-color: #c9a962;
    background: rgba(201, 169, 98, 0.05);
}

/* Pricing Image Wrap */
.pricing-image-wrap {
    position: relative;
}

.roi-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(201, 169, 98, 0.3);
}

.roi-title {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.roi-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 400;
    color: #c9a962;
    line-height: 1;
}

.roi-subtitle {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

/* =========================================
   FAQ Section - Enhanced
   ========================================= */
.faq-section {
    overflow: hidden;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.faq-intro h2 {
    margin-bottom: 1rem;
}

.faq-intro > p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.faq-cta {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(201, 169, 98, 0.05) 100%);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.faq-cta .cta-text {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1rem;
}

.faq-grid {
    max-width: 100%;
    margin: 0;
    background: #fff;
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0;
    overflow: hidden;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-q:hover {
    background: rgba(201, 169, 98, 0.05);
}

.faq-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.faq-icon i {
    font-size: 0.9rem;
    color: #c9a962;
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, #c9a962 0%, #d4b978 100%);
}

.faq-item.active .faq-icon i {
    color: #1a1a1a;
}

.faq-q span {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: #262626;
}

.faq-arrow {
    color: #c9a962;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-a {
    max-height: 200px;
}

.faq-a p {
    padding: 0 1.25rem 1.25rem calc(40px + 2rem);
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   Form Section - Enhanced
   ========================================= */
.quote-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(201, 169, 98, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.form-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.form-intro h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.form-intro > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.form-benefits {
    margin-bottom: 2rem;
}

.form-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.form-benefit-item i {
    color: #c9a962;
    font-size: 1rem;
}

.form-benefit-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.contact-quick {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quick-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.quick-icon i {
    color: #c9a962;
    font-size: 1rem;
}

.quick-item:hover .quick-icon {
    background: rgba(201, 169, 98, 0.2);
}

.quick-details {
    display: flex;
    flex-direction: column;
}

.quick-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.15rem;
}

.quick-details a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.quick-details a:hover {
    color: #c9a962;
}

.form-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-box input,
.form-box select,
.form-box textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    font-size: 0.9rem;
    color: #fff;
    transition: all 0.3s ease;
}

.form-box input::placeholder,
.form-box textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-box select {
    color: rgba(255, 255, 255, 0.5);
}

.form-box select option {
    background: #1a1a1a;
    color: #fff;
}

.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
    outline: none;
    border-color: #c9a962;
    background: rgba(255, 255, 255, 0.08);
}

.form-box textarea {
    resize: none;
    margin-bottom: 1rem;
}

.photo-upload {
    margin-bottom: 1rem;
}

.photo-upload label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.photo-upload label:hover {
    border-color: #c9a962;
    background: rgba(255, 255, 255, 0.03);
}

.photo-upload i {
    font-size: 1.5rem;
    color: #c9a962;
    margin-bottom: 0.5rem;
}

.photo-upload span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.photo-upload input[type="file"] {
    display: none;
}

/* =========================================
   Utility Classes
   ========================================= */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 1024px) {
    .two-col-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .two-col-grid.reverse .col-content {
        order: 0;
    }

    .ideal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ba-gallery-grid {
        grid-template-columns: 1fr;
    }

    .form-section-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-intro {
        text-align: center;
    }
    
    .faq-cta {
        display: inline-block;
    }
    
    .stat-divider {
        display: none;
    }
    
    .floating-badge {
        right: 10px;
        bottom: -10px;
    }
    
    .roi-badge {
        left: 10px;
        bottom: -10px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 40vh;
        padding: 80px 0 40px;
    }

    .stats-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .ideal-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn-gold,
    .btn-outline-white {
        width: 100%;
        justify-content: center;
    }
    
    .floating-badge,
    .roi-badge {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 1rem;
    }
    
    .ba-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .ba-impact {
        text-align: left;
        padding-left: 0;
        border-left: none;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .price-ribbon {
        top: 15px;
        right: -40px;
        font-size: 0.6rem;
    }
}