/**
 * AlAhza Website - Main Stylesheet
 * Responsive design for PC and Mobile
 */

/* ========== CSS Reset & Variables ========== */
:root {
    /* Primary Colors */
    --primary-red: #000000;
    --primary-red-dark: #000000;
    --primary-gold: #c9a227;
    --primary-gold-light: #e8c547;

    /* Secondary Colors */
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f5f5f5;
    --gray: #666666;
    --gray-dark: #333333;

    /* Font Families */
    --font-primary: "Poppins", sans-serif;
    --font-arabic: "Amiri", serif;

    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 40px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ========== Icons (Font Awesome Already Included) ========== */
/* Removed emoji-based icon styling in favor of Font Awesome icons */
/* Use <i class="fas fa-[icon-name]"></i> for all icons */

/* ========== Top Bar ========== */
.top-bar {
    background: #000000;
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

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

.top-bar-left {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.top-bar-left span {
    display: flex;
    align-items: center;
}

.top-bar-right {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* ========== Header ========== */
.header {
    background: #000000;
    box-shadow: var(--shadow-sm);
    border: none;
    border-bottom: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    transition: background-color 0.3s ease, box-shadow 0.3s ease,
        border 0.3s ease;
}

.header.scrolled,
.header.is-solid {
    background: #000000;
    box-shadow: var(--shadow-sm);
    border: none;
}

.header.scrolled .nav-link,
.header.is-solid .nav-link {
    color: var(--white);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active,
.header.is-solid .nav-link:hover,
.header.is-solid .nav-link.active {
    color: var(--primary-gold);
    /* remove gold-tinted hover background - keep subtle dark hover */
    background: rgba(0, 0, 0, 0.18);
}

.header.scrolled .logo-text,
.header.scrolled .logo-subtext,
.header.is-solid .logo-text,
.header.is-solid .logo-subtext {
    color: var(--white);
}

.header.scrolled .logo-placeholder,
.header.is-solid .logo-placeholder {
    background: rgba(0, 0, 0, 0.3);
}

.header.scrolled .mobile-toggle span,
.header.is-solid .mobile-toggle span {
    background: var(--white);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    border: none;
    border-bottom: none;
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
    min-width: 150px;
    transition: background-color 0.3s ease;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.logo-subtext {
    font-size: 10px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 3px;
    transition: color 0.3s ease;
}

.footer-logo .logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

/* ========== Navigation ========== */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: var(--spacing-xs);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    font-weight: 500;
    font-size: 14px;
    color: var(--white);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    background: transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
    background: transparent;
    box-shadow: none;
}

.arrow-down {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    vertical-align: middle;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

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

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

.dropdown-menu li a {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 14px;
    color: var(--gray-dark);
    transition: var(--transition-fast);
}

.dropdown-menu li a:hover {
    background: var(--gray-light);
    color: var(--primary-red);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: var(--spacing-sm);
    z-index: 1002;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

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

/* Nav Close Button */
.nav-close {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1003;
    padding: 0;
}

.nav-close span {
    font-size: 36px;
    color: var(--gray-dark);
    line-height: 1;
    transition: all 0.2s ease;
}

.nav-close:hover span {
    color: var(--primary-red);
    transform: rotate(90deg);
}

/* ========== Hero Section ========== */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
}

.hero-section .container {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 85vh;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    z-index: 0;
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero-kaaba-placeholder {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 1;
    pointer-events: none;
}

.hero-kaaba-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: auto;
    min-width: 50%;
    max-width: 70%;
    object-fit: cover;
    object-position: center right;
}

/* Desktop: optimal positioning */
@media (min-width: 1025px) {
    .hero-kaaba-image {
        min-width: 55%;
        max-width: 65%;
        object-position: center right;
    }
}

/* Tablet: balanced view */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-kaaba-image {
        min-width: 100%;
        max-width: 100%;
        object-position: center center;
    }
}

/* Mobile: full cover */
@media (max-width: 768px) {
    .hero-kaaba-image {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        object-fit: cover;
        object-position: center center;
    }
}

.hero-content {
    position: relative;
    z-index: 20;
    max-width: 650px;
    padding: 0;
    margin: 0;
    pointer-events: auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--primary-gold-light);
    margin-bottom: 36px;
    line-height: 1.6;
    font-weight: 400;
}

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

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    min-height: 48px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-gold-light) 0%, var(--primary-gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--white);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.btn-secondary:hover {
    color: var(--primary-gold);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary > span {
    position: relative;
    z-index: 1;
}

.btn-secondary:active {
    transform: translateY(-1px);
}

/* ========== Section Styles ========== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-header-minimal {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
    margin: var(--spacing-sm) auto 0;
}

.section-subtitle {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
    margin-top: var(--spacing-md);
}

/* ========== Why Choose Us Section ========== */
.why-choose-section {
    position: relative;
    padding: var(--spacing-lg) 0;
    background: #000000;
    overflow: hidden;
}

.why-choose-bg {
    position: absolute;
    inset: 0;
    /* Solid black background (remove gold accents) */
    background: #000000;
}

.pattern-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30L30 0z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
}

.why-choose-section .section-header {
    position: relative;
    z-index: 1;
}

.why-choose-section .section-title {
    color: var(--white);
}

.why-choose-section .section-title::after {
    background: var(--primary-gold);
}

.why-choose-section .section-subtitle {
    color: var(--primary-gold-light);
}

.features-grid {
    position: relative;
    z-index: 15;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 120px;
    padding-top: 60px;
    animation: slideUp 0.8s ease-out;
    clear: both;
}

.features-grid::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    border-radius: 2px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.features-section .features-grid {
    margin-top: 0;
}

.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out backwards;
    backdrop-filter: blur(10px);
    z-index: 1;
    pointer-events: auto;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    /* replace gold gradient with solid black */
    background: #000000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-gold);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #2a2a2a 0%, #111111 100%);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(184, 149, 81, 0.3);
}

.feature-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 10px;
    line-height: 1.35;
    letter-spacing: -0.2px;
}

.feature-text {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

.feature-content {
    margin-bottom: var(--spacing-xs);
}

.feature-content p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.4;
}

.feature-content strong {
    color: var(--gray-dark);
    font-weight: 600;
}

.feature-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-gold);
    margin: var(--spacing-xs) 0;
}

