/* 
 * ENHANCED INTERIOR SERVICE PAGE STYLES - Version 3.2
 * High-Quality, Professional Design System
 * Optimized for User Experience and Conversions
 * FIXED: Pricing size, gallery alignment, mobile button optimization
 */

/* === CORE VARIABLES === */
:root {
    --primary-color: #1e3c72;
    --secondary-color: #2a5298;
    --accent-color: #c7b299;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-light: #e9ecef;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 15px 35px rgba(0,0,0,0.2);
    --border-radius: 15px;
    --transition: all 0.3s ease;
}

/* === ENHANCED OLD BANNER INTEGRATION === */
/* These styles integrate the old banner design properly */
.wna-hero-banner {
    position: relative;
    height: 70vh;
    min-height: 500px;
    width: 100%;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding: 20px;
    overflow: hidden;
}

.wna-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.wna-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.text-background-box {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 40px 50px;
    border-radius: 10px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.wna-hero-content h1,
.wna-hero-content h1.main-page-title {
    color: #FFFFFF !important;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    display: block !important;
    visibility: visible !important;
}

.wna-hero-content p {
    font-size: 1.125rem;
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    color: #ffffff;
}

.wna-cta-button {
    display: inline-block;
    background-color: #c7b299;
    color: #ffffff;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(199, 178, 153, 0.3);
}

.wna-cta-button:hover {
    background-color: #b9a58b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 178, 153, 0.4);
    color: #ffffff;
    text-decoration: none;
}

/* FIXED: Mobile optimization for banner button */
@media (max-width: 768px) {
    .wna-hero-banner {
        height: auto;
        min-height: 90vh;
    }
    .text-background-box {
        padding: 30px 25px;
    }
    .wna-hero-content h1,
    .wna-hero-content h1.main-page-title {
        font-size: 2.2rem;
    }
    .wna-hero-content p {
        font-size: 1rem;
    }
    .wna-cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .text-background-box {
        padding: 20px 15px;
    }
    .wna-hero-content h1,
    .wna-hero-content h1.main-page-title {
        font-size: 1.8rem;
    }
    .wna-cta-button {
        padding: 10px 16px;
        font-size: 0.85rem;
        max-width: 90%;
        text-align: center;
    }
}

/* === NEW TOP SECTION - "Are you looking for..." === */
.looking-for-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    border-bottom: 3px solid var(--accent-color);
}

.looking-for-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.looking-for-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.looking-for-content p {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-button-looking {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button-looking:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    text-decoration: none;
}

/* FIXED: Mobile optimization for looking section button */
@media (max-width: 768px) {
    .cta-button-looking {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-button-looking {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        max-width: 90%;
        white-space: nowrap;
    }
}

/* === GLOBAL SECTION STYLES === */
.section {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* === WHY CHOOSE WALLS ASIA SECTION - Enhanced Visuals === */
.why-choose-section {
    background: var(--white);
    padding: 80px 0;
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 45%, rgba(30, 60, 114, 0.02) 50%, transparent 55%);
    pointer-events: none;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.why-choose-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: left;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    opacity: 0;
    transition: var(--transition);
}

.why-choose-card:hover::before {
    opacity: 1;
}

.why-choose-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    transform: scale(1.02);
    border-color: var(--accent-color);
}

.why-choose-card.featured::before {
    background: var(--accent-color);
    opacity: 1;
}

.why-choose-card.featured h3,
.why-choose-card.featured .card-icon {
    color: var(--white);
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-color);
}

.why-choose-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--accent-color);
    transition: var(--transition);
}

.why-choose-card.featured .card-icon {
    color: var(--white);
}

.why-choose-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.why-choose-card p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.why-choose-card.featured p {
    color: rgba(255,255,255,0.95);
}

.testimonial-highlight {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 4rem;
    box-shadow: var(--shadow-light);
    border-left: 5px solid var(--accent-color);
    position: relative;
    z-index: 2;
}

.testimonial-highlight::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
}

.testimonial-highlight blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.testimonial-highlight cite {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
}

/* === FIXED GALLERY SECTIONS - Better spacing and alignment === */
.gallery-section {
    padding: 60px 0;
    background: var(--white);
}

