/* ===== HAC PAGE STYLES ===== */

/* Hero Section */
.hac-hero-section {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(135deg, rgba(106, 127, 46, 0.9) 0%, rgba(139, 154, 71, 0.8) 100%), 
                url('/default/img/header-hero/hac.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hac-hero-section .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 4rem 0;
}

.hac-hero-section .hero-title {
    font-size: 5rem; /* 4.5rem → 5rem */
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.hac-hero-section .hero-subtitle {
    font-size: 1.8rem; /* 1.6rem → 1.8rem */
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

/* Navigation Tabs */
.hac-navigation-section {
    background: #f8f9fa;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.hac-nav-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.nav-tab {
    background: white;
    border: 2px solid #4e92b7;
    color: #4e92b7;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.nav-tab:hover {
    background: #4e92b7;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 146, 183, 0.3);
}

.nav-tab.active {
    background: #4e92b7;
    color: white;
    box-shadow: 0 8px 25px rgba(78, 146, 183, 0.3);
}

/* Tab Content */
.hac-tab-content {
    display: none;
    padding: 4rem 0;
}

.hac-tab-content.active {
    display: block;
}

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 1rem;
    text-align: center;
}

.section-description {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* Hac Definition Section */
.hac-definition-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.definition-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #4e92b7;
    position: relative;
    overflow: hidden;
}

.definition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
}

.definition-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.definition-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(78, 146, 183, 0.3);
}

.definition-icon i {
    font-size: 3rem;
    color: white;
}

.definition-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #163b4a;
    margin-bottom: 1.5rem;
}

.definition-text .lead {
    font-size: 1.3rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.definition-highlights {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f8f9fa;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 2px solid #4e92b7;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: #4e92b7;
    color: white;
    transform: translateY(-2px);
}

.highlight-item i {
    color: #4e92b7;
    font-size: 1.2rem;
}

.highlight-item:hover i {
    color: white;
}

.highlight-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Info Sections */
.info-section {
    margin: 4rem 0;
    padding: 3rem 0;
}

.info-section:nth-child(even) {
    background: #f8f9fa;
    border-radius: 20px;
    margin: 4rem -2rem;
    padding: 3rem 2rem;
}

.info-content {
    position: relative;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(78, 146, 183, 0.3);
}

.info-badge i {
    font-size: 1.1rem;
}

.info-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 1rem;
}

.info-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #f8f9fa;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #4e92b7;
    transform: translateX(5px);
}

.feature-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

/* Quotes Container */
.quotes-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quote-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #4e92b7;
    position: relative;
    transition: all 0.3s ease;
}

.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(78, 146, 183, 0.2);
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.quote-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #495057;
    line-height: 1.7;
    margin: 0 0 1rem 0;
    padding-right: 3rem;
}

.quote-card cite {
    color: #4e92b7;
    font-weight: 600;
    font-size: 0.9rem;
    font-style: normal;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.requirement-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #4e92b7;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.requirement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(78, 146, 183, 0.2);
    border-color: #68b6e3;
}

.req-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.req-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 0.5rem;
}

.req-content p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Note Card */
.note-card {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #f4d03f;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.note-icon {
    width: 60px;
    height: 60px;
    background: #f4d03f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.note-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #856404;
    margin-bottom: 0.5rem;
}

.note-content p {
    color: #856404;
    margin: 0;
    line-height: 1.6;
}

/* Benefits Container */
.benefits-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #4e92b7;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(78, 146, 183, 0.2);
    border-color: #68b6e3;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Hadith Container */
.hadith-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hadith-card {
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    color: white;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(78, 146, 183, 0.3);
    transition: all 0.3s ease;
}

.hadith-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(78, 146, 183, 0.4);
}

.hadith-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.hadith-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    margin: 0 0 1rem 0;
    padding-right: 3rem;
}

.hadith-card cite {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
    font-style: normal;
}

/* Wisdom Grid */
.wisdom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.wisdom-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #4e92b7;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wisdom-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
}

.wisdom-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(78, 146, 183, 0.2);
    border-color: #68b6e3;
}

.wisdom-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.wisdom-item:hover .wisdom-icon {
    transform: scale(1.1) rotate(5deg);
}

.wisdom-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 0.75rem;
}

.wisdom-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Hac Farziyet */
.hac-farziyet {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    border-left: 4px solid #4e92b7;
}