.feature-description {
    font-size: 11px;
    color: var(--gray);
    line-height: 1.5;
}

.highlight-text {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--primary-red) !important;
}

/* ========== Welcome Section ========== */
.welcome-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.welcome-image-column {
    display: flex;
    justify-content: center;
}

.director-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 350px;
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.director-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.director-image-wrapper:hover .director-img {
    transform: scale(1.02);
}

.image-decorative-border {
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 2px solid var(--primary-gold);
    border-radius: var(--radius-lg);
    pointer-events: none;
    opacity: 0.5;
}

.director-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--gray);
    color: var(--gray);
    font-size: 14px;
}

.director-placeholder i {
    font-size: 48px;
    margin-bottom: var(--spacing-md);
}

.welcome-text-column {
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.welcome-badge {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.welcome-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
}

.welcome-message-box {
    background: #f9f7f4;
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
}

.arabic-text {
    font-family: var(--font-arabic);
    font-size: 18px;
    line-height: 2;
    direction: rtl;
    text-align: right;
    margin-bottom: var(--spacing-lg);
    color: var(--gray-dark);
    font-weight: 500;
}

.arabic-text p {
    margin-bottom: var(--spacing-sm);
}

.indonesian-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
    margin: 0;
    text-align: left;
}

.director-signature {
    margin-top: var(--spacing-lg);
}

.signature-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-dark);
    margin: 0 0 var(--spacing-xs) 0;
}

.signature-role {
    font-size: 14px;
    color: var(--primary-gold);
    margin: 0;
    font-weight: 600;
}

/* ========== Competencies Section ========== 
.competencies-section {
    padding: var(--spacing-lg) 0;
    background: var(--white);
}

.competencies-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.competencies-section .section-title {
    color: var(--gray-dark);
    font-size: 32px;
    margin-bottom: var(--spacing-md);
}

.competencies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.competency-card {
    text-align: center;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--gray-light);
    transition: var(--transition-normal);
}

.competency-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.competency-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-gold);
    /* solid dark background (no gold gradient) */
    background: #000000;
    border-radius: var(--radius-md);
}

.competency-card h3 {
    font-size: 18px;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.competency-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ========== Packages Section ========== */
.packages-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.packages-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.package-item-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.package-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.package-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

.package-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

.package-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-gold);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.package-card-body {
    padding: var(--spacing-lg);
    background: var(--white);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-dark);
    margin: 0 0 var(--spacing-sm) 0;
}

