/* =================================================================
   REUSABLE LUXURY PAGE STYLES
   For all pages except index.php and VIP services
   ================================================================= */

/* =================================================================
   ENGAGING HERO SECTIONS
   ================================================================= */

.page-hero-luxury {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    overflow: hidden;
}

.page-hero-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.5) 0%, rgba(45, 55, 72, 0.5) 100%);
    z-index: 1;
}

.page-hero-luxury-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(30, 174, 69, 0.15);
    border: 2px solid #1eae45;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    color: #1eae45;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease;
}

.page-hero-luxury-title {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.page-hero-luxury-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.page-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.page-hero-stat {
    text-align: center;
}

.page-hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1eae45;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.page-hero-stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn-page-primary,
.btn-page-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.15rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-page-primary {
    background: #1eae45;
    color: #ffffff;
    border-color: #1eae45;
}

.btn-page-primary:hover {
    background: #189a3c;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(30, 174, 69, 0.3);
}

.btn-page-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-page-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* =================================================================
   VISUAL INTRODUCTION SECTIONS
   ================================================================= */

.page-intro-section {
    background: #ffffff;
    padding: 6rem 0;
}

.page-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.page-label {
    display: inline-block;
    color: #1eae45;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.page-intro-content h2 {
    font-size: 2.5rem;
    color: #1a2332;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.page-intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3d4852;
    margin-bottom: 1.5rem;
}

.page-intro-highlights {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.page-highlight-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.page-highlight-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1eae45 0%, #189a3c 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.page-highlight-text strong {
    display: block;
    color: #1a2332;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.page-highlight-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #5a6b7d;
}

.page-stats-visual {
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.page-stat-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(30, 174, 69, 0.1);
    border: 2px solid rgba(30, 174, 69, 0.3);
    border-radius: 12px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.page-stat-card:last-child {
    margin-bottom: 0;
}

.page-stat-card:hover {
    background: rgba(30, 174, 69, 0.15);
    border-color: #1eae45;
    transform: translateY(-5px);
}

.page-stat-card-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1eae45;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.page-stat-card-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =================================================================
   FEATURE CARDS
   ================================================================= */

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(30, 174, 69, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #1eae45;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1eae45 0%, #189a3c 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #1a2332;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6b7d;
    margin: 0;
}

/* =================================================================
   DARK ACCENT SECTIONS
   ================================================================= */

.dark-accent-section {
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    padding: 6rem 0;
}

.dark-accent-section h2,
.dark-accent-section h3 {
    color: white;
}


.dark-accent-section p {
    color: rgba(255, 255, 255, 0.9);
}

/* Fix for feature cards inside dark sections */
.dark-accent-section .feature-card {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dark-accent-section .feature-card h3 {
    color: #1a2332;
}

.dark-accent-section .feature-card p {
    color: #5a6b7d;
}


/* =================================================================
   RESPONSIVE STYLES
   ================================================================= */

/* Tablet (768px to 1024px) */
@media (max-width: 1024px) {
    .page-hero-luxury {
        min-height: 70vh;
    }

    .page-hero-luxury-title {
        font-size: 3rem;
    }

    .page-hero-luxury-subtitle {
        font-size: 1.2rem;
    }

    .page-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .page-hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
    .page-hero-luxury {
        min-height: 85vh;
        background-attachment: scroll;
        padding: 1rem 0;
    }

    .page-hero-luxury-content {
        padding: 1rem;
    }

    .page-hero-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }

    .page-hero-luxury-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .page-hero-luxury-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .page-hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .page-hero-stat-number {
        font-size: 2.2rem;
    }

    .page-hero-stat-label {
        font-size: 0.9rem;
    }

    .page-hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn-page-primary,
    .btn-page-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .page-intro-section {
        padding: 4rem 0;
    }

    .page-intro-content h2 {
        font-size: 2rem;
    }

    .page-intro-content p {
        font-size: 1rem;
    }

    .page-highlight-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .page-stats-visual {
        padding: 2rem 1.5rem;
    }

    .page-stat-card {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .page-stat-card-number {
        font-size: 2.5rem;
    }

    .feature-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .dark-accent-section {
        padding: 4rem 0;
    }

    /* Media page article grid responsive */
    section .container>div[style*="grid-template-columns: repeat(auto-fit, minmax(350px, 1fr))"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Fix container overflow on all pages */
    .section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .page-intro-section .container,
    .dark-accent-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .page-hero-luxury-title {
        font-size: 2rem;
    }

    .page-hero-luxury-subtitle {
        font-size: 1rem;
    }

    .page-intro-content h2 {
        font-size: 1.75rem;
    }

    .page-stat-card-number {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .btn-page-primary,
    .btn-page-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* =================================================================
   ANIMATIONS
   ================================================================= */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}