/* V4 Styles - Adam Hijrah Travel with Prayer.htm inspired sections */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
    --gold-primary: #b6955c;
    --gold-light: #d4b77d;
    --gold-dark: #a3844e;
    --dark-navy: #1a1a1a;
    --dark-navy-light: #333333;
    --text-dark: #222222;
    --text-muted: #666666;
    --text-light: #ffffff;
    --bg-cream: #f9f9f9;
    --bg-white: #ffffff;
    --border-light: #e5e5e5;
    --font-heading: 'Lora', Georgia, serif;
    --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
    --section-padding: 100px 0;
    --container-width: 1200px;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: var(--dark-navy);
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-title.light {
    color: var(--text-light);
}

.section-description {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
}

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

.text-center .section-description {
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition-medium);
}

.btn-gold {
    background: var(--gold-primary);
    color: var(--text-light);
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* TOP BAR */
.top-bar {
    background: var(--dark-navy);
    padding: 12px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 30px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
}

.top-bar-item i {
    color: var(--gold-primary);
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.top-bar-right a {
    color: rgba(255, 255, 255, 0.85);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.top-bar-right a:hover {
    color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.1);
}

/* NAVBAR */
.navbar {
    background: var(--bg-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-navy);
    letter-spacing: 3px;
}

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

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--gold-primary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 10px;
    /* Increased touch target */
    border: none;
    cursor: pointer;
    z-index: 1100;
    /* Ensure on top */
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark-navy);
    transition: var(--transition-fast);
}

/* DROPDOWN NAVIGATION */
.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu>li {
    position: relative;
}

.nav-menu>li>.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu>li>.nav-link i {
    font-size: 10px;
    transition: var(--transition-fast);
}

.nav-menu>li:hover>.nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-medium);
    z-index: 1000;
}

.has-dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--bg-cream);
    color: var(--gold-primary);
}

.dropdown-menu a.active {
    color: var(--gold-primary);
    background: var(--bg-cream);
}

.dropdown-menu a i {
    font-size: 10px;
}

/* Submenu (3rd level) */
.submenu {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 200px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-medium);
}

.has-submenu:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Packages CTA */
.packages-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-outline-light {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-outline-light:hover {
    background: var(--text-light);
    color: var(--dark-navy);
}

/* HERO */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)), url('../images/hero-bg.png') center/cover no-repeat;
    overflow: hidden;
    padding: 100px 0 80px;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(182, 149, 92, 0.2);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn-play {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.btn-play .play-icon {
    width: 50px;
    height: 50px;
    background: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 16px;
    transition: var(--transition-medium);
}

.btn-play:hover .play-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.hero-social-proof {
    display: inline-flex;
    background: var(--bg-white);
    padding: 15px 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    align-items: center;
    gap: 12px;
    align-self: flex-start;
}

.avatar-stack {
    display: flex;
}

.avatar-stack img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-white);
    margin-left: -10px;
    object-fit: cover;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.social-proof-text {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-navy);
}

.social-proof-text span {
    color: var(--gold-primary);
}


/* ABOUT */
.about {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.about-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: 0.5s ease;
}

.about-image-main:hover img {
    transform: scale(1.05);
}