.package-card-body p {
    font-size: 14px;
    color: var(--gray);
    margin: 0 0 var(--spacing-md) 0;
    flex: 1;
    line-height: 1.6;
}

.package-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.package-item-card:hover .package-cta {
    gap: 12px;
    color: var(--primary-gold);
}

/* ========== Services Section (Old) ========== */
.services-section {
    padding: var(--spacing-lg) 0;
    background: var(--gray-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
}

.service-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
    height: 220px;
}

.service-image-placeholder {
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.75);
    padding: var(--spacing-lg) var(--spacing-md);
}

.service-name {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.service-card:hover .service-overlay {
    background: rgba(0, 0, 0, 0.9);
}

/* ========== Achievements Section ========== */
.achievements-section {
    padding: var(--spacing-lg) 0;
    background: var(--white);
}

.achievements-slider {
    display: flex;
    gap: var(--spacing-md);
    overflow-x: auto;
    padding-bottom: var(--spacing-md);
    scroll-snap-type: x mandatory;
}

.achievement-placeholder {
    flex: 0 0 200px;
    height: 150px;
    background: var(--gray-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--gray);
    color: var(--gray);
    font-size: 12px;
    scroll-snap-align: start;
}

.achievement-placeholder::before {
    content: "Penghargaan";
}

/* ========== Gallery Section ========== */
.gallery-section {
    padding: var(--spacing-lg) 0;
    background: var(--gray-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-xs);
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: #dcdcdc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm);
    text-align: center;
    color: var(--gray);
    font-size: 11px;
}

/* ========== Testimonials Section ========== */
.testimonials-section {
    padding: var(--spacing-lg) 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.testimonial-card img {
    width: 100%;
    height: auto;
}

.testimonial-placeholder {
    width: 100%;
    height: 250px;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--gray);
    color: var(--gray);
}

/* ========== Articles Section ========== */
.articles-section {
    padding: var(--spacing-lg) 0;
    background: var(--gray-light);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
}

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

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

.article-card a {
    display: block;
}

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

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

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

.article-image-placeholder {
    height: 160px;
    /* use solid black instead of black->gold gradient */
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
}

.article-content {
    padding: var(--spacing-sm);
}

.article-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-xs);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-excerpt {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: var(--spacing-sm);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    font-size: 13px;
    color: var(--primary-red);
    font-weight: 600;
}

.article-card:hover .read-more {
    color: var(--primary-gold);
}

/* ========== Partners Section ========== */
.partners-section {
    padding: var(--spacing-lg) 0;
    background: var(--white);
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.partner-placeholder {
    width: 120px;
    height: 80px;
    background: var(--gray-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    color: var(--gray);
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.partner-placeholder:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-gold);
}

/* ========== Corporate Section ========== */
.corporate-section {
    padding: var(--spacing-lg) 0;
    background: var(--gray-light);
}

.corporate-slider {
    display: flex;
    gap: var(--spacing-md);
    overflow-x: auto;
    padding-bottom: var(--spacing-md);
}

.corporate-placeholder {
    flex: 0 0 150px;
    height: 80px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    color: var(--gray);
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    padding: var(--spacing-sm);
}

/* ========== Footer ========== */
.footer {
    background: #111111;
    color: var(--white);
    padding: var(--spacing-lg) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: var(--spacing-md);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
    margin: 0;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #ccc;
    transition: all 0.3s ease;
}

.footer-contact-list li:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.footer-contact-list li i {
    width: 20px;
    color: var(--primary-gold);
    font-size: 16px;
}

.footer-map-col {
    grid-column: span 1;
}

.footer-location {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    line-height: 1.6;
    color: #ccc;
    margin: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-address:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.footer-address i {
    color: var(--primary-gold);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-map-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(212, 175, 55, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.footer-map-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
    border-color: var(--primary-gold);
}

.footer-map-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-md);
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.1);
    pointer-events: none;
    z-index: 1;
}

.footer-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 200px;
    filter: brightness(0.95) contrast(1.05);
}

.footer-content {
    font-size: 13px;
    line-height: 1.8;
    color: #ccc;
}

.footer-content strong {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: var(--transition-fast);
}

.social-btn.whatsapp {
    background: #25d366;
}

.social-btn.instagram {
    background: #e1306c;
}

.social-btn.tiktok {
    background: #000;
    border: 1px solid #fff;
}

