/**
 * MOCBT Travel & Tour - Navy & Gold Premium Design
 * Professional, Corporate, Modern
 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

 :root {
    --navy: #0a1628;
    --navy-light: #132337;
    --navy-mid: #1e3a5f;
    --gold: #c9a227;
    --gold-light: #e4bc4d;
    --gold-dark: #a68521;
    --primary: #0a1628;
    --primary-dark: #060d18;
    --accent: #c9a227;
    --success: #10b981;
    --white: #ffffff;
    --grey: #64748b;
    --grey-light: #f1f5f9;
    --gradient-hero: linear-gradient(135deg, #0a1628 0%, #132337 40%, #1e3a5f 100%);
    --gradient-gold: linear-gradient(135deg, #c9a227 0%, #e4bc4d 100%);
    --gradient-overlay: linear-gradient(180deg, transparent 0%, rgba(10,22,40,0.7) 100%);
    --shadow-sm: 0 2px 12px rgba(10,22,40,0.08);
    --shadow-md: 0 8px 30px rgba(10,22,40,0.12);
    --shadow-lg: 0 16px 48px rgba(10,22,40,0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #334155;
    background: #fff;
    overflow-x: hidden;
}

.text-gold { color: var(--gold) !important; }
.bg-navy { background: var(--navy) !important; }
.bg-gold { background: var(--gold) !important; }

/* Header - Navy & Gold */
.mocbt-header {
    background: var(--gradient-hero);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,162,39,0.15);
}
.mocbt-header .navbar {
    padding: 0.85rem 0;
}
.mocbt-header .navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff !important;
}
.navbar-logo {
    max-height: 60px;
    object-fit: contain;
    background: transparent;
}
.mocbt-header .navbar-brand img { max-height: 60px; }
.mocbt-header .brand-gold {
    color: var(--gold-light) !important;
    -webkit-text-fill-color: unset;
    background: none;
}
.mocbt-header .nav-link {
    color: rgba(255,255,255,0.92) !important;
    padding: 0.6rem 1rem !important;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.25s ease;
}
.mocbt-header .nav-link:hover {
    color: var(--gold-light) !important;
    background: rgba(201,162,39,0.12);
}
.mocbt-header .nav-link i { opacity: 0.9; }

@media (max-width: 767.98px) {
    .mocbt-header .navbar-brand .brand-gold {
        display: none;
    }
    .navbar-logo,
    .mocbt-header .navbar-brand img {
        max-height: 44px;
    }
}

/* Navigation Dropdowns - Professional Styling */
.mocbt-header .dropdown-toggle::after {
    display: none;
}
.mocbt-header .dropdown-menu {
    background: rgba(10,22,40,0.98);
    border: 1px solid rgba(201,162,39,0.2);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 220px;
    backdrop-filter: blur(10px);
}
.mocbt-header .dropdown-item {
    color: rgba(255,255,255,0.9);
    padding: 0.65rem 1.25rem;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}
.mocbt-header .dropdown-item:hover {
    background: rgba(201,162,39,0.15);
    color: var(--gold-light);
    border-left-color: var(--gold);
    padding-left: 1.5rem;
}
.mocbt-header .dropdown-item i {
    width: 20px;
    text-align: center;
    font-size: 0.9rem;
}
.mocbt-header .dropdown-divider {
    border-color: rgba(201,162,39,0.2);
    margin: 0.5rem 0;
}
.mocbt-header .dropdown-toggle[aria-expanded="true"] {
    color: var(--gold-light) !important;
    background: rgba(201,162,39,0.15);
}
.mocbt-header .dropdown-toggle[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}
.mocbt-header .dropdown-toggle .fa-chevron-down {
    transition: transform 0.25s ease;
    display: inline-block;
}
.mocbt-header .navbar-nav .btn {
    margin-left: 0.5rem;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    border-radius: 8px;
}
.mocbt-header .navbar-nav .btn-gold {
    background: var(--gradient-gold);
    color: var(--navy) !important;
    border: none;
}
.mocbt-header .navbar-nav .btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201,162,39,0.4);
}

/* Mobile Navigation Adjustments */
@media (max-width: 991.98px) {
    .mocbt-header .dropdown-menu {
        background: rgba(10,22,40,0.95);
        border-radius: 8px;
        margin-top: 0.25rem;
    }
    .mocbt-header .navbar-nav {
        padding-top: 1rem;
    }
    .mocbt-header .navbar-nav .btn {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
    }
}

