/* ═══════════════════════════════════════════════════════
   PAGES.CSS – About Us & Contact Us
   Shared styles for static pages (About, Contact)
   Prefix: pg- (pages)
   ════════════════════════════════════════════════════ */


/* ═════════ BASE PAGE ═════════ */
.pg-page {
    background: var(--theme-bg-white);
}

/* ═════════ HERO SECTION ═════════ */
.pg-hero {
    position: relative;
    height: 360px;
    background: linear-gradient(135deg, #1C3D3C 0%, #2a5654 60%, #1C3D3C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pg-hero-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.pg-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pg-hero-bg--gradient {
    background: linear-gradient(135deg, #1C3D3C 0%, #2a5654 60%, #1C3D3C 100%);
}

.pg-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(28, 61, 60, 0.6), rgba(28, 61, 60, 0.4));
    z-index: 2;
}

.pg-hero-overlay--light {
    background: linear-gradient(to bottom, rgba(28, 61, 60, 0.5), rgba(28, 61, 60, 0.3));
}

.pg-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #F5F2EC;
    max-width: 800px;
    padding: 2rem 1.5rem;
}

.pg-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.pg-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

/* ═════════ SECTIONS ═════════ */
.pg-section {
    padding: 5rem 0;
}

.pg-section--cream {
    background: var(--theme-bg);
}

.pg-section--teal {
    background: var(--theme-primary);
    color: var(--theme-bg-white);
}

.pg-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.pg-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--theme-primary);
    margin-bottom: 0.75rem;
}

.pg-section--teal .pg-label {
    color: var(--theme-accent);
}

.pg-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--theme-primary);
    margin: 0 0 1rem;
}

.pg-section--teal .pg-title {
    color: var(--theme-bg-white);
}

.pg-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--theme-text-light);
    margin: 0;
}

.pg-section--teal .pg-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

/* ═════════ ABOUT: INTRO GRID ═════════ */
.pg-about-intro {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: start;
}

.pg-about-intro-text {
    max-width: 640px;
}

.pg-prose {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--theme-text-dark);
}

.pg-prose p {
    margin: 0 0 1.25rem;
}

.pg-prose p:last-child {
    margin-bottom: 0;
}

.pg-about-intro-visual {
    position: sticky;
    top: 2rem;
}

.pg-about-stats-card {
    background: var(--theme-bg-white);
    border-radius: var(--theme-radius);
    box-shadow: var(--theme-shadow-lg);
    padding: 2.5rem 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.pg-stat {
    text-align: center;
}

.pg-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--theme-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pg-stat-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--theme-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ═════════ VALUES GRID ═════════ */
.pg-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.pg-value-card {
    background: var(--theme-bg-white);
    border-radius: var(--theme-radius);
    padding: 2rem 1.75rem;
    box-shadow: var(--theme-shadow);
    transition: transform var(--theme-transition), box-shadow var(--theme-transition);
}

.pg-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--theme-shadow-lg);
}

.pg-value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--theme-bg);
    color: var(--theme-primary);
    margin-bottom: 1.25rem;
}

.pg-value-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--theme-primary);
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.pg-value-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--theme-text-light);
    margin: 0;
}

/* ═════════ STEPS ═════════ */
.pg-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.pg-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--theme-bg-white);
    border-radius: var(--theme-radius);
    box-shadow: var(--theme-shadow);
}

.pg-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--theme-primary);
    color: var(--theme-bg-white);
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
}

.pg-step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--theme-primary);
    margin: 0 0 0.75rem;
}

.pg-step-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--theme-text-light);
    margin: 0;
}

.pg-step-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ═════════ CTA SECTION ═════════ */
.pg-cta-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.pg-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--theme-bg-white);
    margin: 0 0 1rem;
}

.pg-cta-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2rem;
}

.pg-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ═════════ BUTTONS ═════════ */
.pg-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--theme-transition);
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
}

.pg-btn--white {
    background: var(--theme-bg-white);
    color: var(--theme-primary);
}