.social-btn:hover {
    transform: scale(1.1);
}

.footer-building-placeholder {
    width: 100%;
    height: 200px;
    background: var(--gray);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #666;
    color: #999;
    font-size: 14px;
}

.footer-bottom {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

/* ========== Popup Poster Modal ========== */
.popup-poster-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.popup-poster-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.popup-poster-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: popupScale 0.3s ease;
}

@keyframes popupScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-poster-content {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
}

.popup-poster-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 85vh;
    object-fit: contain;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    transition: all 0.2s ease;
    color: #000;
}

.popup-close:hover {
    background: #fff;
    transform: scale(1.1);
}

/* ========== WhatsApp Float Button ========== */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1002;
    pointer-events: auto !important;
}

.whatsapp-float {
    position: relative;
    background: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    outline: none;
    pointer-events: auto !important;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float i {
    font-size: 32px;
    display: block;
}

/* WhatsApp Popup Notification */
.whatsapp-popup {
    position: absolute;
    bottom: 75px;
    right: 0;
    background: #25d366;
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    min-width: 260px;
    max-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1003;
    pointer-events: auto !important;
}

.whatsapp-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    animation: bounce 0.6s ease-out;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

.whatsapp-popup::before {
    content: "";
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #25d366;
}

.whatsapp-popup-content {
    position: relative;
}

.whatsapp-popup-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.whatsapp-popup-content p:first-child {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.whatsapp-popup-text {
    font-size: 13px !important;
}

.whatsapp-popup-text strong {
    color: #ffd700;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.whatsapp-popup-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* ========== Scroll to Top Button ========== */
.scroll-top {
    position: fixed !important;
    bottom: 100px !important;
    right: 30px !important;
    background: var(--primary-gold) !important;
    color: var(--white) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4) !important;
    z-index: 996 !important;
    cursor: pointer !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.scroll-top.show {
    opacity: 1 !important;
    visibility: visible !important;
}

.scroll-top:hover {
    background: var(--primary-red) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6) !important;
}

.scroll-top:active {
    transform: scale(0.95) !important;
}

.scroll-top i {
    font-size: 20px !important;
}

/* Hide any other scroll buttons that might come from extensions */
button[class*="scroll"][class*="top"]:not(.scroll-top),
a[class*="scroll"][class*="top"]:not(.scroll-top),
div[class*="scroll"][class*="top"]:not(.scroll-top) {
    display: none !important;
}

/* ========== Responsive Design ========== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-section {
        min-height: 75vh;
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero-section .container {
        min-height: 75vh;
        padding-top: 70px;
        padding-bottom: 60px;
    }

    .hero-background,
    .hero-kaaba-placeholder {
        height: 100%;
    }

    .hero-content {
        max-width: 100%;
        padding: 0;
        margin-bottom: 0;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 100px;
        padding-top: 50px;
    }

    .feature-card {
        padding: 28px 20px;
    }

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

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

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

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

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

    .footer-map-col {
        grid-column: span 2;
    }

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

/* Mobile */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero-section .container {
        min-height: 70vh;
        padding-top: 60px;
        padding-bottom: 50px;
    }

    .hero-background,
    .hero-kaaba-placeholder {
        height: 100%;
    }

    .hero-kaaba-placeholder {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    }

    .hero-content {
        padding: 0;
        margin-bottom: 0;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 17px;
        margin-bottom: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 80px;
        padding-top: 40px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 16px;
    }

    .feature-title {
        font-size: 17px;
    }

    .feature-text {
        font-size: 13px;
    }

    .top-bar-content {
        justify-content: center;
        text-align: center;
    }

    .top-bar-left {
        width: 100%;
        justify-content: center;
        margin-bottom: var(--spacing-sm);
    }

    .top-bar-right {
        width: 100%;
        justify-content: center;
    }

    .mobile-toggle {
        display: flex;
    }

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: none;
        padding: var(--spacing-xl) var(--spacing-md);
        padding-top: 70px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1101;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-close {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        padding: var(--spacing-md);
        border-bottom: 1px solid var(--gray-light);
        color: var(--gray-dark);
    }

    .header .nav-menu .nav-link {
        color: var(--gray-dark);
    }

    .header .nav-menu .nav-link:hover,
    .header .nav-menu .nav-link.active {
        color: #fff;
        background: rgba(184, 149, 81); /* gold */
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: var(--spacing-md);
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

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

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

    .service-card {
        height: 200px;
    }

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

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

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

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

    .footer-map-col {
        grid-column: span 1;
    }

    .footer-map-wrapper iframe {
        height: 250px;
    }

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

    .whatsapp-container {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
    }

    .whatsapp-float i {
        font-size: 28px;
    }

    .whatsapp-popup {
        bottom: 70px;
        min-width: 220px;
        max-width: 260px;
        padding: 12px 16px;
    }

    .whatsapp-popup-content p:first-child {
        font-size: 14px;
    }

    .whatsapp-popup-text {
        font-size: 12px !important;
    }

    .arabic-text {
        font-size: 16px;
    }

    .welcome-image-placeholder {
        height: 250px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

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

    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .whatsapp-container {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float i {
        font-size: 26px;
    }

    .whatsapp-popup {
        bottom: 65px;
        min-width: 200px;
        max-width: 240px;
        padding: 10px 14px;
    }

    .whatsapp-popup-content p:first-child {
        font-size: 13px;
    }

    .whatsapp-popup-text {
        font-size: 11px !important;
    }

    .scroll-top {
        bottom: 15px !important;
        right: 15px !important;
        width: 40px !important;
        height: 40px !important;
    }

    .scroll-top i {
        font-size: 16px;
    }

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

    .partners-grid {
        gap: var(--spacing-md);
    }

    .partner-placeholder {
        width: 100px;
        height: 60px;
        font-size: 10px;
    }

    .feature-card {
        padding: var(--spacing-md);
    }
}

/* Print Styles */
@media print {
    .top-bar,
    .header,
    .whatsapp-container,
    .whatsapp-float,
    .whatsapp-popup,
    .scroll-top,
    .footer-social {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    .container {
        max-width: 100%;
    }
}

/* ========== Additional Pages Styles ========== */

/* Page Header Section */
.page-header-section {
    padding: 140px 0 80px;
    text-align: center;
    color: var(--white);
    /* Solid black background (removed gold gradient) */
    background: #000000;
    position: relative;
    overflow: hidden;
}

.page-header-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* remove decorative radial overlays to keep header fully black */
    background: none;
    pointer-events: none;
}

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

.page-header-section h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-header-section p {
    font-size: 18px;
    opacity: 0.9;
}

/* Profile Hero */
.profile-hero {
    position: relative;
    padding: 140px 0 110px;
    color: var(--white);
    /* solid black background (removed gold/white radial overlays) */
    background: #000000;
    overflow: hidden;
}

.profile-hero__shape {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    animation: float 10s ease-in-out infinite;
}

.profile-hero__shape--one {
    top: -40px;
    left: -60px;
    /* tone down shape color to stay within black theme */
    background: rgba(255,255,255,0.02);
}

.profile-hero__shape--two {
    bottom: -80px;
    right: -50px;
    background: rgba(255,255,255,0.02);
    animation-delay: 2s;
}

.profile-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: var(--spacing-xl);
    align-items: center;
}

.profile-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    transition: transform var(--transition-normal),
        box-shadow var(--transition-normal);
}

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

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    padding: var(--spacing-xl);
}

.profile-hero__copy h1 {
    font-size: 44px;
    margin: var(--spacing-sm) 0;
}

.hero-lead {
    font-size: 18px;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: var(--spacing-md);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: var(--spacing-md) 0 var(--spacing-lg);
}

.pill {
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.hero-btn-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.profile-hero__panel h3 {
    color: var(--white);
    margin-bottom: var(--spacing-xs);
}

.panel-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: var(--spacing-sm);
    font-size: 13px;
}

.panel-address {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: var(--spacing-md);
}

.contact-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: var(--spacing-md);
}