/* Hero - Navy & Gold */
.mocbt-hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.mocbt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(201,162,39,0.12) 0%, transparent 55%);
    pointer-events: none;
}
.mocbt-hero .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.28;
    transition: opacity 0.5s ease;
}
.mocbt-hero .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
}
.mocbt-hero .hero-content { position: relative; z-index: 2; }
.mocbt-hero h1 {
    font-size: 3.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
@media (min-width: 768px) {
    .mocbt-hero h1 { font-size: 3.75rem; }
}
.mocbt-hero .lead {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 520px;
    line-height: 1.5;
}
@media (max-width: 767.98px) {
    .mocbt-hero {
        min-height: 75vh;
        align-items: flex-end;
    }
    .mocbt-hero h1 {
        font-size: 2rem;
    }
    .mocbt-hero .lead {
        font-size: 1rem;
        max-width: 100%;
    }
}
.mocbt-hero .btn-gold,
.mocbt-hero .btn {
    padding: 0.9rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    background: var(--gradient-gold);
    color: var(--navy) !important;
    box-shadow: 0 4px 20px rgba(201,162,39,0.35);
    transition: all 0.3s ease;
}
.mocbt-hero .btn-gold:hover,
.mocbt-hero .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201,162,39,0.45);
    color: var(--navy) !important;
    background: var(--gold-light);
}
.hero-carousel-controls {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 10;
}
.hero-carousel-controls .btn {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.hero-carousel-controls .btn:hover {
    background: rgba(255,255,255,0.3);
    color: #fff;
    border-color: #fff;
}

/* Cards - Premium */
.mocbt-card {
    border: none;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    overflow: hidden;
}
.mocbt-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.mocbt-card .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.mocbt-card:hover .card-img-top {
    transform: scale(1.05);
}
.mocbt-card .card-body { padding: 1.5rem; }
.mocbt-card .card-title { font-weight: 700; font-size: 1.15rem; color: #1e293b; }
.mocbt-card .badge-gold {
    background: var(--gradient-gold);
    color: var(--navy);
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-weight: 600;
}
.mocbt-card .btn-outline-dark {
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}
.mocbt-card .btn-outline-dark:hover {
    background: var(--navy);
    color: #fff !important;
    border-color: var(--navy);
}
.mocbt-card .text-gold, .mocbt-card .fw-bold.text-gold { color: var(--gold) !important; }

/* Home sections sizing tweaks */
.home-services .mocbt-card .card-body {
    padding: 1.75rem 1.5rem;
}
.home-services .mocbt-card i {
    font-size: 2.3rem;
}
.home-services .mocbt-card .card-title {
    font-size: 1.1rem;
}
.home-supported-countries .mocbt-card {
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
}

/* Section */
.mocbt-section {
    padding: 4.5rem 0;
}
.mocbt-section h2 {
    color: var(--navy);
    font-weight: 800;
    font-size: 2.1rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
@media (min-width: 768px) {
    .mocbt-section h2 { font-size: 2.35rem; }
}
.mocbt-section .section-subtitle {
    color: var(--grey);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.5;
}

/* Buttons */
.btn-gold {
    background: var(--gradient-gold);
    color: var(--navy) !important;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,162,39,0.4);
    color: var(--navy) !important;
    background: var(--gold-light);
}
.btn-outline-dark:hover { border-color: var(--navy); color: var(--navy) !important; }

/* Footer */
.mocbt-footer {
    background: var(--gradient-hero);
    color: rgba(255,255,255,0.9);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(201,162,39,0.12);
}
.mocbt-footer h5, .mocbt-footer h6 {
    color: var(--gold-light);
    font-weight: 700;
    margin-bottom: 1rem;
}
.mocbt-footer a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    transition: color 0.25s;
}
.mocbt-footer a:hover { color: var(--gold-light); }
.mocbt-footer .list-unstyled li { margin-bottom: 0.5rem; }
.mocbt-footer .btn-gold { background: var(--gradient-gold); color: var(--navy) !important; }
.mocbt-footer .btn-gold:hover { color: var(--navy) !important; }
.mocbt-footer .border-top.border-secondary { border-color: rgba(201,162,39,0.2) !important; }
.mocbt-footer .text-muted { color: rgba(255,255,255,0.6) !important; }
.mocbt-footer .text-muted a { color: var(--gold-light); }
.mocbt-footer .text-muted a:hover { color: #fff; }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.mocbt-card { animation: fadeInUp 0.5s ease forwards; }

/* Form enhancements */
.form-control, .form-select {
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    padding: 0.75rem 1rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}

/* Blog like button */
#likeBtn.active, #likeBtn.btn-outline-danger.active { background: var(--gold); border-color: var(--gold); color: #fff !important; }
#likeBtn.btn-outline-danger { border-color: #dc3545; color: #dc3545; }
#likeBtn.btn-outline-danger:hover { background: #dc3545; color: #fff !important; }

/* Content area (blog body) */
.mocbt-content { line-height: 1.75; }
.mocbt-content img { max-width: 100%; height: auto; border-radius: 8px; }
.mocbt-content p { margin-bottom: 1rem; }
.mocbt-content h2, .mocbt-content h3 { color: var(--navy); margin-top: 1.5rem; margin-bottom: 0.75rem; }
.mocbt-content a { color: var(--gold-dark); font-weight: 500; }
.mocbt-content a:hover { color: var(--gold); }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }

/* ========== HOME PAGE REDESIGN ========== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700;9..40,800&display=swap');

/* Hero v2: Full-viewport slider */
.home-hero-v2 { position: relative; width: 100%; min-height: 100vh; min-height: 100dvh; overflow: hidden; }
.hero-v2-carousel { height: 100%; }
.hero-v2-inner { height: 100%; }
.hero-v2-slide { position: relative; height: 100%; min-height: 100vh; min-height: 100dvh; }
.hero-v2-slide--single { min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; }
.hero-v2-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; transition: transform 10s ease-out; }
.hero-v2-carousel .carousel-item.active .hero-v2-bg { transform: scale(1.08); }
.hero-v2-fallback { background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 40%, #0d2847 100%); }
.hero-v2-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,22,40,0.35) 0%, rgba(10,22,40,0.5) 40%, rgba(10,22,40,0.88) 100%); z-index: 1; }
.hero-v2-content { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; min-height: 100vh; min-height: 100dvh; padding: 6rem 1.5rem 7rem; box-sizing: border-box; }
.hero-v2-text { max-width: 720px; text-align: center; }
.hero-v2-title { font-family: 'DM Sans', sans-serif; font-size: clamp(1.875rem, 4.5vw, 3.5rem); font-weight: 800; color: #fff; line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 1rem; text-shadow: 0 2px 24px rgba(0,0,0,0.35); }
.hero-v2-sub { font-size: clamp(1rem, 1.8vw, 1.25rem); color: rgba(255,255,255,0.92); line-height: 1.6; margin-bottom: 1.75rem; }
.hero-v2-cta { display: inline-block; padding: 0.95rem 2rem; background: linear-gradient(135deg, #c9a227 0%, #e4bc4d 100%); color: #0a1628 !important; font-weight: 700; font-size: 1rem; border-radius: 12px; text-decoration: none; box-shadow: 0 8px 32px rgba(201,162,39,0.4); transition: all 0.3s ease; border: none; }
.hero-v2-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,162,39,0.5); color: #0a1628 !important; }
/* Controls */
.hero-v2-controls { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
.hero-v2-controls > * { pointer-events: auto; }
.hero-v2-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.2); border: 2px solid rgba(255,255,255,0.5); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.25s; backdrop-filter: blur(8px); }
.hero-v2-arrow:hover { background: rgba(255,255,255,0.35); color: #fff; }
.hero-v2-prev { left: 1.5rem; }
.hero-v2-next { right: 1.5rem; }
.hero-v2-bottom { position: absolute; bottom: 0; left: 0; right: 0; display: flex; align-items: center; justify-content: center; gap: 1rem; padding: 1.25rem 1rem; padding-bottom: max(1.25rem, env(safe-area-inset-bottom)); }
.hero-v2-indicators { position: static; margin: 0; gap: 0.5rem; }
.hero-v2-indicators button { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,0.4); padding: 0; text-indent: -9999px; transition: background 0.25s; }
.hero-v2-indicators button.active { background: var(--gold, #c9a227); transform: scale(1.2); }
.hero-v2-play { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.2); border: 2px solid rgba(255,255,255,0.5); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.25s; backdrop-filter: blur(8px); }
.hero-v2-play:hover { background: rgba(255,255,255,0.35); color: #fff; }
/* Desktop: full viewport */
@media (min-width: 768px) {
    .home-hero-v2 { min-height: 100vh; }
    .hero-v2-slide { min-height: 100vh; }
    .hero-v2-content { min-height: 100vh; padding: 8rem 2rem 8rem; }
    .hero-v2-arrow { width: 56px; height: 56px; left: 2rem; }
    .hero-v2-next { right: 2rem; }
    .hero-v2-bottom { padding: 1.5rem 2rem; padding-bottom: max(1.5rem, env(safe-area-inset-bottom)); }
}
/* Mobile: fit all screen sizes, safe areas, touch targets */
@media (max-width: 767.98px) {
    .home-hero-v2 { min-height: 100svh; min-height: 100dvh; }
    .hero-v2-slide, .hero-v2-slide--single { min-height: 100svh; min-height: 100dvh; }
    .hero-v2-content { min-height: 100svh; min-height: 100dvh; padding: 5rem 1rem 5.5rem; padding-left: max(1rem, env(safe-area-inset-left)); padding-right: max(1rem, env(safe-area-inset-right)); padding-bottom: max(5.5rem, calc(1.5rem + env(safe-area-inset-bottom))); }
    .hero-v2-title { margin-bottom: 0.75rem; }
    .hero-v2-sub { margin-bottom: 1.25rem; font-size: 1rem; }
    .hero-v2-cta { padding: 0.85rem 1.5rem; font-size: 0.95rem; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
    .hero-v2-arrow { width: 44px; height: 44px; left: 0.75rem; }
    .hero-v2-next { right: 0.75rem; }
    .hero-v2-bottom { padding: 1rem 0.75rem; padding-bottom: max(1rem, env(safe-area-inset-bottom)); gap: 0.75rem; }
    .hero-v2-indicators button { width: 8px; height: 8px; }
    .hero-v2-play { width: 44px; height: 44px; min-width: 44px; min-height: 44px; }
}
@media (max-width: 389px) {
    .hero-v2-content { padding-top: 4rem; }
    .hero-v2-title { font-size: 1.5rem; }
}

/* Section headers */
.home-section { padding: 5rem 0; }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-tag { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 0.5rem; }
.section-head h2 { font-family: 'DM Sans', sans-serif; font-size: 2.25rem; font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.section-desc { color: var(--grey); font-size: 1.05rem; max-width: 520px; margin: 0 auto; line-height: 1.5; }
.section-head.light .section-tag { color: var(--gold-light); }
.section-head.light h2, .section-head.light .section-desc { color: #fff; }
.section-head.light .section-desc { color: rgba(255,255,255,0.8); }

/* Services */
.home-services { background: #f8fafc; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.service-card { background: #fff; border-radius: 20px; padding: 2rem; box-shadow: 0 4px 24px rgba(10,22,40,0.06); transition: all 0.4s cubic-bezier(0.4,0,0.2,1); border: 1px solid rgba(0,0,0,0.04); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(10,22,40,0.12); }
.service-icon { font-size: 2.25rem; color: var(--gold); display: block; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.service-card p { color: var(--grey); font-size: 0.95rem; line-height: 1.5; margin-bottom: 1rem; }
.service-link { font-weight: 600; color: var(--gold) !important; text-decoration: none; display: inline-flex; align-items: center; gap: 0.35rem; transition: gap 0.2s; }
.service-link:hover { gap: 0.6rem; color: var(--gold-dark) !important; }

/* Countries */
.home-countries .countries-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.country-tile { display: flex; flex-direction: column; align-items: center; padding: 1.25rem 1.5rem; background: #fff; border-radius: 16px; box-shadow: 0 4px 20px rgba(10,22,40,0.06); text-decoration: none; color: var(--navy); transition: all 0.35s; border: 1px solid rgba(0,0,0,0.04); min-width: 120px; }
.country-tile:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(10,22,40,0.12); color: var(--gold); }
.country-tile img { width: 48px; height: 36px; object-fit: cover; border-radius: 6px; margin-bottom: 0.5rem; }
.country-tile span { font-weight: 600; font-size: 0.95rem; text-align: center; }

/* Packages */
.home-packages { background: #f8fafc; }
.packages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.package-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 24px rgba(10,22,40,0.06); transition: all 0.4s cubic-bezier(0.4,0,0.2,1); border: 1px solid rgba(0,0,0,0.04); }
.package-card:hover { transform: translateY(-10px); box-shadow: 0 24px 56px rgba(10,22,40,0.14); }
.package-img-wrap { position: relative; height: 220px; overflow: hidden; }
.package-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.package-card:hover .package-img-wrap img { transform: scale(1.08); }
.package-badge { position: absolute; bottom: 1rem; left: 1rem; background: var(--gold); color: var(--navy); padding: 0.35rem 0.75rem; border-radius: 8px; font-size: 0.8rem; font-weight: 700; }
.package-body { padding: 1.75rem; }
.package-body h3 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.package-price { font-size: 1.25rem; font-weight: 700; color: var(--gold); margin-bottom: 1rem; }
.package-link { font-weight: 600; color: var(--navy) !important; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: gap 0.2s; }
.package-link:hover { gap: 0.75rem; color: var(--gold) !important; }

/* Why Choose Us */
.home-why { background: linear-gradient(135deg, #0a1628 0%, #132337 50%, #0d2847 100%); position: relative; overflow: hidden; }
.home-why::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 20%, rgba(201,162,39,0.08) 0%, transparent 50%); pointer-events: none; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.why-item { text-align: center; padding: 2rem 1.5rem; background: rgba(255,255,255,0.05); border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); transition: all 0.35s; }
.why-item:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.why-item i { font-size: 2.5rem; color: var(--gold-light); display: block; margin-bottom: 1rem; }
.why-item h4 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.35rem; }
.why-item p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin: 0; }

/* Guides */
.home-guides .guides-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.guide-card { display: flex; flex-direction: column; align-items: center; padding: 2rem 1.5rem; background: #fff; border-radius: 20px; box-shadow: 0 4px 24px rgba(10,22,40,0.06); text-decoration: none; color: var(--navy); transition: all 0.35s; border: 1px solid rgba(0,0,0,0.04); min-width: 160px; }
.guide-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(10,22,40,0.12); color: var(--gold); }
.guide-card img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; margin-bottom: 1rem; }
.guide-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.guide-card span { font-size: 0.85rem; color: var(--grey); }

/* Buttons */
.btn-primary { display: inline-block; padding: 0.9rem 2rem; background: linear-gradient(135deg, #c9a227 0%, #e4bc4d 100%); color: #0a1628 !important; font-weight: 700; border-radius: 12px; text-decoration: none; transition: all 0.35s; border: none; box-shadow: 0 4px 20px rgba(201,162,39,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,162,39,0.45); color: #0a1628 !important; }
.btn-outline { display: inline-block; padding: 0.85rem 1.75rem; border: 2px solid var(--navy); color: var(--navy) !important; font-weight: 700; border-radius: 12px; text-decoration: none; transition: all 0.3s; }
.btn-outline:hover { background: var(--navy); color: #fff !important; transform: translateY(-2px); }
.btn-outline.light { border-color: rgba(255,255,255,0.8); color: #fff !important; }
.btn-outline.light:hover { background: #fff; color: var(--navy) !important; }

/* Testimonials - Full-width carousel */
.home-testimonials { position: relative; padding: 6rem 0; overflow: hidden; }
.home-testimonials .testimonials-bg { position: absolute; inset: 0; background: linear-gradient(160deg, #0a1628 0%, #132337 40%, #1e3a5f 100%); }
.home-testimonials .testimonial-carousel-wrap { position: relative; max-width: 880px; margin: 0 auto; }
.testimonial-carousel { overflow: hidden; border-radius: 24px; }
.testimonial-track { display: flex; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.testimonial-slide { min-width: 100%; flex-shrink: 0; padding: 0 0.5rem; }
.testimonial-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; padding: 3rem; display: flex; gap: 2rem; align-items: flex-start; text-align: left; min-height: 280px; }
.testimonial-avatar { flex-shrink: 0; }
.testimonial-avatar img { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; border: 4px solid rgba(201,162,39,0.4); }
.testimonial-body { flex: 1; }
.testimonial-content { color: rgba(255,255,255,0.95); font-size: 1.1rem; line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-content p { margin-bottom: 0.75rem; }
.testimonial-meta strong { display: block; color: #fff; font-size: 1.1rem; margin-bottom: 0.25rem; }
.testimonial-meta span { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.testimonial-stars { color: var(--gold-light); font-size: 1rem; margin-top: 0.5rem; letter-spacing: 0.1em; }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.tctrl { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.3); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.25s; }
.tctrl:hover { background: rgba(201,162,39,0.4); border-color: var(--gold); color: #fff; }
.tctrl.play-pause { background: var(--gold); border-color: var(--gold); color: #0a1628; font-size: 1.1rem; }
.tctrl.play-pause:hover { background: var(--gold-light); border-color: var(--gold-light); color: #0a1628; }
@media (max-width: 767.98px) { .testimonial-card { flex-direction: column; align-items: center; text-align: center; padding: 2rem 1.5rem; } .testimonial-meta span { display: block; } }

/* CTA */
.home-cta .cta-box { background: linear-gradient(135deg, #0a1628 0%, #132337 60%, #1e3a5f 100%); border-radius: 24px; padding: 4rem 3rem; text-align: center; position: relative; overflow: hidden; box-shadow: 0 24px 64px rgba(10,22,40,0.3); }
.home-cta .cta-box::before { content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%; background: radial-gradient(ellipse, rgba(201,162,39,0.15) 0%, transparent 70%); pointer-events: none; }
.home-cta .cta-box h2 { color: #fff; font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.home-cta .cta-box p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2rem; line-height: 1.6; }
.home-cta .cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