.about-experience-box {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gold-primary);
    color: var(--text-light);
    padding: 30px 40px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.experience-text {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-checklist {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 35px;
}

.about-checklist li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.check-icon {
    width: 28px;
    height: 28px;
    background: rgba(182, 149, 92, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
}

/* QUOTE */
.quote-section {
    padding: 50px 0;
    background: var(--bg-cream);
    position: relative;
    overflow: hidden;
}

.quote-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 36px;
    color: var(--gold-primary);
    margin-bottom: 15px;
    opacity: 0.6;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-style: italic;
    color: var(--dark-navy);
    line-height: 1.6;
    margin-bottom: 12px;
}

.quote-source {
    font-size: 14px;
    color: var(--gold-primary);
    font-weight: 600;
}

/* PACKAGES */
.packages {
    padding: var(--section-padding);
    background: linear-gradient(rgba(26, 26, 26, 0.92), rgba(26, 26, 26, 0.92)), url('../images/packages-bg.png') center/cover no-repeat fixed;
}

.packages .section-badge {
    color: var(--gold-light);
}

.packages-header {
    text-align: center;
    margin-bottom: 60px;
}

.packages-header .section-description {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    text-align: center;
    position: relative;
    transition: var(--transition-medium);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    background: var(--gold-primary);
    color: var(--text-light);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-ribbon {
    position: absolute;
    top: 20px;
    right: -10px;
    background: var(--gold-primary);
    color: var(--text-light);
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.package-card.featured .package-ribbon {
    background: var(--dark-navy);
}

.package-name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 30px;
}

.package-price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
}

.package-price sup {
    font-size: 20px;
    font-weight: 500;
}

.package-period {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.package-card.featured .package-period {
    color: rgba(255, 255, 255, 0.8);
}

.package-features {
    text-align: left;
    margin-bottom: 30px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.package-card.featured .package-features li {
    border-color: rgba(255, 255, 255, 0.2);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--gold-primary);
}

.package-card.featured .package-features i {
    color: var(--text-light);
}

.package-card .btn {
    width: 100%;
}

.package-card.featured .btn-gold {
    background: var(--dark-navy);
}

.package-card.featured .btn-gold:hover {
    background: var(--dark-navy-light);
}

/* ===========================================
   PACKAGE PAGE STYLES
   =========================================== */
.packages-page {
    padding: 60px 0 80px;
    background: var(--bg-cream);
}

.packages-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.packages-intro h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.packages-intro p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

/* Package Page Cards - Different from homepage */
.packages-page .packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.packages-page .package-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    text-align: left;
}

.packages-page .package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(182, 149, 92, 0.15);
    color: var(--gold-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.package-badge.popular {
    background: var(--gold-primary);
    color: var(--text-light);
}

.package-badge.premium {
    background: var(--dark-navy);
    color: var(--text-light);
}

.packages-page .package-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.packages-page .package-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.package-duration {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-duration i {
    color: var(--gold-primary);
}

.packages-page .package-price {
    margin-bottom: 25px;
    text-align: left;
}

.price-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-primary);
}

.price-per {
    font-size: 14px;
    color: var(--text-muted);
    margin-left: 5px;
}

.packages-page .package-features {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-light);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    color: var(--gold-primary);
    font-size: 14px;
    width: 18px;
    text-align: center;
}