.pg-btn--white:hover {
    background: var(--theme-bg);
    transform: translateY(-2px);
}

.pg-btn--outline-white {
    background: transparent;
    color: var(--theme-bg-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.pg-btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--theme-bg-white);
}

.pg-btn--white-small {
    background: var(--theme-bg-white);
    color: var(--theme-primary);
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

.pg-btn--white-small:hover {
    background: var(--theme-bg);
    transform: translateY(-2px);
}

/* ═════════ CONTACT CARDS (overlapping hero) ═════════ */
.pg-contact-cards-wrap {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    padding: 0 0 3rem;
}

.pg-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pg-contact-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--theme-bg-white);
    border-radius: var(--theme-radius);
    box-shadow: var(--theme-shadow-lg);
    padding: 2rem 1.75rem;
    transition: transform var(--theme-transition), box-shadow var(--theme-transition);
    text-decoration: none;
    color: inherit;
}

.pg-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(28, 61, 60, 0.16);
}

.pg-contact-card-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--theme-bg);
    color: var(--theme-primary);
}

.pg-contact-card-content {
    flex: 1;
}

.pg-contact-card-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--theme-primary);
    margin-bottom: 0.375rem;
}

.pg-contact-card-value {
    display: block;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--theme-primary);
    line-height: 1.4;
}

/* ═════════ CONTACT GRID (Form + Sidebar) ═════════ */
.pg-contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.pg-contact-form-wrap .pg-section-header {
    text-align: left;
    margin-bottom: 2rem;
}

/* ═════════ CONTACT FORM 7 STYLING ═════════ */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.wpcf7-form p {
    margin: 0;
}

.wpcf7-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--theme-primary);
    margin-bottom: 0.5rem;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--theme-border);
    border-radius: var(--theme-radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--theme-text-dark);
    transition: border-color var(--theme-transition);
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--theme-primary);
}

.wpcf7-form textarea {
    min-height: 140px;
    resize: vertical;
}

.wpcf7-form input[type="submit"] {
    align-self: flex-start;
    padding: 0.875rem 2.5rem;
    background: var(--theme-primary);
    color: var(--theme-bg-white);
    border: none;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--theme-transition);
}

.wpcf7-form input[type="submit"]:hover {
    background: #2a5654;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(28, 61, 60, 0.2);
}

.wpcf7-response-output {
    margin: 1rem 0 0;
    padding: 1rem;
    border-radius: var(--theme-radius-sm);
    font-size: 0.9375rem;
}

.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
    border: 2px solid #d9534f;
    background: #f9e6e6;
    color: #d9534f;
}

.wpcf7-mail-sent-ok {
    border: 2px solid #5cb85c;
    background: #e6f4e6;
    color: #5cb85c;
}

/* ═════════ SIDEBAR CARDS ═════════ */
.pg-contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pg-sidebar-card {
    background: var(--theme-bg-white);
    border-radius: var(--theme-radius);
    box-shadow: var(--theme-shadow);
    padding: 2rem 1.75rem;
}

.pg-sidebar-card--teal {
    background: var(--theme-primary);
    color: var(--theme-bg-white);
}

.pg-sidebar-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--theme-bg);
    color: var(--theme-primary);
    margin-bottom: 1rem;
}

.pg-sidebar-card--teal .pg-sidebar-card-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--theme-bg-white);
}

.pg-sidebar-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--theme-primary);
    margin: 0 0 1rem;
}

.pg-sidebar-card--teal .pg-sidebar-card-title {
    color: var(--theme-bg-white);
}

.pg-sidebar-card-content {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--theme-text-dark);
}

.pg-sidebar-card--teal .pg-sidebar-card-content {
    color: rgba(255, 255, 255, 0.9);
}

.pg-sidebar-card-content p {
    margin: 0 0 0.75rem;
}

.pg-sidebar-card-content p:last-child {
    margin-bottom: 0;
}

.pg-sidebar-note {
    font-size: 0.8125rem;
    color: var(--theme-text-light);
    font-style: italic;
}