.contact-chip {
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
}

.panel-note {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.hero-stats {
    margin-top: var(--spacing-lg);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.stat-icon {
    font-size: 26px;
    margin-bottom: var(--spacing-sm);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(201, 162, 39, 0.12);
    color: var(--primary-gold-light);
}

.stat-title {
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
}

.stat-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-gold-light);
    margin-bottom: 6px;
}

.stat-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

/* Profile Body */
.profile-section {
    background: var(--gray-light);
    padding-top: 90px;
    padding-bottom: 90px;
}

.profile-section .glass-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-md);
    backdrop-filter: none;
}

.profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.08);
    color: var(--primary-red);
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: var(--spacing-sm);
    font-size: 13px;
}

.profile-section h2,
.profile-section h3 {
    color: var(--gray-dark);
    margin-bottom: var(--spacing-sm);
}

.profile-section p {
    color: var(--gray);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-md);
}

.legal-card {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.legal-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(201, 162, 39, 0.1);
    color: var(--primary-gold);
    margin-bottom: var(--spacing-sm);
    font-size: 20px;
}

.legal-title {
    font-weight: 700;
    color: var(--gray-dark);
    margin: 6px 0 4px 0;
}

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

.panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.panel-card h3 {
    margin-bottom: var(--spacing-md);
    color: var(--gray-dark);
}