/* Package Comparison Table */
.package-comparison {
    margin-top: 60px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.package-comparison h2 {
    margin-bottom: 30px;
}

.table-responsive {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
    background: var(--bg-cream);
    font-weight: 600;
    color: var(--dark-navy);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table .text-gold {
    color: var(--gold-primary);
}

.comparison-table .text-muted {
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #2a2a2a 100%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

/* Responsive Package Grid */
@media (max-width: 992px) {
    .packages-page .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .packages-page .packages-grid {
        grid-template-columns: 1fr;
    }

    .packages-intro h2 {
        font-size: 26px;
    }

    .package-comparison {
        padding: 25px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 13px;
    }
}

/* ===========================================
   PLUS PACKAGE PAGE - Destination Cards
   =========================================== */
.plus-packages {
    grid-template-columns: repeat(3, 1fr);
}

.destination-card {
    overflow: hidden;
    padding: 0 !important;
}

.destination-card .package-header,
.destination-card .destination-highlights,
.destination-card .package-price,
.destination-card .btn {
    margin-left: 25px;
    margin-right: 25px;
}

.destination-card .btn {
    margin-bottom: 25px;
}

.destination-image {
    height: 200px;
    overflow: hidden;
    background: var(--bg-cream);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin: 0;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #e8e0d5 100%);
    color: var(--gold-primary);
    font-size: 48px;
}

.destination-card .package-header {
    padding: 20px 25px 15px;
    border-bottom: none;
    margin-bottom: 0;
}

.destination-card .package-header h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.destination-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 25px 15px;
}

.destination-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    background: var(--bg-cream);
    padding: 5px 12px;
    border-radius: 20px;
}

.destination-highlights span i {
    color: var(--gold-primary);
    font-size: 11px;
}

.destination-card .package-price {
    padding: 0 25px 20px;
    margin-bottom: 0;
}

.destination-card .btn {
    margin: 0 25px 25px;
    width: calc(100% - 50px);
}

/* ===========================================
   PRIVATE PACKAGE PAGE
   =========================================== */
.private-page {
    padding: 60px 0 80px;
    background: var(--bg-cream);
}

.private-hero {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 50px;
    margin-bottom: 50px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.private-hero h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.private-hero p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.private-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(182, 149, 92, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 28px;
    color: var(--gold-primary);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.private-pricing {
    margin-bottom: 60px;
}

.private-pricing .section-subtitle {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    background: var(--gold-primary);
    color: var(--text-light);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 8px;
}

.pricing-card.featured h3 {
    color: var(--text-light);
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.pricing-card.featured .pricing-desc {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-primary);
}

.pricing-card.featured .pricing-amount {
    color: var(--text-light);
}

.pricing-amount span {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
}

.private-cta {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #2a2a2a 100%);
    border-radius: var(--radius-lg);
    padding: 50px;
    text-align: center;
}

.private-cta h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.private-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive for Plus and Private pages */
@media (max-width: 992px) {
    .plus-packages {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .plus-packages {
        grid-template-columns: 1fr;
    }

    .private-features,
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .private-hero,
    .private-cta {
        padding: 30px;
    }

    .private-hero h2,
    .private-cta h2 {
        font-size: 24px;
    }
}

/* HYBRID PACKAGES LIST (Split Design) */
.packages-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Base Card Style (Mobile Optimized - Horizontal) */
/* Base Card Style (Mobile Optimized - Horizontal) */
.package-list-item {
    background: var(--bg-white);
    border-radius: 16px;
    /* Rabbani Radius */
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.08);
    /* Rabbani Shadow Style */
    display: flex;
    flex-direction: row;
    /* Horizontal by default for mobile */
    overflow: hidden;
    position: relative;
    transition: var(--transition-medium);
    border: 1px solid #e0e0e0;
    /* Rabbani Border */
    height: 100%;
    /* Ensure equal height in grid */
}

.package-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--gold-light);
}

.package-list-image {
    width: 120px;
    /* Small fixed width for mobile */
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.package-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.package-list-item:hover .package-list-image img {
    transform: scale(1.05);
}

.package-list-airline {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 6px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.package-list-airline img {
    height: 14px;
    width: auto !important;
    display: block;
}

.package-list-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gold-primary);
    color: #fff;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(182, 149, 92, 0.4);
}

.package-list-content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.package-list-top {
    margin-bottom: 10px;
}

.date-info {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.date-info i {
    color: var(--gold-primary);
}

.package-list-title {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--dark-navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.package-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.tag {
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tag-blue {
    background: rgba(33, 150, 243, 0.1);
    color: #2196F3;
}

.tag-gold {
    background: rgba(182, 149, 92, 0.15);
    color: var(--gold-primary);
}

.package-list-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid var(--border-light);
    padding-top: 12px;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price-info .label {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.price-info .amount {
    font-size: 20px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--dark-navy);
}

.price-info .amount.text-danger {
    color: #e53935;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 12px;
}

.btn-danger {
    background: #e53935;
    color: #fff;
    border: none;
}

.btn-danger:disabled {
    background: #e53935;
    opacity: 0.8;
    cursor: not-allowed;
}

/* Stamp Overlay */
.stamp-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    border: 3px solid #d32f2f;
    color: #d32f2f;
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 8px;
    opacity: 0.8;
    text-align: center;
    line-height: 1.2;
    pointer-events: none;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .package-list-item {
        flex-direction: column;
    }

    .package-list-image {
        width: 100%;
        height: 220px;
    }

    .package-list-content {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .package-list-item {
        flex-direction: column;
    }

    .package-list-image {
        height: 180px;
    }

    .date-info {
        font-size: 13px;
    }

    .package-list-title {
        font-size: 20px;
    }

    .package-list-bottom {
        align-items: center;
    }

    .price-info .amount {
        font-size: 22px;
    }

    .btn-sm {
        padding: 8px 16px;
        font-size: 13px;
    }

    .stamp-overlay {
        font-size: 28px;
        border-width: 3px;
    }
}

/* DESKTOP OVERRIDES (> 992px) - 4 Column Grid + Portrait Cards */
@media (min-width: 993px) {
    .packages-list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .package-list-item {
        flex-direction: column;
        /* Vertical Portrait */
    }

    .package-list-image {
        width: 100%;
        height: 250px;
    }

    .package-list-content {
        padding: 25px;
    }

    .package-list-top {
        margin-bottom: 20px;
    }

    .package-list-title {
        font-size: 20px;
    }

    .date-info {
        font-size: 13px;
    }

    .package-list-badge,
    .package-list-airline {
        top: 15px;
        left: 15px;
        font-size: 12px;
        padding: 6px 12px;
    }

    .package-list-airline img {
        height: 18px;
    }

    .tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    .price-info .amount {
        font-size: 24px;
    }

    .stamp-overlay {
        font-size: 32px;
        border-width: 5px;
        padding: 15px 30px;
    }

    .btn-sm {
        padding: 8px 18px;
        font-size: 14px;
    }
}

/* TABLET ADJUSTMENT (768px - 992px) - 2 Column Grid + Portrait? */
/* Or keep 1 column horizontal list? The user said "desktop 4 col, mobile 1 col horizontal". */
/* Let's make 768-992 be 2 column Portrait for better space usage, or 1 col horizontal. */
/* User requested: "for dekstop view, use portait ... 4 column". */
/* I'll stick to Mobile First (Horizontal) for everything < 993px. */
/* But at 768px width, a 1-col horizontal card is VERY wide. */
/* I might add a mid-query if it looks bad, but let's stick to user request. */


/* SERVICES - New Prayer.htm inspired design */
.services {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header .section-description {
    margin: 0 auto;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.services-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 120px;
}

.services-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.service-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--bg-cream);
    border-radius: var(--radius-md);
    transition: var(--transition-medium);
    border: 1px solid transparent;
}

.service-item:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.service-icon-box {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gold-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 24px;
}

.service-icon-box img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.service-info {
    flex: 1;
}

.service-info .service-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.service-info .service-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* EXCLUSIVE DEALS */
.exclusive-deals {
    padding: var(--section-padding);
    background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)), url('../images/packages-bg.png') center/cover no-repeat;
}

.deals-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.deals-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.deals-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.deals-info {
    color: var(--text-light);
}

.deals-info .section-badge {
    color: var(--gold-light);
}

.deals-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* STATS */
.stats {
    padding: 60px 0;
    background: var(--gold-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: var(--text-light);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* TRUSTED PARTNERS */
.trusted-partners {
    padding: 60px 0;
    background: var(--bg-cream);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.trust-content {
    text-align: center;
    margin-bottom: 40px;
}

.trust-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.trust-stars i {
    color: var(--gold-primary);
    font-size: 20px;
}

.trust-text {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.trust-text strong {
    color: #e74c3c;
    font-weight: 600;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    min-width: 100px;
    height: 60px;
}

.partner-logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.partner-logo img {
    max-height: 40px;
    max-width: 100px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: var(--transition-medium);
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

.partner-logo span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
}

/* GALLERY */
.gallery {
    padding: var(--section-padding);
    background: var(--bg-cream);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
}

/* Full Page Gallery Grid - Standard Layout */
.gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    /* consistent height */
    gap: 20px;
}

@media (max-width: 992px) {
    .gallery-full-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-full-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    background-color: #ddd;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: var(--transition-medium);
    /* Center content (play button) */
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item:nth-child(1) {
    grid-row: span 2;
}

.gallery-item:nth-child(2) {
    grid-column: span 2;
}

.gallery-item:nth-child(5) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.play-btn:hover {
    background: var(--gold-primary);
    color: var(--text-light);
}

.play-btn i {
    margin-left: 4px;
    /* Optical adjustment */
}

/* TESTIMONIALS - Compact design */
.testimonials {
    padding: 30px 0;
    background: var(--bg-white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    align-items: center;
    gap: 35px;
}

.testimonial-slide.active {
    display: flex;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

.testimonial-image {
    flex-shrink: 0;
    width: 180px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-quote {
    margin-bottom: 12px;
}

.testimonial-quote i {
    font-size: 32px;
    color: var(--gold-primary);
    opacity: 0.5;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 17px;
    font-style: italic;
    color: var(--dark-navy);
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-author-info {
    margin-bottom: 10px;
}

.testimonial-author-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 3px;
}

.testimonial-author-info span {
    font-size: 13px;
    color: var(--gold-primary);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    color: var(--gold-primary);
    font-size: 14px;
}

.testimonial-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.pagination-dot.active {
    width: 30px;
    border-radius: 10px;
    background: var(--gold-primary);
}

.pagination-dot:hover {
    background: var(--gold-light);
}

/* FAQ */
.faq {
    padding: var(--section-padding);
    background: var(--bg-cream);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

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

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: var(--bg-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-navy);
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-cream);
}

.faq-question i {
    color: var(--gold-primary);
    transition: var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-medium);
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* BLOG */
.blog {
    padding: 30px 0;
    background: var(--bg-white);
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold-primary);
    color: var(--text-light);
    padding: 6px 15px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: 30px;
}

.blog-date {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-date i {
    color: var(--gold-primary);
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: var(--transition-fast);
}

.blog-card:hover .blog-title {
    color: var(--gold-primary);
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 14px;
}

.blog-link:hover {
    gap: 12px;
}

/* FOOTER */
.footer {
    background: #111;
    color: #aaa;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: var(--text-light);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact-item i {
    color: var(--gold-primary);
    margin-top: 3px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 25px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gold-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    font-size: 14px;
}

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

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }

    .hero-social-proof {
        position: static;
        margin-top: 40px;
        display: inline-flex;
    }

    .about .container {
        gap: 50px;
    }

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

    .package-card.featured {
        transform: none;
    }

    .services-content {
        grid-template-columns: 1fr;
    }

    .services-image {
        position: static;
        display: none;
    }

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

    .deals-content {
        grid-template-columns: 1fr;
    }

    .deals-image {
        order: 2;
    }

    .testimonial-slide {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-image {
        width: 200px;
        height: 200px;
        border-radius: var(--radius-lg);
    }

    .testimonial-rating {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

    .gallery-item:nth-child(1) {
        grid-row: auto;
    }

    .gallery-item:nth-child(2) {
        grid-column: auto;
    }

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

/* ==========================================
   INNER PAGE STYLES
   ========================================== */

/* PAGE HEADER */
.page-header {
    background: linear-gradient(rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.85)), url('../images/hero-bg.png') center/cover no-repeat;
    padding: 100px 0 80px;
    text-align: center;
}

/* Page-specific header backgrounds */
.page-header.about-header {
    background: linear-gradient(rgba(26, 26, 26, 0.65), rgba(26, 26, 26, 0.75)), url('../images/banners/about-us.jpg') center/cover no-repeat;
}

.page-header.articles-header {
    background: linear-gradient(rgba(26, 26, 26, 0.65), rgba(26, 26, 26, 0.75)), url('../images/banners/articles.jpg') center/cover no-repeat;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
}

.page-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: var(--gold-primary);
}

.breadcrumb span:not(:last-child) {
    color: rgba(255, 255, 255, 0.4);
}

/* MONTH NAVIGATION */
.month-nav {
    background: var(--bg-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 80px;
    z-index: 99;
}

.month-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
}

.month-tabs::-webkit-scrollbar {
    display: none;
}

.month-tab {
    flex-shrink: 0;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 30px;
    border: 1px solid var(--border-light);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.month-tab:hover {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.month-tab.active {
    background: var(--dark-navy);
    color: var(--text-light);
    border-color: var(--dark-navy);
}

/* SCHEDULE SECTION */
.schedule-section {
    padding: 30px 0 80px;
    background: var(--bg-cream);
}

/* Schedule Filters */
.schedule-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 200px;
}

.filter-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.filter-select {
    padding: 10px 15px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg-white);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-select:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.filter-reset {
    align-self: flex-end;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-reset:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.schedule-card.hidden {
    display: none;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.no-results i {
    font-size: 48px;
    color: var(--border-light);
    margin-bottom: 15px;
    display: block;
}

@media (max-width: 768px) {
    .schedule-filters {
        flex-direction: column;
    }

    .filter-group {
        width: 100%;
    }

    .filter-reset {
        width: 100%;
    }
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* SCHEDULE CARD */
.schedule-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    position: relative;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.schedule-card.featured {
    border: 2px solid var(--gold-primary);
}

.schedule-ribbon {
    position: absolute;
    top: 15px;
    left: -35px;
    background: var(--gold-primary);
    color: var(--text-light);
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(-45deg);
    z-index: 10;
}

.schedule-card-header {
    background: var(--dark-navy);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.schedule-date {
    display: flex;
    flex-direction: column;
}

.schedule-date .day {
    font-size: 36px;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
}

.schedule-date .month {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.schedule-badge {
    background: var(--gold-primary);
    color: var(--text-light);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.schedule-card-body {
    padding: 25px;
}

.schedule-package-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.schedule-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.schedule-tags .tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: var(--bg-cream);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-muted);
}

.schedule-tags .tag i {
    color: var(--gold-primary);
    font-size: 10px;
}

.schedule-hotels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.hotel-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hotel-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.hotel-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-navy);
}

.hotel-stars {
    display: flex;
    gap: 2px;
}

.hotel-stars i {
    color: var(--gold-primary);
    font-size: 10px;
}

.schedule-prices {
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-light);
}

.price-row:last-child {
    border-bottom: none;
}

.price-type {
    font-size: 14px;
    color: var(--text-muted);
}

.price-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-primary);
}

.schedule-airline {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.schedule-airline img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.schedule-airline i {
    color: var(--gold-primary);
}

.schedule-card-footer {
    padding: 0 25px 25px;
}

.btn-full {
    width: 100%;
}

/* PAGE HEADER - Generic */
.page-header {
    position: relative;
    padding: 120px 0 80px;
    min-height: 400px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
    /* Added spacing */
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.65);
    /* Dark overlay */
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-description {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb a {
    color: var(--text-light);
    opacity: 0.8;
}

.breadcrumb a:hover {
    color: var(--gold-primary);
    opacity: 1;
}

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

/* Specific Header Backgrounds */
.gallery-page-bg {
    background-image: url('../images/hero-bg.png');
    /* Fallback or specific */
}

/* CTA SECTION */
.cta-section {
    padding: 80px 0;
    background: var(--gold-primary);
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-gold {
    background: var(--dark-navy);
}

.cta-section .btn-gold:hover {
    background: var(--dark-navy-light);
}

/* HAJI INTRO */
.haji-intro {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.haji-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.haji-intro-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.haji-intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.haji-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

.haji-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

/* HAJI PACKAGES */
.haji-packages {
    padding: var(--section-padding);
    background: linear-gradient(rgba(26, 26, 26, 0.92), rgba(26, 26, 26, 0.92)), url('../images/packages-bg.png') center/cover no-repeat fixed;
}

/* REQUIREMENTS */
.haji-requirements {
    padding: var(--section-padding);
    background: var(--bg-cream);
}

.requirements-header {
    text-align: center;
    margin-bottom: 50px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.requirement-card {
    background: var(--bg-white);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.requirement-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--text-light);
    font-size: 28px;
}

.requirement-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.requirement-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ABOUT PAGE */
.about-page {
    padding: var(--section-padding);
    background: var(--bg-cream);
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
}

.about-story-content h2 {
    margin-bottom: 20px;
}

.about-story-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-story-image img,
.about-story-image .placeholder-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-story-image .placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    color: var(--text-muted);
    font-size: 48px;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.vision-box,
.mission-box {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.vision-icon,
.mission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vision-icon i,
.mission-icon i {
    font-size: 24px;
    color: var(--text-light);
}

.vision-box h3,
.mission-box h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.mission-box ul {
    list-style: none;
    padding: 0;
}

.mission-box ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.mission-box ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gold-primary);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    text-align: center;
}

.about-stats .stat-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.about-stats .stat-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 5px;
}

.about-stats .stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.company-values,
.company-licenses {
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.value-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 28px;
    color: var(--text-light);
}

.value-card h3 {
    font-size: 18px;
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-muted);
}

.licenses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.license-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--gold-primary);
}

.license-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.license-icon i {
    font-size: 24px;
    color: var(--gold-primary);
}

.license-card h3 {
    font-size: 20px;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.license-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.license-number {
    display: inline-block;
    background: var(--bg-cream);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-primary);
}

/* ARTICLES PAGE */
.articles-page {
    padding: var(--section-padding);
    background: var(--bg-cream);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.article-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

.article-content {
    padding: 25px;
}

.article-category {
    display: inline-block;
    background: var(--bg-cream);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.article-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: var(--text-muted);
}

.article-meta i {
    color: var(--gold-primary);
}

/* Article card variant classes (used in artikel.html) */
.article-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

.article-card-image .placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #e0d5c8 100%);
    color: var(--gold-primary);
    font-size: 48px;
}

.article-card-image .article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold-primary);
    color: var(--text-light);
}

.article-card-content {
    padding: 25px;
}

.article-card-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-card-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-primary);
    transition: var(--transition-fast);
}

.article-link:hover {
    gap: 12px;
}

/* Pagination styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-white);
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.page-link:hover,
.page-link.active {
    background: var(--gold-primary);
    color: var(--text-light);
}

/* OFFICES PAGE */
.offices-page {
    padding: var(--section-padding);
    background: var(--bg-cream);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.offices-grid .office-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.offices-grid .office-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.offices-grid .office-card.main-office {
    grid-column: span 3;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #2a3a5c 100%);
    color: var(--text-light);
}

.offices-grid .office-card.main-office h3 {
    color: var(--text-light);
}

.offices-grid .office-card.main-office .office-details p {
    color: rgba(255, 255, 255, 0.8);
}

.offices-grid .office-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--dark-navy);
    margin-bottom: 20px;
}

