/*
 * Premium Template Styles
 * Specialized for SEO Landing Pages and Country-Specific Templates
 * Design: High-end, consultative, paper-textured aesthetic
 */

:root {
    --premium-navy: #1a365d;
    --premium-gold: #f1c40f;
    --premium-gold-dark: #d4ac0d;
    --premium-green: #2ecc71;
    --premium-green-dark: #27ae60;
    --parchment-bg: #fdfdfd;
}

.premium-header {
    background: rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid var(--premium-gold);
}

/* Global Page Background */
.premium-layout {
    background-image: url('../images/bg-parchment.png');
    background-repeat: repeat;
    background-attachment: fixed;
    color: #333;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
}

/* Breadcrumbs */
.premium-breadcrumb {
    padding: 15px 0;
    font-size: 0.9rem;
    color: #666;
}

.premium-breadcrumb a {
    color: var(--premium-navy);
    text-decoration: none;
}

.premium-breadcrumb span {
    margin: 0 8px;
    opacity: 0.5;
}

/* Hero Section Enhancement */
.premium-hero {
    background-size: cover;
    background-position: center bottom;
    color: white;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.premium-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
}

.premium-hero .container {
    position: relative;
    z-index: 2;
}

.hero-feature-cards {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.hero-feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 12px;
    color: #333;
    flex: 1;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 5px solid var(--premium-gold);
}

.hero-feature-card i {
    font-size: 2.5rem;
    color: var(--premium-green);
    margin-bottom: 15px;
    display: block;
}

/* Section Styling */
.premium-section {
    padding: 80px 0;
    position: relative;
}

.section-title-premium {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--premium-navy);
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title-premium::after {
    content: '';
    display: block;
    width: 60%;
    height: 4px;
    background: var(--premium-gold);
    margin-top: 10px;
}

/* Capacity Section with Arrows */
.capacity-row-premium {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    flex-wrap: wrap;
    position: relative;
    padding: 20px 0;
}

.capacity-card-premium {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.capacity-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.capacity-card-header {
    background: #f8f9fa;
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.capacity-card-header h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--premium-navy);
}

.capacity-card-img {
    height: 180px;
    object-fit: cover;
    width: 100%;
    filter: brightness(0.95);
    transition: filter 0.3s ease;
}

.capacity-card-premium:hover .capacity-card-img {
    filter: brightness(1.1);
}

.capacity-card-body {
    padding: 30px 25px;
    font-size: 0.95rem;
}

/* Connecting Arrows for Capacity */
.capacity-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: 180px;
    /* Match image height for centering */
    align-self: flex-start;
    margin-top: 100px;
    /* Align with middle of the card approx */
    position: relative;
    z-index: 1;
}

.capacity-arrow i {
    font-size: 2.5rem;
    color: var(--premium-gold);
    opacity: 0.5;
    animation: slideRight 2s infinite;
}

.capacity-card-body ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.capacity-card-body ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
    color: #555;
    line-height: 1.4;
}

.capacity-card-body ul li::before {
    content: '\F272';
    /* Bootstrap icon check */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--premium-green);
    font-weight: 900;
}

@keyframes slideRight {
    0% {
        transform: translateX(0);
        opacity: 0.3;
    }

    50% {
        transform: translateX(10px);
        opacity: 1;
    }

    100% {
        transform: translateX(0);
        opacity: 0.3;
    }
}

/* Challenges Section (Image 2) */
.challenges-grid-premium {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.checklist-premium {
    list-style: none;
    padding: 0;
}

.checklist-premium li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.checklist-premium li i {
    color: var(--premium-green);
    font-size: 1.5rem;
    margin-right: 15px;
}

/* Button & CTA Styling */
.btn-premium-gold {
    background: linear-gradient(135deg, #f1c40f 0%, #d4ac0d 100%);
    border: none;
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 800;
    padding: 15px 40px;
    border-radius: 12px;
    text-transform: uppercase;
    box-shadow: 0 8px 15px rgba(241, 196, 15, 0.3);
    transition: all 0.3s ease;
}

.btn-premium-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(241, 196, 15, 0.4);
    color: #fff !important;
}

.btn-premium-gold:active {
    transform: translateY(1px);
}

.cta-box-premium {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.phone-badge {
    display: inline-block;
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid #eee;
    font-weight: 700;
    color: var(--premium-navy);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title-premium {
        font-size: 2rem;
    }

    .hero-feature-cards {
        flex-direction: column;
    }

    .capacity-arrow {
        display: none;
    }
}

/* Utilities */
.btn-xl {
    padding: 1.25rem 2.5rem !important;
    font-size: 1.2rem !important;
}

.ls-1 {
    letter-spacing: 1px;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

.transform-hover {
    transition: all 0.3s ease;
}

.transform-hover:hover {
    transform: translateY(-5px) scale(1.02);
}

.text-navy {
    color: var(--premium-navy) !important;
}