.pg-sidebar-card--teal .pg-sidebar-note {
    color: rgba(255, 255, 255, 0.7);
}

/* ═════════ SOCIAL LINKS ═════════ */
.pg-social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.pg-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--theme-bg);
    color: var(--theme-primary);
    transition: all var(--theme-transition);
    text-decoration: none;
}

.pg-social-link:hover {
    background: var(--theme-primary);
    color: var(--theme-bg-white);
    transform: translateY(-2px);
}

/* ═════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ════════════════════════════════════════════════════ */

/* ═════════ TABLET LANDSCAPE (≤1024px) ═════════ */
@media (max-width: 1024px) {
    .pg-section {
        padding: 4rem 0;
    }

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

    .pg-about-intro-visual {
        position: static;
    }

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

    .pg-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pg-step-divider {
        display: none;
    }

    .pg-contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ═════════ TABLET PORTRAIT (≤768px) ═════════ */
@media (max-width: 768px) {
    .pg-hero {
        height: 280px;
    }

    .pg-section {
        padding: 3rem 0;
    }

    .pg-section-header {
        margin-bottom: 2rem;
    }

    .pg-about-stats-card {
        gap: 1.5rem;
    }

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

    .pg-values-grid {
        gap: 1.5rem;
    }

    .pg-contact-cards-wrap {
        margin-top: -60px;
        padding-bottom: 2rem;
    }

    .pg-contact-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pg-contact-card {
        padding: 1.5rem 1.25rem;
    }

    .pg-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .pg-btn {
        justify-content: center;
    }
}

/* ═════════ MOBILE (≤480px) ═════════ */
@media (max-width: 480px) {
    .pg-hero {
        height: 180px;
    }

    .pg-hero-content {
        padding: 1.5rem 1rem;
    }

    .pg-section {
        padding: 2.5rem 0;
    }

    .pg-about-stats-card {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .pg-values-grid {
        grid-template-columns: 1fr;
    }

    .pg-value-card,
    .pg-step,
    .pg-sidebar-card {
        padding: 1.5rem 1.25rem;
    }

    .pg-contact-cards-wrap {
        margin-top: -40px;
    }

    .pg-contact-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .pg-social-links {
        justify-content: center;
    }
}


/* ═══════════════════════════════════════════════════════
   COUNTRIES PAGE
   Prefix: ct- (countries)
   ════════════════════════════════════════════════════ */

/* ═════════ PAGE ═════════ */
.ct-page {
    background: #fff;
}

/* ═════════ HERO ═════════ */
.ct-hero {
    position: relative;
    height: 360px;
    background: linear-gradient(135deg, #1C3D3C 0%, #2a5654 60%, #1C3D3C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ct-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 85%, rgba(136,123,99,0.12) 0%, transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(136,123,99,0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.ct-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.06;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,0.03) 35px, rgba(255,255,255,0.03) 36px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255,255,255,0.03) 35px, rgba(255,255,255,0.03) 36px);
}

.ct-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #F5F2EC;
    max-width: 700px;
    padding: 2rem 1.5rem;
}

.ct-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.02em;
}

.ct-hero-ornament {
    display: block;
    width: 60px;
    height: 2px;
    background: #887B63;
    margin: 1rem auto;
    opacity: 0.7;
    border-radius: 1px;
}

.ct-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.6;
    margin: 0;
    opacity: 0.85;
}

.ct-hero-subtitle p {
    margin: 0;
}

/* ═════════ STATS BAR ═════════ */
.ct-stats {
    background: var(--theme-bg-light);
    border-bottom: 1px solid rgba(136,123,99,0.12);
}

.ct-stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 1.75rem 0;
}

.ct-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.ct-stat-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--theme-primary);
    line-height: 1.1;
}

.ct-stat-label {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--theme-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ct-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(136,123,99,0.25);
}

/* ═════════ SECTION HEADER ═════════ */
.ct-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.ct-section-label {
    display: inline-block;
    font-family: 'Inter', 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--theme-primary);
    margin-bottom: 0.5rem;
}