.hac-farziyet h5 {
    color: #4e92b7;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Hac Note */
.hac-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.hac-note p {
    margin: 0;
    color: #856404;
    font-size: 0.9rem;
}

/* Quote Box */
.quote-box {
    background: #f8f9fa;
    border-left: 4px solid #4e92b7;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 10px 10px 0;
    position: relative;
}

.quote-box i {
    font-size: 2rem;
    color: #4e92b7;
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 0.3;
}

.quote-box blockquote {
    font-style: italic;
    font-size: 1rem;
    color: #495057;
    margin: 0;
    line-height: 1.6;
}

.quote-box cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
    font-style: normal;
    font-weight: 600;
}

/* Lists */
.hac-requirements-list,
.hac-benefits-list,
.hac-wisdom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hac-requirements-list li,
.hac-benefits-list li,
.hac-wisdom-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    color: #495057;
    line-height: 1.5;
}

.hac-requirements-list li:last-child,
.hac-benefits-list li:last-child,
.hac-wisdom-list li:last-child {
    border-bottom: none;
}

.hac-requirements-list li i,
.hac-benefits-list li i,
.hac-wisdom-list li i {
    color: #4e92b7;
    font-size: 1.2rem;
    margin-right: 0.75rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.hac-wisdom-list li {
    flex-direction: column;
    align-items: flex-start;
}

.hac-wisdom-list li i {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

/* Hac Packages */
.hac-packages-section {
    background: #f8f9fa;
    padding: 4rem 0;
    margin-top: 3rem;
}

.hac-package-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #4e92b7;
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.hac-package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(78, 146, 183, 0.2);
    border-color: #68b6e3;
}

.hac-package-card.featured {
    border-color: #f4d03f;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    transform: scale(1.05);
}

.hac-package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: #f39c12;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding: 0;
}

.package-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    z-index: 2;
}

.hac-package-card.featured .package-badge {
    background: linear-gradient(135deg, #f4d03f 0%, #f39c12 100%);
    color: #856404;
}

.package-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.package-price .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4e92b7;
}

.package-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4e92b7;
    line-height: 1;
}

.package-price .period {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
}

.package-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 2rem 2rem;
}

.package-features {
    flex: 1;
    margin-bottom: 2rem;
}

.package-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.package-features .feature-item i {
    color: #4e92b7;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.package-features .feature-item span {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.4;
}

.package-cta {
    text-align: center;
    margin-top: auto;
}

.package-cta .btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

.cta-buttons .btn {
    min-width: 200px;
}

/* Umre Steps */
.umre-step {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #4e92b7;
    position: relative;
    overflow: hidden;
}

.umre-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #163b4a;
    margin: 0;
}

.step-content p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.detail-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.detail-item h6 {
    font-size: 1rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-item h6 i {
    color: #4e92b7;
    font-size: 1.1rem;
}

.detail-item p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.telbiye-text {
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-top: 1rem;
}

.telbiye-text blockquote {
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.telbiye-text cite {
    font-size: 1rem;
    opacity: 0.9;
    font-style: normal;
}

.umre-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #4e92b7;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.summary-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.summary-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 0.5rem;
}

.summary-content p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Requirement Cards */
.requirement-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #4e92b7;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(78, 146, 183, 0.2);
    border-color: #68b6e3;
}

.requirement-card .req-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.requirement-card:hover .req-icon {
    transform: scale(1.1) rotate(5deg);
}

.requirement-card .req-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 1rem;
}

.requirement-card .req-content p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Time Info Cards */
.time-info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #4e92b7;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.time-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(78, 146, 183, 0.2);
    border-color: #68b6e3;
}

.time-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.time-info-card:first-child .time-icon {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.time-info-card:last-child .time-icon {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
    color: white;
}

.time-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 0.75rem;
}

.time-content p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Program Summary */
.program-summary-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.summary-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #4e92b7;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.summary-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.summary-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 1rem;
}

