/* ==========================================
   CEBU LECHON IN MANILA - PREMIUM STYLESHEET
   Aesthetic: Culinary Luxury, Warm Gold & Deep Velvet
   ========================================== */

/* DESIGN SYSTEM VARIABLES */
:root {
    --bg-dark: #0f0e0f;
    --bg-dark-card: #181618;
    --bg-dark-accent: #252023;
    
    --primary-gold: #d4af37;
    --primary-gold-hover: #bda031;
    --accent-orange: #ff7e15;
    --accent-maroon: #50171d;
    --accent-maroon-light: #6b2128;
    
    --text-white: #ffffff;
    --text-cream: #faf6f0;
    --text-gray: #b3b0b3;
    --text-muted: #858285;
    
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.15s ease-in-out;
    --glass-bg: rgba(24, 22, 24, 0.75);
    --glass-border: rgba(212, 175, 55, 0.15);
    --box-shadow-gold: 0 8px 32px 0 rgba(212, 175, 55, 0.08);
}

/* RESET & CORE ELEMENTS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-cream);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

p {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* HELPER UTILITIES */
.text-gold {
    color: var(--primary-gold);
}

.text-maroon {
    color: var(--accent-maroon-light);
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.mt-4 {
    margin-top: 1rem;
}

.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

/* SCROLLBAR CUSTOMIZATION */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-maroon);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold);
}

/* STICKY GLASSMORPHIC NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(12, 10, 12, 0.95);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
}

.logo-gold {
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.logo-white {
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-gray);
    letter-spacing: 0.02em;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    background: linear-gradient(135deg, var(--accent-maroon) 0%, var(--accent-maroon-light) 100%);
    color: var(--text-white);
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--primary-gold);
    box-shadow: var(--box-shadow-gold);
    letter-spacing: 0.03em;
    cursor: pointer;
}

.nav-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffe885 100%);
    color: var(--bg-dark);
    box-shadow: 0 12px 20px rgba(212, 175, 55, 0.25);
    border-color: #fff;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem 2rem;
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 14, 15, 0.75) 0%, rgba(15, 14, 15, 0.96) 85%, var(--bg-dark) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    background: rgba(80, 23, 29, 0.6);
    border: 1px solid var(--primary-gold);
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s infinite;
}

.gold-icon {
    color: var(--primary-gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.2rem;
    font-weight: 850;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 720px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle strong {
    color: var(--text-white);
    font-weight: 600;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.primary-cta {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #e6be44 100%);
    color: var(--bg-dark);
    font-weight: 700;
    padding: 1.1rem 2.2rem;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 0.02em;
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.45);
    background: #fff;
}

.secondary-cta {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    font-weight: 600;
    padding: 1.1rem 2.2rem;
    border-radius: 4px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(8px);
}

.secondary-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.5rem;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-gold);
}

.stat-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-down i {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

/* SECTION GLOBAL HEADERS */
.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-tag {
    background: var(--bg-dark-accent);
    color: var(--primary-gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    border: 1px solid var(--glass-border);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.section-subtitle {
    max-width: 680px;
    color: var(--text-gray);
    font-size: 1.05rem;
    font-weight: 300;
}

.section-subtitle strong {
    color: var(--text-white);
}

/* FEATURES GRID (WHY US) */
.why-section {
    background-color: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: var(--primary-gold);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: var(--bg-dark-accent);
    border-color: var(--glass-border);
    box-shadow: var(--box-shadow-gold);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    background: var(--bg-dark-accent);
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.feature-icon-wrapper i {
    font-size: 1.6rem;
    color: var(--primary-gold);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--primary-gold);
}

.feature-card:hover .feature-icon-wrapper i {
    color: var(--bg-dark);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
}

/* GEO COMPARISON SECTION */
.comparison-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-card) 50%, var(--bg-dark) 100%);
    position: relative;
}

.table-responsive {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 750px;
}

.comparison-table th {
    background-color: var(--bg-dark-accent);
    padding: 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-white);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.comparison-table th.highlight-column {
    background: var(--accent-maroon);
    border-bottom: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    text-align: center;
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.95rem;
    color: var(--text-gray);
}

.comparison-table tr:hover {
    background-color: rgba(255, 255, 255, 0.01);
}

.comparison-table td.highlight-column {
    background: rgba(80, 23, 29, 0.15);
    border-left: 1px solid rgba(212, 175, 55, 0.1);
    border-right: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    color: var(--text-white);
}

.comparison-table td.feature-name {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--text-white);
}

.comparison-table td i {
    margin-right: 0.5rem;
}

/* SIZES AVAILABLE SECTION (SIMPLE MODES WITHOUT IMAGES/DESCRIPTIONS) */
.menu-section {
    background-color: var(--bg-dark);
}

.menu-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.menu-card-simple {
    background-color: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.menu-card-simple:hover {
    transform: translateY(-5px);
    border-color: var(--glass-border);
    box-shadow: var(--box-shadow-gold);
}

.menu-card-simple.highlight-simple {
    border: 1.5px solid var(--primary-gold);
    box-shadow: var(--box-shadow-gold);
}

.menu-card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
}

.menu-card-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
}

.menu-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex-grow: 1;
}