.ct-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: var(--theme-primary);
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.ct-section-subtitle {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--theme-text-dark);
    margin: 0;
}

/* ═════════ CONTENT ═════════ */
.ct-content {
    padding: 3.5rem 0 4.5rem;
}

/* ═════════ GRID ═════════ */
.ct-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

/* ═════════ CARD (image overlay style) ═════════ */
/* Scoped under .ct-page for specificity over a{color} in main.css */
.ct-page a.ct-card {
    position: relative;
    display: block;
    border-radius: 0.75rem;
    overflow: hidden;
    height: 340px;
    text-decoration: none;
    color: #fff;
    background: #1C3D3C;
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease;
}

.ct-page a.ct-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #887B63, #c4b697);
    z-index: 3;
    transition: width 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

.ct-page a.ct-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(28,61,60,0.18), 0 4px 12px rgba(28,61,60,0.08);
    color: #fff;
    text-decoration: none;
}

.ct-page a.ct-card:hover::after {
    width: 100%;
}

.ct-page .ct-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.ct-page a.ct-card:hover .ct-card-img {
    transform: scale(1.08);
}

.ct-page .ct-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(28, 61, 60, 0.88) 0%,
        rgba(28, 61, 60, 0.45) 35%,
        rgba(28, 61, 60, 0.1) 65%,
        transparent 100%
    );
    z-index: 1;
    transition: opacity 0.4s ease;
}

.ct-page a.ct-card:hover .ct-card-overlay {
    opacity: 0.92;
}

.ct-page .ct-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem;
    z-index: 2;
}

.ct-page .ct-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.625rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.ct-page .ct-card-count {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    padding: 0.3rem 0.85rem;
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0.5rem;
}

.ct-page .ct-card-count svg {
    width: 13px;
    height: 13px;
    opacity: 0.85;
    flex-shrink: 0;
}

/* ═════════ HOVER ARROW ═════════ */
.ct-page .ct-card-arrow {
    position: absolute;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.35s ease, transform 0.35s ease, background 0.35s ease;
}

.ct-page a.ct-card:hover .ct-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.ct-page .ct-card-arrow svg {
    width: 18px;
    height: 18px;
}

/* ═════════ CITIES LIST ═════════ */
.ct-page .ct-card-cities {
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* ═════════ FEATURED CARD ═════════ */
.ct-page a.ct-card--featured {
    grid-column: span 2;
    height: 440px;
}

.ct-page .ct-card--featured .ct-card-title {
    font-size: 2.25rem;
}

.ct-page .ct-card--featured .ct-card-count {
    font-size: 0.875rem;
    padding: 0.35rem 1rem;
}

.ct-page .ct-card--featured .ct-card-cities {
    font-size: 0.9375rem;
}

/* ═════════ PROSE ═════════ */
.ct-prose {
    max-width: 800px;
    margin: 3rem auto 0;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--theme-text-dark);
}

.ct-prose p {
    margin: 0 0 1.25rem;
}

/* ═════════ COUNTRIES RESPONSIVE ═════════ */
@media (max-width: 1024px) {
    .ct-page a.ct-card--featured {
        grid-column: span 1;
        height: 340px;
    }

    .ct-page .ct-card--featured .ct-card-title {
        font-size: 1.625rem;
    }
}

@media (max-width: 768px) {
    .ct-hero {
        height: 280px;
    }

    .ct-stats-inner {
        gap: 1.5rem;
        padding: 1.25rem 0;
    }

    .ct-stat-value {
        font-size: 1.5rem;
    }

    .ct-stat-label {
        font-size: 0.75rem;
    }

    .ct-stat-divider {
        height: 24px;
    }

    .ct-content {
        padding: 2.5rem 0 3rem;
    }

    .ct-section-header {
        margin-bottom: 2rem;
    }

    .ct-section-title {
        font-size: 1.625rem;
    }

    .ct-grid {
        gap: 1rem;
    }

    .ct-page a.ct-card {
        height: 280px;
    }

    .ct-page .ct-card-title {
        font-size: 1.375rem;
    }

    .ct-page .ct-card-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .ct-hero {
        height: 180px;
    }

    .ct-hero-title {
        font-size: 1.875rem;
    }

    .ct-stats-inner {
        gap: 1rem;
    }

    .ct-stat-value {
        font-size: 1.25rem;
    }

    .ct-page a.ct-card {
        height: 260px;
    }

    .ct-page .ct-card-content {
        padding: 1.25rem;
    }

    .ct-page .ct-card-title {
        font-size: 1.25rem;
    }
}