.summary-content p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Umre Poster Styles */
.umre-poster-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.umre-poster {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.poster-header {
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.company-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    position: relative;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4e92b7;
    font-size: 1.8rem;
}

.company-name {
    color: white;
}

.main-name {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.sub-name {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

.decorative-elements {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    pointer-events: none;
}

.swirl-1, .swirl-2 {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.swirl-1 {
    top: 20px;
    right: 20px;
    animation: swirl 10s linear infinite;
}

.swirl-2 {
    top: 60px;
    right: 60px;
    animation: swirl 15s linear infinite reverse;
}

@keyframes swirl {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Price Table */
.price-table {
    margin: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #dc3545;
}

.table-header {
    background: #dc3545;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    font-weight: 700;
    font-size: 1.3rem;
    border-bottom: 3px solid #c82333;
}

.header-cell {
    padding: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.table-row {
    background: #4e92b7;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    font-weight: 600;
    font-size: 1.3rem;
    transition: background 0.3s ease;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.table-row:hover {
    background: #68b6e3;
}

.row-cell {
    padding: 1.5rem 1rem;
    text-align: center;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
}

.row-cell:last-child {
    border-right: none;
}

/* Child Pricing */
.child-pricing {
    margin: 2rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border: 3px solid #4e92b7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.child-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.3rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.age {
    color: #163b4a;
}

.price {
    color: #dc3545;
    font-weight: 700;
}

.child-note {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #4e92b7;
    border-top: 2px solid #e9ecef;
    border-right: 2px solid #e9ecef;
    border-bottom: 2px solid #e9ecef;
}

/* Hotel Info */
.hotel-info {
    margin: 2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 3px solid #4e92b7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hotel-item {
    background: #dc3545;
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    flex: 1;
    min-width: 250px;
    text-align: center;
    border: 2px solid #c82333;
}

.hotel-name {
    font-weight: 700;
    margin-right: 0.5rem;
}

.hotel-distance {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

/* Services and Notes */
.services-notes {
    margin: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 3px solid #4e92b7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-column, .notes-column {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #dc3545;
}

.column-header {
    background: #dc3545;
    color: white;
    padding: 1.5rem;
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 3px solid #c82333;
}

.services-list, .notes-list {
    padding: 2rem;
    margin: 0;
    list-style: none;
}

.services-list li, .notes-list li {
    padding: 0.75rem 0;
    color: #163b4a;
    font-size: 1.1rem;
    line-height: 1.6;
    border-bottom: 2px solid #e9ecef;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.services-list li:last-child, .notes-list li:last-child {
    border-bottom: none;
}

.services-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
}

.notes-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: 700;
}

/* PDF Download Section */
.pdf-download-section {
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    margin: 2rem;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 3px solid #4e92b7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pdf-download-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.pdf-download-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.download-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.download-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc3545;
    font-size: 2.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.download-text {
    flex: 1;
    color: white;
}

.download-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.download-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.download-button {
    flex-shrink: 0;
}

.download-button .btn {
    background: #dc3545;
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
    transition: all 0.3s ease;
}

.download-button .btn:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(220, 53, 69, 0.4);
}

.package-header p {
    opacity: 0.9;
    margin: 0;
}

.package-body {
    padding: 2rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.package-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #495057;
}

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

.package-features li i {
    color: #4e92b7;
    font-size: 1.2rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Timeline */
.hac-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.hac-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #4e92b7 0%, #68b6e3 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    color: white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(78, 146, 183, 0.3);
}

.timeline-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.timeline-date .month {
    font-size: 1rem;
    opacity: 0.9;
}

.timeline-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 0 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #4e92b7;
    flex: 1;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: #4e92b7;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: #4e92b7;
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-activities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.activity {
    background: #f8f9fa;
    color: #4e92b7;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #4e92b7;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(78, 146, 183, 0.2);
    border-color: #68b6e3;
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card .feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Program Hero Section */
.hac-program-info {
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hac-program-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.program-hero {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.program-hero-content {
    flex: 1;
}

.program-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.program-badge i {
    font-size: 1.1rem;
}

.program-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.program-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 0;
}

.program-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    flex-shrink: 0;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    opacity: 0.9;
}

.stat-detail {
    font-size: 1rem;
    opacity: 0.8;
}

/* Program Section Headers */
.program-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(78, 146, 183, 0.3);
}

.section-badge i {
    font-size: 1.1rem;
}

/* Program Timeline */
.program-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.program-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #4e92b7 0%, #68b6e3 100%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    padding-left: 1rem;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(78, 146, 183, 0.3);
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #4e92b7;
    flex: 1;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 30px;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-right-color: #4e92b7;
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: #f8f9fa;
    color: #4e92b7;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #4e92b7;
    color: white;
    transform: translateY(-2px);
}

/* Visit Places */
.visit-places {
    margin-top: 3rem;
}

.visit-category {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-title i {
    color: #4e92b7;
    font-size: 1.3rem;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.place-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #4e92b7;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.place-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
}

.place-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(78, 146, 183, 0.2);
    border-color: #68b6e3;
}

.place-card.special {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-color: #f4d03f;
}

.place-card.special:hover {
    border-color: #f39c12;
}

.place-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.place-card:hover .place-icon {
    transform: scale(1.1) rotate(5deg);
}

.place-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 0.5rem;
}

.place-card p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.special-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f4d03f;
    color: #856404;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
}

/* Mekke Highlights */
.mekke-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.highlight-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #4e92b7;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(78, 146, 183, 0.2);
    border-color: #68b6e3;
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
}

.highlight-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 1rem;
}

.highlight-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.highlight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Program Sections */
.medine-program-section,
.mekke-program-section,
.hac-menasiki-section {
    padding: 4rem 0;
}

.medine-program-section {
    background: #f8f9fa;
}

.mekke-program-section {
    background: white;
}

.hac-menasiki-section {
    background: #f8f9fa;
}

/* Program Cards */
.program-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #4e92b7;
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(78, 146, 183, 0.2);
    border-color: #68b6e3;
}