.office-badge {
    display: inline-block;
    background: var(--gold-primary);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.office-details {
    margin-bottom: 20px;
}

.office-details p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.office-details p i {
    color: var(--gold-primary);
    margin-top: 3px;
    min-width: 16px;
}

.offices-grid .office-card.main-office .office-details p i {
    color: var(--gold-primary);
}

/* Contact Form Section */
.contact-section {
    background: var(--bg-white);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 40px auto 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg-cream);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: var(--bg-white);
}

.btn-full {
    width: 100%;
}

@media (max-width: 1024px) {
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offices-grid .office-card.main-office {
        grid-column: span 2;
    }
}

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

    .offices-grid {
        grid-template-columns: 1fr;
    }

    .offices-grid .office-card.main-office {
        grid-column: span 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 30px 20px;
    }
}

/* TERMS PAGE */
.terms-page {
    padding: var(--section-padding);
    background: var(--bg-cream);
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section h2 {
    font-size: 24px;
    color: var(--dark-navy);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold-primary);
}

.terms-section p,
.terms-section ul {
    line-height: 1.8;
    margin-bottom: 15px;
}

.terms-section ul {
    padding-left: 20px;
}

.terms-section ul li {
    margin-bottom: 8px;
}

/* OFFICE PAGE */
.office-page {
    padding: var(--section-padding);
    background: var(--bg-cream);
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.office-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.office-card.main-office {
    grid-column: span 2;
}

.office-image {
    height: 200px;
    overflow: hidden;
}

.office-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.office-content {
    padding: 25px;
}

.office-badge {
    display: inline-block;
    background: var(--gold-primary);
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.office-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.office-info {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.office-info i {
    color: var(--gold-primary);
    margin-top: 3px;
}

.office-map {
    margin-top: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.office-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* RESPONSIVE - INFO PAGES */
@media (max-width: 1024px) {
    .about-story {
        grid-template-columns: 1fr;
    }

    .about-story-image {
        order: -1;
    }

    .vision-mission {
        grid-template-columns: 1fr;
    }

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

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

    .licenses-grid {
        grid-template-columns: 1fr;
    }

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

    .office-grid {
        grid-template-columns: 1fr;
    }

    .office-card.main-office {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

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

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .terms-content {
        padding: 30px 20px;
    }

    .page-title {
        font-size: 32px;
    }
}

/* FAQ PAGE */
.faq-page {
    padding: var(--section-padding);
    background: var(--bg-cream);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.faq-category-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-category-title i {
    color: var(--gold-primary);
}

@media (max-width: 1024px) {
    .haji-intro-grid {
        grid-template-columns: 1fr;
    }

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

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .top-bar-left {
        display: none;
    }

    .top-bar-right {
        margin: 0 auto;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .about .container {
        grid-template-columns: 1fr;
    }

    .about-experience-box {
        right: 20px;
        bottom: -20px;
        padding: 20px 30px;
    }

    .experience-number {
        font-size: 36px;
    }

    .packages-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-text {
        font-size: 18px;
    }

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

    .stat-number {
        font-size: 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 150px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 32px;
    }

    .month-nav {
        top: 70px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 26px;
    }

    .stat-number {
        font-size: 32px;
    }

    .package-card {
        padding: 30px 20px;
    }

    .testimonial-image {
        width: 150px;
        height: 150px;
    }
}

/* ==========================================
   FLOATING CTA BUTTON
   ========================================== */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--text-light);
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition-medium);
}

.floating-cta i {
    font-size: 22px;
}

.floating-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #2BE376 0%, #15A06E 100%);
}

.floating-cta:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
        font-size: 14px;
    }

    .floating-cta i {
        font-size: 20px;
    }
}

/* ==========================================
   CONSULTATION PAGE STYLES
   ========================================== */
.consultation-page {
    padding: 80px 0;
    background: var(--bg-cream);
}

.consultation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.consultation-info {
    background: var(--bg-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.consultation-info h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--dark-navy);
    margin-bottom: 20px;
}

.consultation-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.consultation-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(182, 149, 92, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 20px;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 5px;
}

.benefit-text p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.privacy-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: var(--radius-md);
    color: #128C7E;
    font-size: 14px;
}