/* ═══════════════════════════════════════════════════════
   BLOG CATEGORY PAGE
   Prefix: bl- (blog)
   ════════════════════════════════════════════════════ */

/* ═════════ PAGE ═════════ */
.bl-page {
    background: var(--theme-bg-light);
}

/* ═════════ HERO ═════════ */
.bl-hero {
    position: relative;
    height: 360px;
    background: linear-gradient(135deg, #1C3D3C 0%, #2a5654 60%, #1C3D3C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bl-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 30% 70%, rgba(136,123,99,0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(136,123,99,0.1) 0%, transparent 50%);
}

.bl-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #F5F2EC;
    max-width: 700px;
    padding: 2rem 1.5rem;
}

.bl-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.bl-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* ═════════ CONTENT ═════════ */
.bl-content {
    padding: 3rem 0 4rem;
}

/* ═════════ GRID ═════════ */
.bl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ═════════ CARD ═════════ */
.bl-card {
    background: var(--theme-bg-white);
    border-radius: var(--theme-radius);
    box-shadow: var(--theme-shadow);
    overflow: hidden;
    transition: transform var(--theme-transition), box-shadow var(--theme-transition);
}

.bl-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--theme-shadow-lg);
}

.bl-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* ═════════ CARD IMAGE ═════════ */
.bl-card-image-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.bl-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bl-card:hover .bl-card-image-wrap img {
    transform: scale(1.05);
}

.bl-card-date {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--theme-primary);
    background: rgba(245, 242, 236, 0.92);
    backdrop-filter: blur(6px);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
}

/* ═════════ CARD BODY ═════════ */
.bl-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.bl-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--theme-primary);
    margin: 0 0 0.5rem;
}

.bl-card-excerpt {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--theme-text-light);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bl-card-excerpt p {
    margin: 0;
}

/* ═════════ PAGINATION ═════════ */
.bl-pagination {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--theme-border);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.bl-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.5rem;
    border-radius: 2rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--theme-text-dark);
    text-decoration: none;
    transition: all var(--theme-transition);
}

.bl-pagination .page-numbers:hover {
    background: var(--theme-bg);
    color: var(--theme-primary);
}

.bl-pagination .page-numbers.current {
    background: var(--theme-primary);
    color: var(--theme-bg-white);
    font-weight: 600;
}

.bl-pagination .page-numbers.prev,
.bl-pagination .page-numbers.next {
    font-weight: 600;
    color: var(--theme-primary);
    padding: 0 1rem;
}

.bl-pagination .page-numbers.prev:hover,
.bl-pagination .page-numbers.next:hover {
    background: var(--theme-primary);
    color: var(--theme-bg-white);
}

.bl-pagination ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.bl-pagination li {
    display: inline-flex;
}

/* ═════════ NO RESULTS ═════════ */
.bl-no-results {
    text-align: center;
    font-size: 1.125rem;
    color: var(--theme-text-light);
    padding: 4rem 0;
}

