/* WHY SRI LANKA SECTION STYLES */
/* Luxury Travel Design System - Serendib Escape */

.why-sri-lanka {
    position: relative;
    background-color: #0a0a0a; /* Charcoal black */
    color: #f5f5f5;
    padding: 5rem 1.5rem;
    overflow: hidden;
}

/* Background Decorative Title */
.section-background-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(6rem, 15vw, 18rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    z-index: 0;
    letter-spacing: 0.02em;
}

/* Section Container */
.section-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
}

/* Editorial Header */
.editorial-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-family: "Inter", -apple-system, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #e8c16f; /* Gold accent */
    margin-bottom: 1rem;
}

.section-heading {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.editorial-text {
    font-family: "Inter", -apple-system, sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(245, 245, 245, 0.85);
    max-width: 650px;
    margin: 0 auto;
}

.editorial-text em {
    font-style: italic;
    color: #e8c16f;
    font-weight: 500;
}

/* Experience Pillars */
.experience-pillars {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .experience-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .experience-pillars {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.pillar {
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 193, 111, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.pillar:hover {
    transform: translateY(-8px);
    border-color: rgba(232, 193, 111, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pillar:hover::before {
    opacity: 1;
}

.pillar-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: #e8c16f;
}

.pillar-icon svg {
    width: 100%;
    height: 100%;
}

.pillar-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.pillar-description {
    font-family: "Inter", -apple-system, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(245, 245, 245, 0.7);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pillar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Inter", -apple-system, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #e8c16f;
    text-decoration: none;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.pillar-link:hover {
    gap: 0.75rem;
}

.link-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.pillar-link:hover .link-arrow {
    transform: translateX(4px);
}

/* Conversion Section */
.conversion-section {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    margin-bottom: 2.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Inter", -apple-system, sans-serif;
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.8);
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: rgba(232, 193, 111, 0.15);
    color: #e8c16f;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .cta-group {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: #e8c16f;
    color: #0a0a0a;
    font-family: "Inter", -apple-system, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 250px;
}

.cta-primary:hover {
    background-color: #f0cd81;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(232, 193, 111, 0.25);
}

.cta-icon {
    width: 18px;
    height: 18px;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: rgba(30, 30, 30, 0.8);
    color: #f5f5f5;
    font-family: "Inter", -apple-system, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 250px;
}

.cta-secondary:hover {
    background-color: rgba(50, 50, 50, 0.8);
    border-color: rgba(232, 193, 111, 0.3);
    transform: translateY(-2px);
}

.whatsapp-icon {
    width: 18px;
    height: 18px;
}

.conversion-note {
    font-family: "Inter", -apple-system, sans-serif;
    font-size: 0.95rem;
    color: rgba(245, 245, 245, 0.6);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
    .why-sri-lanka {
        padding: 3rem 1rem;
    }
    
    .section-background-title {
        font-size: clamp(4rem, 12vw, 6rem);
        top: 10%;
        transform: translate(-50%, 0);
    }
    
    .pillar {
        padding: 1.75rem 1.25rem;
    }
    
    .trust-indicators {
        gap: 1rem 1.5rem;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
}

/* Tablet Responsiveness */
@media (min-width: 641px) and (max-width: 1023px) {
    .section-background-title {
        font-size: clamp(5rem, 12vw, 8rem);
    }
}

/* Accessibility Focus States */
.cta-primary:focus-visible,
.cta-secondary:focus-visible,
.pillar-link:focus-visible {
    outline: 2px solid #e8c16f;
    outline-offset: 2px;
}