.privacy-note i {
    font-size: 18px;
}

.consultation-form-wrapper {
    background: var(--bg-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.consultation-form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.consultation-form-wrapper>p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 15px;
}

.consultation-form .form-group {
    margin-bottom: 20px;
}

.consultation-form label {
    display: block;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 8px;
    font-size: 14px;
}

.consultation-form label span {
    color: #e74c3c;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: var(--font-body);
    transition: var(--transition-fast);
    background: var(--bg-white);
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(182, 149, 92, 0.1);
}

.consultation-form textarea {
    resize: vertical;
    min-height: 120px;
}

.consultation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.consultation-form .btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--gold-primary);
    color: var(--text-light);
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.consultation-form .btn-submit:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.consultation-form .btn-submit i {
    font-size: 18px;
}

@media (max-width: 992px) {
    .consultation-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {

    .consultation-info,
    .consultation-form-wrapper {
        padding: 30px;
    }

    .consultation-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   RABBANI STYLE HEADER IMPLEMENTATION
   ========================================= */

/* Rabbani Theme Variables (Adapted to Gold) */
:root {
    --rabbani-theme-color: var(--gold-primary);
    /* #b6955c */
    --rabbani-theme-dark: var(--gold-dark);
    /* #a3844e */
}

/* Main Header Bar */
.ast-primary-header-bar {
    background-color: #fff;
    border-bottom: 1px solid #efefef;
    padding: 15px 0;
    position: relative;
    z-index: 999;
}

.main-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

/* Site Logo */
.site-logo-img img {
    max-width: 180px;
    height: auto;
    display: block;
}

/* Desktop Navigation (Hidden on Mobile) */
.ast-desktop-header {
    display: none;
}

@media (min-width: 993px) {
    .ast-desktop-header {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .ast-mobile-header {
        display: none;
    }
}

/* Desktop Menu Styling */
.main-header-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-header-menu .menu-item .menu-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #333;
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.main-header-menu .menu-item .menu-link:hover,
.main-header-menu .menu-item.current-menu-item .menu-link {
    color: var(--rabbani-theme-color);
}

/* Mobile Header (Visible on Mobile) */
.ast-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 15px;
}

/* BURGER MENU (Gold Theme) */
.ast-mobile-menu-trigger-fill {
    background-color: var(--rabbani-theme-color);
    border-radius: 8px;
    padding: 10px 12px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.ast-mobile-menu-trigger-fill:hover {
    background-color: var(--rabbani-theme-dark);
}

.mobile-menu-toggle-icon .ast-mobile-svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

/* OFF-CANVAS DRAWER */
.ast-mobile-popup-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    /* Start off-screen */
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: #fff;
    z-index: 10000;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.ast-mobile-popup-drawer.active {
    right: 0;
    /* Slide in */
}

/* Overlay for Drawer */
.ast-mobile-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.ast-mobile-popup-drawer.active+.ast-mobile-popup-overlay,
.ast-mobile-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Drawer Header (Close Button) */
.ast-mobile-popup-header {
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid #f0f0f0;
}

.menu-toggle-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle-close .ast-mobile-svg {
    width: 24px;
    height: 24px;
    fill: #333;
}

/* Drawer Content */
.ast-mobile-popup-content {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.ast-mobile-popup-content .main-header-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.ast-mobile-popup-content .main-header-menu .menu-item {
    width: 100%;
    border-bottom: 1px solid #f5f5f5;
}

.ast-mobile-popup-content .main-header-menu .menu-item .menu-link {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    color: #333;
}

/* Disable existing navbar if technically present but conflicting */
/* .navbar {
    display: none !important;
} */

/* RABBANI STYLE HERO & FEATURES */
.rabbani-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 180px 0 140px;
    /* Increased vertical padding */
    color: #fff;
    text-align: center;
    min-height: 85vh;
    /* Taller hero */
    display: flex;
    align-items: center;
    justify-content: center;
}

.rabbani-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
    z-index: 1;
}

.rabbani-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.rabbani-hero-content {
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.rabbani-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.rabbani-hero-title span {
    color: var(--gold-primary);
    display: block;
    /* Break line for brand name */
    margin-top: 10px;
}

.rabbani-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-rabbani-hero {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    /* Rounded pill style */
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(182, 149, 92, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-rabbani-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(182, 149, 92, 0.6);
}

/* HERO SEARCH BOX */
.hero-search-box {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    margin-top: 20px;
}

.search-form {
    display: flex;
    gap: 25px;
    align-items: flex-end;
}

.search-group {
    flex: 1;
}

.search-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-group .form-select {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #f8f9fa;
    color: #333;
    transition: border-color 0.3s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8.5L2 4.5 3.5 3 6 5.5 8.5 3 10 4.5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.search-group .form-select:focus {
    border-color: var(--gold-primary);
    outline: none;
    background-color: #fff;
}

.search-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    height: 100%;
    /* Match input height */
    flex-grow: 0;
    min-width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
}

@media (max-width: 991px) {
    .rabbani-hero-title {
        font-size: 2.8rem;
    }

    .hero-search-box {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .rabbani-hero {
        padding: 140px 0 80px;
        min-height: auto;
    }

    .rabbani-hero-title {
        font-size: 2rem;
    }

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

    .hero-search-box {
        padding: 25px;
        margin-top: 30px;
    }

    .search-form {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .search-btn {
        width: 100%;
        margin-top: 10px;
    }
}

/* RABBANI FEATURES GRID */
.rabbani-features {
    padding: 80px 0 100px;
    background-color: #fff;
}

.rabbani-features .section-header {
    margin-bottom: 60px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.rabbani-features-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.3;
}

.rabbani-features p {
    color: #777;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns by default */
    gap: 40px 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: #f0f0f0;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    fill: var(--gold-primary);
    /* Gold Theme */
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    opacity: 1;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.feature-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns tablet */
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
        /* 1 column mobile */
        gap: 30px;
    }

    .feature-item {
        padding: 20px;
    }
}

/* VIDEO MODAL STYLES ADDED VIA AGENT */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    width: 90%;
    max-width: 1000px;
    position: relative;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    transition: padding-bottom 0.3s ease;
}

.video-modal-content.vertical-video .video-container {
    padding-bottom: 177.78%;
    /* 9:16 Aspect Ratio */
    max-height: 80vh;
    /* Limit height to viewport */
}

.video-modal-content.vertical-video {
    max-width: 450px;
    /* Limit width for vertical videos */
    background: transparent;
    /* Remove black background if possible or keep */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.video-modal-close:hover {
    transform: scale(1.2) rotate(90deg);
    color: var(--gold-primary);
}

/* PHOTO MODAL STYLES ADDED VIA AGENT */
.photo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.photo-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.photo-modal-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.photo-container {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    text-align: center;
}

.photo-container img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.photo-caption {
    color: #fff;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 500;
}

.photo-counter {
    position: absolute;
    top: -30px;
    right: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.photo-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 10002;
    transition: transform 0.2s;
}

.photo-modal-close:hover {
    transform: scale(1.1);
    color: var(--gold-primary);
}

.photo-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10001;
}

.photo-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--gold-primary);
}

.photo-nav-btn.prev {
    left: 20px;
}

.photo-nav-btn.next {
    right: 20px;
}

@media (max-width: 768px) {
    .photo-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .photo-nav-btn.prev {
        left: 10px;
    }

    .photo-nav-btn.next {
        right: 10px;
    }
}