/* ═════════ BLOG RESPONSIVE ═════════ */
@media (max-width: 1024px) {
    .bl-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bl-hero {
        height: 280px;
    }

    .bl-content {
        padding: 2rem 0 3rem;
    }

    .bl-grid {
        gap: 1rem;
    }

    .bl-card-body {
        padding: 1rem 1.25rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .bl-hero {
        height: 180px;
    }
}

@media (max-width: 580px) {
    .bl-grid {
        grid-template-columns: 1fr;
    }

    .bl-pagination {
        flex-wrap: wrap;
    }
}


/* ═══════════════════════════════════════════════════════
   BLOG POST (Single Article)
   Prefix: bp- (blog post)
   ════════════════════════════════════════════════════ */

/* ═════════ HERO META ═════════ */
.bp-hero-ornament {
    display: block;
    width: 50px;
    height: 2px;
    background: #887B63;
    margin: 0.75rem auto;
    opacity: 0.7;
    border-radius: 1px;
}

.bp-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    opacity: 0.85;
}

.bp-meta time {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.bp-meta svg {
    opacity: 0.7;
}

.bp-meta-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(245, 242, 236, 0.5);
}

.bp-meta-category {
    color: #c4b697;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease;
}

.bp-meta-category:hover {
    color: var(--theme-primary);
}

/* ═════════ ARTICLE WRAPPER ═════════ */
.bp-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem 0 3.5rem;
}

/* ═════════ FEATURED IMAGE ═════════ */
.bp-featured {
    margin: 0 0 2.5rem;
    border-radius: var(--theme-radius);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(28, 61, 60, 0.1);
}

.bp-featured img {
    display: block;
    width: 100%;
    height: auto;
}

/* ═════════ CONTENT TYPOGRAPHY ═════════ */
.bp-content {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--theme-text-dark);
}

.bp-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--theme-primary);
    margin: 2.5rem 0 1rem;
    line-height: 1.3;
}

.bp-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--theme-primary);
    margin: 2rem 0 0.75rem;
    line-height: 1.35;
}

.bp-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--theme-primary);
    margin: 1.5rem 0 0.5rem;
}

.bp-content p {
    margin: 0 0 1.25rem;
}

.bp-content a {
    color: var(--theme-primary);
    text-decoration: underline;
    text-decoration-color: rgba(28, 61, 60, 0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.25s ease;
}

.bp-content a:hover {
    text-decoration-color: var(--theme-primary);
}

.bp-content ul,
.bp-content ol {
    margin: 0 0 1.25rem;
    padding-left: 1.5rem;
}

.bp-content li {
    margin-bottom: 0.5rem;
}

.bp-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--theme-radius);
    margin: 1.5rem 0;
}

.bp-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 1.75rem;
    border-left: 3px solid var(--theme-accent);
    background: var(--theme-bg);
    border-radius: 0 var(--theme-radius-sm) var(--theme-radius-sm) 0;
    font-style: italic;
    color: var(--theme-text-light);
    font-size: 1.125rem;
    line-height: 1.75;
}

.bp-content blockquote p:last-child {
    margin-bottom: 0;
}

.bp-content hr {
    border: none;
    border-top: 1px solid var(--theme-border);
    margin: 2.5rem 0;
}

.bp-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.bp-content th,
.bp-content td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--theme-border);
    text-align: left;
}

.bp-content th {
    background: var(--theme-bg);
    font-weight: 600;
    color: var(--theme-primary);
}

/* ═════════ BLOG POST RESPONSIVE ═════════ */
@media (max-width: 768px) {
    .bp-article {
        padding: 2rem 0 3rem;
    }

    .bp-featured {
        margin-bottom: 2rem;
    }

    .bp-content {
        font-size: 1rem;
    }

    .bp-content h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .bp-content h3 {
        font-size: 1.25rem;
    }

    .bp-content blockquote {
        padding: 1.25rem 1.25rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .bp-article {
        padding: 1.5rem 0 2.5rem;
    }

    .bp-featured {
        margin-bottom: 1.5rem;
        border-radius: var(--theme-radius-sm);
    }

    .bp-meta {
        font-size: 0.8125rem;
    }
}


/* ═══════════════════════════════════════════════════════
   GENERIC PAGE (Privacy Policy, Terms, etc.)
   Prefix: gp- (generic-page)
   ════════════════════════════════════════════════════ */

/* ═════════ PAGE ═════════ */
.gp-page {
    background: var(--theme-bg-white);
}

/* ═════════ HERO ═════════ */
.gp-hero {
    position: relative;
    height: 360px;
    background: linear-gradient(135deg, #1C3D3C 0%, #2a5654 60%, #1C3D3C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gp-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 25% 75%, rgba(136,123,99,0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(136,123,99,0.08) 0%, transparent 50%);
}

.gp-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #F5F2EC;
    max-width: 700px;
    padding: 2rem 1.5rem;
}

.gp-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.02em;
}