/* Service Highlight Section */
.service-highlight-section {
    margin: var(--spacing-xl) 0;
}

.service-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.service-col {
    background: white;
    border-radius: 16px;
    padding: var(--spacing-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-col:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--spacing-md);
}

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

.service-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-dark);
    margin: 0;
}

.service-subtitle {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #fafafa;
    border-radius: 12px;
    border-left: 3px solid var(--primary-gold);
    transition: background 0.3s ease;
}

.service-item:hover {
    background: #f5f5f5;
}

.service-item i {
    font-size: 20px;
    color: var(--primary-gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.service-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
}

@media (max-width: 768px) {
    .service-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .service-col {
        padding: var(--spacing-lg);
    }

    .service-header h3 {
        font-size: 20px;
    }

    .service-item {
        padding: 12px;
        gap: 12px;
    }
}

.cta-banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-xl);
    background: #fff7ec;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.cta-eyebrow {
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.cta-banner h3 {
    color: var(--gray-dark);
    max-width: 640px;
}

.cta-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.profile-section .hero-btn-secondary {
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

/* Profile Page */
.profile-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.profile-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.profile-text h2 {
    font-size: 32px;
    color: var(--primary-red);
    margin-bottom: var(--spacing-md);
}

.profile-text p {
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: var(--spacing-md);
}

.arabic-quote {
    font-family: var(--font-arabic);
    font-size: 20px;
    text-align: right;
    direction: rtl;
    padding: var(--spacing-md);
    background: var(--gray-light);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-md);
}

/* Vision Mission */
.vision-mission {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.vision-card,
.mission-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.vm-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-md);
}

.vision-card h3,
.mission-card h3 {
    color: var(--primary-red);
    margin-bottom: var(--spacing-md);
}

.mission-card ul {
    text-align: left;
    list-style: none;
}

.mission-card li {
    padding: var(--spacing-xs) 0;
    padding-left: 25px;
    position: relative;
}

.mission-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

/* Legal Info */
.legal-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.legal-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.legal-icon {
    font-size: 36px;
    margin-bottom: var(--spacing-sm);
}

.legal-item h4 {
    color: var(--primary-red);
    margin-bottom: var(--spacing-xs);
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.contact-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    font-size: 36px;
    margin-bottom: var(--spacing-sm);
}

.contact-card h4 {
    color: var(--primary-red);
    margin-bottom: var(--spacing-xs);
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
    transition: var(--transition-normal);
}

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

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

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-gold);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.package-image {
    height: 200px;
    position: relative;
}

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

.package-duration {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--primary-red);
    color: var(--white);
    padding: 5px 15px;
    border-radius: var(--radius-sm);
    font-size: 13px;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.package-content {
    padding: var(--spacing-lg);
}

.package-content h3 {
    font-size: 20px;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-sm);
}

.package-content p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: var(--spacing-md);
}

.package-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.package-features li {
    padding: var(--spacing-xs) 0;
    font-size: 14px;
    color: var(--gray);
}

.package-price {
    margin-bottom: var(--spacing-md);
}

.price-label {
    display: block;
    font-size: 12px;
    color: var(--gray);
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Info Box */
.info-box {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-gold);
    box-shadow: var(--shadow-sm);
}

.info-box h3 {
    color: var(--primary-red);
    margin-bottom: var(--spacing-sm);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.benefit-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.benefit-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-sm);
}

.benefit-item h4 {
    color: var(--primary-red);
    margin-bottom: var(--spacing-xs);
}

.benefit-item p {
    font-size: 14px;
    color: var(--gray);
}

/* Badal Info */
.badal-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.badal-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.badal-icon {
    font-size: 64px;
    margin-bottom: var(--spacing-md);
}