.program-card .card-header {
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    color: white;
    padding: 1.5rem;
    border-bottom: none;
}

.program-card .card-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
}

.program-card .card-body {
    padding: 1.5rem;
}

.program-card .card-body p {
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

/* Visit Sections */
.visit-section {
    margin: 3rem 0;
}

.visit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.visit-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    border-radius: 2px;
}

.visit-item {
    background: white;
    border: 2px solid #4e92b7;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.visit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(78, 146, 183, 0.2);
    border-color: #68b6e3;
}

.visit-item.special {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-color: #f4d03f;
}

.visit-item.special:hover {
    border-color: #f39c12;
}

.visit-item i {
    font-size: 1.5rem;
    color: #4e92b7;
    margin-bottom: 0.5rem;
}

.visit-item span {
    font-weight: 600;
    color: #163b4a;
    font-size: 0.9rem;
    line-height: 1.3;
}

.visit-item small {
    color: #6c757d;
    font-size: 1rem;
    margin-top: 0.25rem;
    display: block;
}

/* Umre Section */
.umre-section {
    margin: 3rem 0;
    text-align: center;
}

.umre-info {
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(78, 146, 183, 0.3);
}

.umre-info p {
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

/* Menasiki Cards */
.menasiki-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #4e92b7;
    height: 100%;
    transition: all 0.3s ease;
}

.menasiki-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(78, 146, 183, 0.2);
    border-color: #68b6e3;
}

.menasiki-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.menasiki-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.menasiki-card .card-icon i {
    font-size: 2rem;
    color: white;
}

.menasiki-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 1rem;
}

.menasiki-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Veda Program Section */
.veda-program-section {
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    color: white;
    padding: 4rem 0;
}

.veda-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.veda-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.veda-card:hover .veda-icon {
    transform: scale(1.1);
}

.veda-icon i {
    font-size: 3rem;
    color: white;
}

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

.veda-card p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.dua-text {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    position: relative;
}