/* ═════════ CONTENT ═════════ */
.gp-content {
    padding: 3rem 0 4rem;
}

/* ═════════ PROSE ═════════ */
.gp-prose {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--theme-text-dark);
}

.gp-prose h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--theme-primary);
    margin: 2.5rem 0 1rem;
    line-height: 1.3;
}

.gp-prose h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--theme-primary);
    margin: 2rem 0 0.75rem;
    line-height: 1.35;
}

.gp-prose h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--theme-primary);
    margin: 1.5rem 0 0.5rem;
}

.gp-prose p {
    margin: 0 0 1.25rem;
}

.gp-prose a {
    color: var(--theme-primary);
    text-decoration: underline;
    text-decoration-color: rgba(28, 61, 60, 0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.25s ease;
}

.gp-prose a:hover {
    text-decoration-color: var(--theme-primary);
}

.gp-prose ul,
.gp-prose ol {
    margin: 0 0 1.25rem;
    padding-left: 1.5rem;
}

.gp-prose li {
    margin-bottom: 0.5rem;
}

.gp-prose blockquote {
    margin: 1.5rem 0;
    padding: 1.25rem 1.5rem;
    border-left: 3px solid var(--theme-accent);
    background: var(--theme-bg);
    border-radius: 0 var(--theme-radius-sm) var(--theme-radius-sm) 0;
    font-style: italic;
    color: var(--theme-text-light);
}

.gp-prose blockquote p:last-child {
    margin-bottom: 0;
}

.gp-prose img {
    max-width: 100%;
    height: auto;
    border-radius: var(--theme-radius);
}

.gp-prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.gp-prose th,
.gp-prose td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--theme-border);
    text-align: left;
}

.gp-prose th {
    background: var(--theme-bg);
    font-weight: 600;
    color: var(--theme-primary);
}

.gp-prose hr {
    border: none;
    border-top: 1px solid var(--theme-border);
    margin: 2rem 0;
}

/* ═════════ SECTION DIVIDERS (h2) ═════════ */
.gp-prose h2 {
    padding-top: 2.5rem;
    border-top: 2px solid var(--theme-border);
}

.gp-prose h2:first-child {
    border-top: none;
    padding-top: 0;
}

/* ═════════ STRONG / BOLD ═════════ */
.gp-prose strong,
.gp-prose b {
    color: var(--theme-primary);
    font-weight: 600;
}

/* ═════════ LISTS (gold markers) ═════════ */
.gp-prose ul {
    list-style: none;
    padding-left: 1.25rem;
}

.gp-prose ul li {
    position: relative;
    padding-left: 1rem;
}

.gp-prose ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--theme-accent);
}

/* ═════════ PRIVACY POLICY SUGGESTED TEXT ═════════ */
.gp-prose .privacy-policy-tutorial {
    background: var(--theme-bg);
    border-left: 3px solid var(--theme-accent);
    padding: 1rem 1.25rem;
    border-radius: 0 var(--theme-radius-sm) var(--theme-radius-sm) 0;
    font-size: 0.975rem;
    color: var(--theme-text-light);
}

/* ═════════ GENERIC PAGE RESPONSIVE ═════════ */
@media (max-width: 768px) {
    .gp-hero {
        height: 280px;
    }

    .gp-content {
        padding: 2rem 0 3rem;
    }

    .gp-prose {
        font-size: 1rem;
    }

    .gp-prose h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .gp-prose h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .gp-hero {
        height: 180px;
    }
}