.badal-card h4 {
    color: var(--primary-red);
    margin-bottom: var(--spacing-sm);
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.process-step {
    text-align: center;
    padding: var(--spacing-lg);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
}

.process-step h4 {
    color: var(--gray-dark);
    margin-bottom: var(--spacing-xs);
}

.process-step p {
    font-size: 14px;
    color: var(--gray);
}

/* CTA Section */
.cta-section {
    background: var(--primary-red);
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: var(--spacing-sm);
}

.cta-section p {
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.cta-section .btn {
    background: var(--primary-gold);
    color: var(--white);
}

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

.btn-lg {
    padding: 18px 40px;
    font-size: 18px;
}

/* Schedule Table */
.schedule-table-wrapper {
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.schedule-table th,
.schedule-table td {
    padding: var(--spacing-md);
    text-align: left;
    border-bottom: 1px solid #eee;
}

.schedule-table th {
    background: var(--primary-red);
    color: var(--white);
    font-weight: 600;
}

.schedule-table tr:hover {
    background: #f9f9f9;
}

.price-text {
    color: var(--primary-red);
    font-weight: 600;
}

.departure-date {
    font-weight: 500;
}

.seat-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.seat-available {
    background: #d4edda;
    color: #155724;
}

.seat-limited {
    background: #fff3cd;
    color: #856404;
}

.seat-almost-full {
    background: #f8d7da;
    color: #721c24;
}

.schedule-notes {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--gray-light);
    border-radius: var(--radius-md);
}

.schedule-notes h4 {
    margin-bottom: var(--spacing-sm);
}

.schedule-notes ul {
    list-style: none;
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

/* Mitra Grid */
.mitra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.mitra-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    transition: var(--transition-normal);
}

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

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

.mitra-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.mitra-icon {
    font-size: 64px;
    margin-bottom: var(--spacing-md);
}

.mitra-card h3 {
    color: var(--primary-red);
    margin-bottom: var(--spacing-sm);
}

.mitra-card p {
    color: var(--gray);
    margin-bottom: var(--spacing-md);
}

.mitra-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: var(--spacing-lg);
}

.mitra-benefits li {
    padding: var(--spacing-xs) 0;
    font-size: 14px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

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

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

.blog-image {
    display: block;
    height: 200px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: var(--spacing-lg);
}

.blog-meta {
    margin-bottom: var(--spacing-sm);
}

.blog-date {
    font-size: 13px;
    color: var(--gray);
}

.blog-content h3 {
    font-size: 18px;
    margin-bottom: var(--spacing-sm);
}

.blog-content h3 a {
    color: var(--gray-dark);
    text-decoration: none;
}

.blog-content h3 a:hover {
    color: var(--primary-red);
}

.blog-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.read-more {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.read-more:hover {
    text-decoration: underline;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xl);
}

.page-link {
    padding: 10px 18px;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    color: var(--gray-dark);
    text-decoration: none;
    transition: var(--transition-fast);
}

.page-link:hover,
.page-link.current {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

/* Article Page */
.article-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.article-main {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
}

.back-link {
    display: inline-block;
    color: var(--primary-red);
    text-decoration: none;
    margin-bottom: var(--spacing-md);
}

.back-link:hover {
    text-decoration: underline;
}

.article-header h1 {
    font-size: 32px;
    color: var(--gray-dark);
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
}

.article-meta {
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid #eee;
    margin-bottom: var(--spacing-lg);
}

.article-featured-image {
    margin-bottom: var(--spacing-lg);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
}

.article-content {
    line-height: 1.8;
    color: var(--gray);
}

.article-content h2,
.article-content h3 {
    color: var(--gray-dark);
    margin: var(--spacing-lg) 0 var(--spacing-md);
}

.article-content p {
    margin-bottom: var(--spacing-md);
}

.article-content ul,
.article-content ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

.article-share {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.article-share a {
    padding: 8px 16px;
    background: var(--gray-light);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--gray-dark);
    font-size: 14px;
    transition: var(--transition-fast);
}

.article-share a:hover {
    background: var(--primary-red);
    color: var(--white);
}

.article-sidebar .sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-lg);
}

.sidebar-widget h4 {
    color: var(--primary-red);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-gold);
}

.related-articles {
    list-style: none;
}

.related-articles li {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid #eee;
}

.related-articles li:last-child {
    border-bottom: none;
}

.related-articles a {
    color: var(--gray-dark);
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 3px;
}