.gallery-section:nth-child(even) {
    background: var(--bg-light);
}

/* FIXED: Gallery category spacing and alignment */
.gallery-category {
    margin-bottom: 5rem;
    clear: both;
}

.gallery-category:last-child {
    margin-bottom: 0;
}

.gallery-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    text-align: center;
    padding: 1rem 0;
    border-bottom: 3px solid var(--accent-color);
    position: relative;
    clear: both;
}

.gallery-subtitle::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
    clear: both;
}

.gallery-item {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.tagline {
    padding: 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/* === PROCESS SECTION - Fixed Alignment === */
.process-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.process-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    box-shadow: var(--shadow-medium);
    flex-shrink: 0;
}

.process-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    text-align: center;
}

.process-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    flex-grow: 1;
    margin: 0;
}

/* === SERVICE EXCELLENCE SECTION === */
.service-excellence-section {
    background: var(--white);
}

.features-grid-excellence {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-item-excellence {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.feature-item-excellence:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    background: var(--white);
}

.feature-icon-excellence {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-item-excellence h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.feature-item-excellence p {
    color: var(--text-dark);
    line-height: 1.7;
}

/* === ENHANCED INVESTMENT SECTION - FIXED PRICING SIZE === */
.investment-section {
    background: var(--bg-light);
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.investment-card {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius);
    text-align: center;
    padding: 3rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.investment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.investment-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-heavy);
}

.investment-card h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* FIXED: Reduced pricing font size */
.investment-price {
    color: var(--accent-color);
    font-size: 2.2rem; /* Reduced from 2.8rem */
    font-weight: 700; /* Reduced from 800 */
    margin: 1.5rem 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    line-height: 1.2;
}

.investment-card p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.package-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.investment-note {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
    border: 1px solid var(--border-light);
    text-align: center;
}

.investment-note p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* === ENHANCED FAQ SECTION === */
.faq-section {
    background: var(--white);
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    padding: 2rem;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-color);
}

.faq-answer {
    padding: 2rem;
    margin: 0;
    background: var(--bg-light);
}

.faq-answer p {
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

/* === ENHANCED CTA SECTION - Fixed Mobile Button Alignment === */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section .section-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    line-height: 1.2;
}

.cta-section > .container > p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    align-items: center;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    color: var(--white);
    font-weight: 500;
    line-height: 1.2;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0;
    align-items: center;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    white-space: nowrap;
    min-width: 200px;
    justify-content: center;
}

.cta-btn.primary {
    background: var(--accent-color);
    color: var(--white);
}

.cta-btn.secondary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    text-decoration: none;
}

.cta-btn.primary:hover {
    background: #b8a085;
    color: var(--white);
}

.cta-btn.secondary:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.cta-guarantee {
    font-size: 1rem;
    opacity: 0.95;
    margin-top: 2.5rem;
    color: var(--white);
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .looking-for-content h2 {
        font-size: 2rem;
    }
    
    .why-choose-grid,
    .features-grid-excellence,
    .investment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-subtitle {
        font-size: 1.6rem;
        text-align: center;
        padding: 0.8rem 0;
        margin-bottom: 2rem;
    }
    
    .cta-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .cta-btn {
        width: 90%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .investment-card {
        padding: 2rem 1.5rem;
    }
    
    /* FIXED: Mobile pricing size */
    .investment-price {
        font-size: 1.8rem;
    }
    
    .looking-for-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .why-choose-card,
    .feature-item-excellence {
        padding: 1.5rem;
    }
    
    .investment-price {
        font-size: 1.6rem;
    }
    
    .looking-for-content {
        padding: 0 10px;
    }
    
    .looking-for-content h2 {
        font-size: 1.6rem;
    }
    
    .gallery-category {
        margin-bottom: 3rem;
    }
    
    .gallery-subtitle {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-btn {
        width: 95%;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        min-width: auto;
    }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section > * {
    animation: fadeInUp 0.6s ease-out;
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === PRINT STYLES === */
@media print {
    .cta-section,
    .gallery-section {
        display: none;
    }
    
    .section {
        padding: 20px 0;
    }
    
    * {
        box-shadow: none !important;
    }
}