.dua-text i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.dua-text blockquote {
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

/* CTA Section */
.hac-cta-section {
    background: linear-gradient(135deg, #4e92b7 0%, #68b6e3 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hac-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hac-cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hac-cta-section .btn {
    background: white;
    color: #4e92b7;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.hac-cta-section .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Program Highlights */
.program-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(78, 146, 183, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(78, 146, 183, 0.3);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(78, 146, 183, 0.2);
    transform: translateY(-2px);
}

.highlight-item i {
    color: #4e92b7;
    font-size: 1.1rem;
}

.highlight-item span {
    color: #163b4a;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .program-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .highlight-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hac-hero-section .hero-title {
        font-size: 3rem;
    }
    
    .hac-hero-section .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hac-nav-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-tab {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Definition Section Mobile */
    .definition-content {
        flex-direction: column;
        text-align: center;
    }
    
    .definition-icon {
        width: 100px;
        height: 100px;
    }
    
    .definition-icon i {
        font-size: 2.5rem;
    }
    
    .definition-text h2 {
        font-size: 2rem;
    }
    
    .definition-text .lead {
        font-size: 1.1rem;
    }
    
    .definition-highlights {
        justify-content: center;
    }
    
    .highlight-item {
        flex: 1;
        min-width: 200px;
    }
    
    /* Info Sections Mobile */
    .info-section:nth-child(even) {
        margin: 2rem -1rem;
        padding: 2rem 1rem;
    }
    
    .info-content h3 {
        font-size: 1.5rem;
    }
    
    .info-description {
        font-size: 1rem;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .wisdom-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-container,
    .hadith-container {
        margin-top: 2rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .feature-item i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .requirement-item {
        padding: 1rem;
    }
    
    .req-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .benefit-card {
        padding: 1rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .wisdom-item {
        padding: 1.5rem;
    }
    
    .wisdom-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .note-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .note-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .hac-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 4rem;
    }
    
    .timeline-date {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
    }
    
    .timeline-content {
        margin: 0;
        margin-left: 1rem;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-activities {
        justify-content: center;
    }
    
    /* Program Hero Mobile */
    .program-hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .program-title {
        font-size: 2.5rem;
    }
    
    .program-subtitle {
        font-size: 1.1rem;
    }
    
    .program-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Timeline Mobile */
    .program-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 0;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .timeline-content {
        margin-left: 0;
        padding: 1.5rem;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    /* Places Grid Mobile */
    .places-grid {
        grid-template-columns: 1fr;
    }
    
    .place-card {
        padding: 1.25rem;
    }
    
    .place-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Highlights Mobile */
    .mekke-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlight-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto 1rem;
    }
    
    /* Umre Steps Mobile */
    .umre-step {
        padding: 1.5rem;
    }
    
    .step-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-header h4 {
        font-size: 1.3rem;
    }
    
    .step-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .detail-item {
        padding: 1rem;
    }
    
    .telbiye-text {
        padding: 1.5rem;
    }
    
    .telbiye-text blockquote {
        font-size: 1.1rem;
    }
    
    .umre-summary {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .summary-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .requirement-card {
        padding: 1.5rem;
    }
    
    .requirement-card .req-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .time-info-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .time-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Program Summary Mobile */
    .summary-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .summary-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .summary-content h3 {
        font-size: 1.5rem;
    }
    
    .summary-content p {
        font-size: 1rem;
    }
    
    /* Umre Poster Mobile */
    .umre-poster {
        margin: 1rem;
        border-radius: 15px;
    }
    
    .poster-header {
        padding: 1.5rem;
    }
    
    .company-logo {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .main-name {
        font-size: 2rem;
    }
    
    .sub-name {
        font-size: 1rem;
    }
    
    .decorative-elements {
        display: none;
    }
    
    .price-table {
        margin: 1rem;
        border: 2px solid #dc3545;
    }
    
    .table-header, .table-row {
        grid-template-columns: 1fr;
        font-size: 1.2rem;
    }
    
    .header-cell, .row-cell {
        padding: 1rem;
        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .header-cell:last-child, .row-cell:last-child {
        border-bottom: none;
    }
    
    .child-pricing {
        margin: 1rem;
        padding: 1rem;
        border: 2px solid #4e92b7;
    }
    
    .child-price {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        font-size: 1.2rem;
    }
    
    .hotel-info {
        margin: 1rem;
        flex-direction: column;
        gap: 1rem;
        border: 2px solid #4e92b7;
        padding: 0.75rem;
    }
    
    .hotel-item {
        min-width: auto;
        padding: 1.25rem;
        font-size: 1.1rem;
    }
    
    .services-notes {
        margin: 1rem;
        grid-template-columns: 1fr;
        gap: 1rem;
        border: 2px solid #4e92b7;
        padding: 0.75rem;
    }
    
    /* PDF Download Mobile */
    .pdf-download-section {
        margin: 1rem;
        padding: 1.5rem;
        border: 2px solid #4e92b7;
    }
    
    .download-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .download-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .download-text h3 {
        font-size: 1.5rem;
    }
    
    .download-text p {
        font-size: 1rem;
    }
    
    .download-button .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hac-hero-section .hero-title {
        font-size: 2.5rem;
    }
    
    .hac-hero-section .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hac-info-card,
    .hac-package-card,
    .feature-card {
        padding: 1.5rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .hac-cta-section h2 {
        font-size: 2rem;
    }
    
    .hac-cta-section p {
        font-size: 1rem;
    }
}