.related-articles a:hover {
    color: var(--primary-red);
}

.related-date {
    font-size: 12px;
    color: var(--gray);
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    padding: var(--spacing-xs) 0;
}

.sidebar-links a {
    color: var(--gray-dark);
    text-decoration: none;
}

.sidebar-links a:hover {
    color: var(--primary-red);
}

/* Privacy Policy */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.policy-content .last-updated {
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
}

.policy-content h2 {
    color: var(--primary-red);
    font-size: 20px;
    margin: var(--spacing-lg) 0 var(--spacing-md);
}

.policy-content p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    color: var(--gray);
}

.policy-content ul {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

.policy-content li {
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
}

.contact-box {
    background: var(--gray-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-md);
}

/* Testimonial Grid (Peluang) */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.testimonial-item {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    margin-bottom: var(--spacing-md);
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.author-info strong {
    display: block;
    color: var(--gray-dark);
}

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

/* Additional Pages Responsive */
@media (max-width: 1024px) {
    .packages-grid,
    .mitra-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .profile-hero__grid,
    .profile-grid,
    .panel-grid {
        grid-template-columns: 1fr;
    }

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

    .benefits-grid,
    .legal-info,
    .contact-info-grid,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .article-wrapper {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        order: 2;
    }
}

@media (max-width: 768px) {
    .page-header-section {
        padding: 100px 0 60px;
    }

    .page-header-section h1 {
        font-size: 28px;
    }

    .profile-hero {
        padding: 110px 0 80px;
    }

    .profile-hero__grid {
        gap: var(--spacing-lg);
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .profile-grid,
    .panel-grid,
    .legal-grid,
    .info-boxes {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .profile-image img {
        max-width: 300px;
    }

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

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

    .benefits-grid,
    .legal-info,
    .contact-info-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .badal-info-grid {
        grid-template-columns: 1fr;
    }

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

    .schedule-notes ul {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .cta-section h2 {
        font-size: 24px;
    }

    .article-header h1 {
        font-size: 24px;
    }

    .article-main {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .pagination {
        flex-wrap: wrap;
    }

    .page-link {
        padding: 8px 12px;
        font-size: 13px;
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* Info Boxes Section */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.info-box {
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
}

.info-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    background: #fff7ec;
}

.info-box__icon {
    font-size: 36px;
    color: var(--primary-gold);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.1);
    margin-left: auto;
    margin-right: auto;
}

.info-box h4 {
    font-size: 18px;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.info-box p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* CTA Banner Enhancement */
.cta-content {
    flex: 1;
    min-width: 300px;
}

.cta-banner .cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-banner .cta-eyebrow i {
    font-size: 18px;
}

/* Legal card styles consolidated above to avoid duplication */

/* ========== Mobile Menu Animations ========== */
@media (max-width: 768px) {
    .nav-item {
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active .nav-item:nth-child(1) {
        transition-delay: 0.1s;
    }
    .nav-menu.active .nav-item:nth-child(2) {
        transition-delay: 0.15s;
    }
    .nav-menu.active .nav-item:nth-child(3) {
        transition-delay: 0.2s;
    }
    .nav-menu.active .nav-item:nth-child(4) {
        transition-delay: 0.25s;
    }
    .nav-menu.active .nav-item:nth-child(5) {
        transition-delay: 0.3s;
    }
    .nav-menu.active .nav-item:nth-child(6) {
        transition-delay: 0.35s;
    }
    .nav-menu.active .nav-item:nth-child(7) {
        transition-delay: 0.4s;
    }

    /* WhatsApp Button Responsive */
    .whatsapp-container {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
    }

    .whatsapp-float i {
        font-size: 28px;
    }

    .whatsapp-popup {
        min-width: 240px;
        max-width: 280px;
        right: -10px;
        font-size: 12px;
        padding: 12px 16px;
    }

    .whatsapp-popup-content p {
        font-size: 13px;
        line-height: 1.4;
    }

    .whatsapp-popup-content p:first-child {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .whatsapp-popup-text {
        font-size: 12px !important;
    }

    .whatsapp-popup-close {
        width: 22px;
        height: 22px;
        font-size: 16px;
    }

    /* Scroll Top Button Responsive */
    .scroll-top {
        bottom: 90px !important;
        right: 20px !important;
        width: 45px !important;
        height: 45px !important;
    }

    .scroll-top i {
        font-size: 18px !important;
    }
}