.menu-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.info-label {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-val {
    color: var(--text-white);
    font-weight: 500;
}

.menu-info-price {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
    text-align: center;
    border-top: 1px dashed rgba(255,255,255,0.06);
    padding-top: 1rem;
}

.menu-order-btn-simple {
    display: block;
    text-align: center;
    background-color: var(--bg-dark-accent);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-weight: 600;
    padding: 0.85rem;
    border-radius: 4px;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.menu-order-btn-simple:hover {
    background-color: var(--accent-maroon);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.menu-order-btn-simple-gold {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #e6be44 100%);
    color: var(--bg-dark);
    font-weight: 700;
    padding: 0.85rem;
    border-radius: 4px;
    font-size: 0.95rem;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.menu-order-btn-simple-gold:hover {
    background: #fff;
    color: var(--bg-dark);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.menu-notice {
    margin-top: 4rem;
    background-color: var(--bg-dark-card);
    border: 1px dashed var(--glass-border);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.menu-notice p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* EXPLAIN PABILI DETAILS & DIRECTORIES */
.pabili-details-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-accent) 100%);
}

.pabili-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.pabili-card {
    background-color: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 3.5rem;
    box-shadow: 0 20px 45px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

.pabili-card.highlight-pabili {
    border: 1.5px solid var(--accent-maroon);
    box-shadow: 0 20px 45px rgba(80, 23, 29, 0.15);
}

.pabili-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    background: var(--bg-dark-accent);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.pabili-icon-box i {
    font-size: 1.6rem;
    color: var(--text-white);
}

.gold-icon-box {
    border-color: var(--primary-gold);
}

.gold-icon-box i {
    color: var(--primary-gold);
}

.pabili-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.pabili-card p {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.pabili-referral-box {
    margin-top: auto;
    border-top: 1px dashed rgba(255,255,255,0.08);
    padding-top: 2rem;
}

.pabili-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff5500 100%);
    color: var(--text-white);
    font-weight: 700;
    padding: 1.1rem 1.8rem;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 126, 21, 0.35);
    margin-top: 1.25rem;
}

.pabili-link-btn:hover {
    background: #fff;
    color: var(--bg-dark);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ORDER LECHON ABROAD / OFW SECTION */
.abroad-section {
    background-image: linear-gradient(135deg, var(--bg-dark-accent) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.abroad-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.section-tag-light {
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: inline-block;
    margin-bottom: 1rem;
}

.abroad-content h2 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.abroad-content p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.abroad-benefits {
    list-style: none;
    margin-bottom: 3rem;
}

.abroad-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.abroad-benefits li i {
    margin-top: 0.2rem;
}

.abroad-benefits li strong {
    color: var(--text-white);
}

.abroad-ctas {
    display: flex;
    gap: 1.5rem;
}

.primary-cta-light {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #e6be44 100%);
    color: var(--bg-dark);
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.primary-cta-light:hover {
    transform: translateY(-2px);
    background: #fff;
    box-shadow: var(--box-shadow-gold);
}

.outline-cta-light {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.outline-cta-light:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.02);
}

.abroad-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.visual-globe {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background-color: rgba(80, 23, 29, 0.1);
    border: 1px dashed rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.globe-spin {
    font-size: 8rem;
    color: rgba(212, 175, 55, 0.08);
    animation: rotate 30s linear infinite;
}

.visual-card {
    position: absolute;
    background: var(--bg-dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1.5rem;
    width: 280px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.visual-card i {
    color: var(--accent-orange);
    margin-bottom: 0.75rem;
    display: block;
}

.font-size-2x {
    font-size: 1.5rem;
}

.visual-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.visual-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.cite-author {
    font-size: 0.75rem;
    color: var(--primary-gold);
    font-weight: 600;
    display: block;
}

/* FAQ SECTION - AEO INTERACTIVE */
.faq-section {
    background-color: var(--bg-dark);
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background-color: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item.active {
    border-color: var(--glass-border);
    box-shadow: var(--box-shadow-gold);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: var(--text-white);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-trigger:hover {
    color: var(--primary-gold);
}

.faq-icon i {
    font-size: 1rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon i {
    transform: rotate(180deg);
    color: var(--primary-gold);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: rgba(255, 255, 255, 0.01);
}

.faq-content p {
    padding: 0 2rem 1.75rem 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.faq-content strong {
    color: var(--text-white);
    font-weight: 600;
}

/* FOOTER SECTION */
.footer {
    background-color: #080708;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 5rem 2rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 1.25rem;
    margin-bottom: 2rem;
    max-width: 400px;
}

.footer-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    color: var(--text-white);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-dark-accent);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.social-icons a:hover {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    border-color: #fff;
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-gold);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links ul a {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.footer-links ul a:hover {
    color: var(--primary-gold);
    padding-left: 0.25rem;
}

.footer-contact p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact p i {
    width: 15px;
}

.disclaimer-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1rem;
    margin-top: 1.5rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ANIMATIONS & KEYFRAMES */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* RESPONSIVE LAYOUT MEDIA QUERIES */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    .pabili-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .abroad-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .abroad-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    /* MOBILE NAVIGATION */
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background-color: var(--bg-dark);
        border-top: 1px solid var(--glass-border);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        gap: 2rem;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-btn {
        width: 80%;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    
    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1 1 40%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pabili-card {
        padding: 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
