/* ===== CSS Variables ===== */
:root {
    /* Main Theme Colors */
    --primary-green: #0F3D2E;
    --secondary-green: #1F6F5F;
    --gold-accent: #C8A951;
    --light-gold: #F5E6C4;
    
    /* Background Colors */
    --main-bg: #FAF7F0;
    --card-bg: #FFFFFF;
    --section-bg: #F1EFEA;
    
    /* Text Colors */
    --heading-color: #0F3D2E;
    --text-color: #333333;
    --light-text: #777777;
    --footer-text: #EADFB4;
    
    /* Border & Shadow */
    --border-color: #E0D8C3;
    --shadow: rgba(0, 0, 0, 0.1);
    
    /* Fonts */
    --font-heading: 'Amiri', serif;
    --font-body: 'Poppins', sans-serif;
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    animation: fadeInUp 0.8s ease;
    max-width: 600px;
    padding: 0 20px;
}

.preloader-title {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--gold-accent);
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(200, 169, 81, 0.8), 0 0 40px rgba(200, 169, 81, 0.4);
    animation: titleGlow 2s ease-in-out infinite;
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.light-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: 
        conic-gradient(
            from 0deg,
            transparent 0deg,
            rgba(200, 169, 81, 0.3) 10deg,
            transparent 20deg,
            transparent 40deg,
            rgba(200, 169, 81, 0.3) 50deg,
            transparent 60deg,
            transparent 80deg,
            rgba(200, 169, 81, 0.3) 90deg,
            transparent 100deg,
            transparent 120deg,
            rgba(200, 169, 81, 0.3) 130deg,
            transparent 140deg,
            transparent 160deg,
            rgba(200, 169, 81, 0.3) 170deg,
            transparent 180deg,
            transparent 200deg,
            rgba(200, 169, 81, 0.3) 210deg,
            transparent 220deg,
            transparent 240deg,
            rgba(200, 169, 81, 0.3) 250deg,
            transparent 260deg,
            transparent 280deg,
            rgba(200, 169, 81, 0.3) 290deg,
            transparent 300deg,
            transparent 320deg,
            rgba(200, 169, 81, 0.3) 330deg,
            transparent 340deg,
            transparent 360deg
        );
    border-radius: 50%;
    animation: rotateRays 8s linear infinite;
    filter: blur(2px);
    opacity: 0.6;
}

.preloader-logo {
    width: 280px;
    max-width: 80%;
    height: auto;
    position: relative;
    z-index: 2;
    animation: logoZoomPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(200, 169, 81, 0.8));
}

.preloader-tagline {
    color: var(--light-gold);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 400;
    font-family: var(--font-body);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.loader-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 30px;
}

.loading-text {
    color: var(--gold-accent);
    font-size: 32px;
    font-weight: 900;
    font-family: var(--font-body);
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 
        0 0 10px rgba(200, 169, 81, 0.8),
        0 0 20px rgba(200, 169, 81, 0.6),
        0 0 30px rgba(200, 169, 81, 0.4),
        0 0 40px rgba(200, 169, 81, 0.2);
    animation: textPulse 2s ease-in-out infinite;
    margin: 0;
}

.dots-container {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--gold-accent);
    border-radius: 50%;
    box-shadow: 
        0 0 10px rgba(200, 169, 81, 0.8),
        0 0 20px rgba(200, 169, 81, 0.5);
    animation: dotBounce 1.4s ease-in-out infinite;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

.progress-bar {
    width: 300px;
    height: 6px;
    background: rgba(200, 169, 81, 0.2);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 
        inset 0 2px 5px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(200, 169, 81, 0.3);
    margin: 0 auto;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        var(--gold-accent) 0%, 
        #f0d98d 50%, 
        var(--gold-accent) 100%);
    background-size: 200% 100%;
    border-radius: 10px;
    animation: progressMove 2s ease-in-out infinite;
    box-shadow: 
        0 0 10px rgba(200, 169, 81, 0.8),
        0 0 20px rgba(200, 169, 81, 0.5);
}

@keyframes textPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        text-shadow: 
            0 0 10px rgba(200, 169, 81, 0.8),
            0 0 20px rgba(200, 169, 81, 0.6),
            0 0 30px rgba(200, 169, 81, 0.4);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
        text-shadow: 
            0 0 20px rgba(200, 169, 81, 1),
            0 0 40px rgba(200, 169, 81, 0.8),
            0 0 60px rgba(200, 169, 81, 0.6),
            0 0 80px rgba(200, 169, 81, 0.4);
    }
}

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    40% {
        transform: scale(1.3) translateY(-15px);
        opacity: 0.8;
    }
}

@keyframes progressMove {
    0% {
        width: 0%;
        background-position: 0% 0%;
    }
    50% {
        width: 70%;
        background-position: 100% 0%;
    }
    100% {
        width: 100%;
        background-position: 200% 0%;
    }
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(200, 169, 81, 0.8), 0 0 40px rgba(200, 169, 81, 0.4);
    }
    50% {
        text-shadow: 0 0 30px rgba(200, 169, 81, 1), 0 0 60px rgba(200, 169, 81, 0.6), 0 0 80px rgba(200, 169, 81, 0.3);
    }
}

@keyframes rotateRays {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes logoZoomPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 10px 30px rgba(200, 169, 81, 0.8));
    }
    25% {
        transform: scale(1.05);
        filter: drop-shadow(0 15px 40px rgba(200, 169, 81, 1));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 20px 50px rgba(200, 169, 81, 1)) brightness(1.2);
    }
    75% {
        transform: scale(1.05);
        filter: drop-shadow(0 15px 40px rgba(200, 169, 81, 1));
    }
}

@keyframes spinGlow {
    0% {
        transform: rotate(0deg);
        box-shadow: 0 0 20px rgba(200, 169, 81, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(200, 169, 81, 0.8), 0 0 60px rgba(200, 169, 81, 0.4);
    }
    100% {
        transform: rotate(360deg);
        box-shadow: 0 0 20px rgba(200, 169, 81, 0.5);
    }
}

@keyframes textGlow {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(200, 169, 81, 0.8);
    }
    50% {
        opacity: 0.8;
        text-shadow: 0 0 20px rgba(200, 169, 81, 1), 0 0 30px rgba(200, 169, 81, 0.6);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .preloader-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .light-rays {
        width: 300px;
        height: 300px;
    }
    
    .preloader-logo {
        width: 200px;
    }
    
    .preloader-tagline {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .loader-container {
        gap: 10px;
    }
    
    .loading-text {
        font-size: 24px;
        letter-spacing: 4px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .progress-bar {
        width: 250px;
        height: 5px;
    }
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: url('img/bg.png') center/cover fixed;
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 247, 240, 0.85);
    z-index: -1;
}

/* ===== Falling Hearts & Flowers Animation ===== */
.falling-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--primary-green);
    padding: 10px 0;
    border-bottom: 2px solid var(--gold-accent);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-bar-left span {
    color: var(--light-gold);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left .phone-link {
    color: var(--light-gold);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-bar-left .phone-link:hover {
    color: var(--gold-accent);
    transform: scale(1.05);
}

.top-bar-left .phone-link i {
    color: var(--gold-accent);
    font-size: 12px;
}

.top-bar-left .whatsapp-link {
    color: var(--light-gold);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-bar-left .whatsapp-link:hover {
    color: #25D366;
    transform: scale(1.05);
}

.top-bar-left .whatsapp-link i {
    color: #25D366;
    font-size: 14px;
}

.top-bar-left i {
    color: var(--gold-accent);
    font-size: 12px;
}

.top-bar-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-link {
    width: 30px;
    height: 30px;
    background: rgba(200, 169, 81, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-link:hover {
    background: var(--gold-accent);
    color: var(--primary-green);
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-bar-left {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header Navbar ===== */
.navbar {
    background: linear-gradient(135deg, var(--primary-green) 0%, #0a2a1f 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px var(--shadow);
    border-bottom: 3px solid var(--gold-accent);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-accent);
    font-size: 22px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-img {
        height: 45px;
    }
}

.logo i {
    font-size: 26px;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    color: var(--light-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold-accent);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 12px;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--gold-accent);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--light-gold);
    transform: scale(1.1);
}

.btn-login, .btn-register {
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-login {
    background: transparent;
    color: var(--light-gold);
    border: 2px solid var(--gold-accent);
}

.btn-login:hover {
    background: var(--gold-accent);
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 169, 81, 0.3);
}

.btn-register {
    background: var(--gold-accent);
    color: var(--primary-green);
}

.btn-register:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 169, 81, 0.3);
}

/* ===== Hero Section ===== */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 61, 46, 0.4), rgba(15, 61, 46, 0.7));
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--gold-accent);
}

.dot:hover {
    background: rgba(200, 169, 81, 0.7);
    transform: scale(1.2);
}

.dot.active {
    background: var(--gold-accent);
    width: 30px;
    border-radius: 6px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-bismillah {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-bismillah img {
    width: 400px;
    max-width: 90%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slide .hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.decorative-line {
    width: 80px;
    height: 3px;
    background: var(--gold-accent);
    margin: 0 auto 20px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero .highlight {
    color: var(--gold-accent);
    display: block;
    font-size: 64px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--light-gold);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--secondary-green);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(31, 111, 95, 0.4);
}

.btn-secondary {
    background: var(--light-gold);
    color: var(--primary-green);
    border: 2px solid var(--gold-accent);
}

.btn-secondary:hover {
    background: var(--gold-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(200, 169, 81, 0.4);
}

/* ===== Academy Section ===== */
.academy-section {
    padding: 80px 0;
    background: rgba(241, 239, 234, 0.95);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.academy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(200, 169, 81, 0.15) 50px, rgba(200, 169, 81, 0.15) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(200, 169, 81, 0.15) 50px, rgba(200, 169, 81, 0.15) 51px),
        repeating-linear-gradient(45deg, transparent, transparent 70px, rgba(200, 169, 81, 0.1) 70px, rgba(200, 169, 81, 0.1) 71px),
        repeating-linear-gradient(-45deg, transparent, transparent 70px, rgba(200, 169, 81, 0.1) 70px, rgba(200, 169, 81, 0.1) 71px);
    z-index: 0;
}

.academy-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: 
        radial-gradient(circle at center, transparent 40%, rgba(200, 169, 81, 0.08) 40%, rgba(200, 169, 81, 0.08) 41%, transparent 41%),
        radial-gradient(circle at center, transparent 60%, rgba(200, 169, 81, 0.08) 60%, rgba(200, 169, 81, 0.08) 61%, transparent 61%),
        radial-gradient(circle at center, transparent 80%, rgba(200, 169, 81, 0.08) 80%, rgba(200, 169, 81, 0.08) 81%, transparent 81%);
    border-radius: 50%;
    z-index: 0;
}

.academy-section .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.decorative-ornament {
    width: 60px;
    height: 2px;
    background: var(--gold-accent);
    margin: 0 auto 15px;
    position: relative;
}

.decorative-ornament::before,
.decorative-ornament::after {
    content: '◆';
    position: absolute;
    color: var(--gold-accent);
    font-size: 12px;
    top: -8px;
}

.decorative-ornament::before {
    left: -20px;
}

.decorative-ornament::after {
    right: -20px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--light-text);
    font-weight: 400;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-accent);
    box-shadow: 0 10px 30px rgba(200, 169, 81, 0.2);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(31, 111, 95, 0.3);
}

.icon-wrapper i {
    font-size: 36px;
    color: var(--gold-accent);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--light-text);
    font-size: 15px;
    line-height: 1.6;
}

/* ===== CTA Banner ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(200, 169, 81, 0.1);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(200, 169, 81, 0.1);
    border-radius: 50%;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--gold-accent);
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

/* ===== YouTube Video Section ===== */
.video-section {
    padding: 40px 0;
    background: rgba(241, 239, 234, 0.95);
    backdrop-filter: blur(5px);
}

.video-wrapper {
    max-width: 400px;
    width: 100%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--gold-accent);
}

.video-wrapper iframe {
    width: 100%;
    height: 225px;
    display: block;
}

@media (max-width: 768px) {
    .video-wrapper {
        max-width: 100%;
    }
    
    .video-wrapper iframe {
        height: 200px;
    }
}

/* ===== Floating YouTube Video ===== */
.video-float {
    position: fixed;
    bottom: 120px;
    left: 30px;
    z-index: 998;
    width: 320px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--gold-accent);
}

.video-float-header {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.video-float-header span {
    color: var(--gold-accent);
    font-weight: 600;
    font-size: 13px;
    font-family: var(--font-body);
    flex: 1;
}

.video-unmute {
    background: rgba(200, 169, 81, 0.2);
    border: 1px solid var(--gold-accent);
    color: var(--gold-accent);
    font-size: 14px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
    width: 30px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.video-unmute:hover {
    background: var(--gold-accent);
    color: var(--primary-green);
}

.video-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.video-close:hover {
    background: var(--gold-accent);
    color: var(--primary-green);
    transform: rotate(90deg);
}

.video-float iframe {
    width: 100%;
    height: 180px;
    display: block;
    border: none;
}

.video-float #youtube-player {
    width: 100%;
    height: 180px;
    display: block;
}

@media (max-width: 768px) {
    .video-float {
        width: 280px;
        bottom: 100px;
        left: 20px;
    }
    
    .video-float iframe,
    .video-float #youtube-player {
        height: 160px;
    }
    
    .video-float-header span {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .video-float {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
    }
}

/* ===== Features Section ===== */
.features-section {
    padding: 80px 0;
    background: rgba(250, 247, 240, 0.7);
    backdrop-filter: blur(5px);
}

.feature-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--gold-accent);
    backdrop-filter: blur(10px);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid var(--gold-accent);
}

.feature-icon i {
    font-size: 32px;
    color: var(--secondary-green);
}

.feature-box h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--light-text);
    font-size: 14px;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, rgba(15, 61, 46, 0.95) 0%, rgba(10, 42, 31, 0.95) 100%);
    color: var(--footer-text);
    padding: 60px 0 20px;
    border-top: 4px solid var(--gold-accent);
    backdrop-filter: blur(10px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-family: var(--font-heading);
    color: var(--gold-accent);
    font-size: 22px;
    margin-bottom: 20px;
}

.footer-column p {
    line-height: 1.8;
    font-size: 14px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: var(--gold-accent);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--gold-accent);
    font-size: 16px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--secondary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icons a:hover {
    background: var(--gold-accent);
    color: var(--primary-green);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(200, 169, 81, 0.3);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--footer-text);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .navbar .container {
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 2;
    }
    
    .logo {
        order: 1;
        font-size: 18px;
    }
    
    .logo span {
        font-size: 18px;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: var(--primary-green);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }
    
    .nav-menu.active {
        max-height: 500px;
        padding: 10px 0;
    }
    
    .nav-menu a {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(200, 169, 81, 0.2);
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    /* Hide Login/Register buttons on mobile */
    .auth-buttons {
        display: none !important;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero .highlight {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .feature-cards,
    .feature-boxes {
        grid-template-columns: 1fr;
    }
    
    .cta-banner h2 {
        font-size: 24px;
        padding: 0 20px;
    }
    
    /* Top Bar Mobile Layout */
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        padding: 10px 15px;
    }
    
    .top-bar-left {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        width: 100%;
    }
    
    .top-bar-left span,
    .top-bar-left a {
        font-size: 12px;
        justify-content: center;
    }
    
    .top-bar-left .phone-link,
    .top-bar-left .whatsapp-link {
        font-size: 12px;
    }
    
    .top-bar-right {
        gap: 12px;
        justify-content: center;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}


/* ===== Easy Steps Section (Two Column with Image) ===== */
.easy-steps-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.easy-steps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(200, 169, 81, 0.15) 50px, rgba(200, 169, 81, 0.15) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(200, 169, 81, 0.15) 50px, rgba(200, 169, 81, 0.15) 51px),
        repeating-linear-gradient(45deg, transparent, transparent 70px, rgba(200, 169, 81, 0.1) 70px, rgba(200, 169, 81, 0.1) 71px),
        repeating-linear-gradient(-45deg, transparent, transparent 70px, rgba(200, 169, 81, 0.1) 70px, rgba(200, 169, 81, 0.1) 71px);
    z-index: 0;
}

.easy-steps-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: 
        radial-gradient(circle at center, transparent 40%, rgba(200, 169, 81, 0.08) 40%, rgba(200, 169, 81, 0.08) 41%, transparent 41%),
        radial-gradient(circle at center, transparent 60%, rgba(200, 169, 81, 0.08) 60%, rgba(200, 169, 81, 0.08) 61%, transparent 61%),
        radial-gradient(circle at center, transparent 80%, rgba(200, 169, 81, 0.08) 80%, rgba(200, 169, 81, 0.08) 81%, transparent 81%);
    border-radius: 50%;
    z-index: 0;
}

.easy-steps-section .container {
    position: relative;
    z-index: 1;
}

.steps-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.steps-header h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--heading-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.highlight-gold {
    color: var(--gold-accent);
}

.steps-header p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.8;
}

.steps-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.steps-left-col {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.step-item-inline {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-icon-small {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon-small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-text h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--heading-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.step-text p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
}

.steps-right-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.steps-image-box {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.steps-image-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ===== About Academy Section (Two Column with Image) ===== */
.about-academy-section {
    padding: 80px 0;
    background: rgba(241, 239, 234, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.about-academy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(200, 169, 81, 0.15) 50px, rgba(200, 169, 81, 0.15) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(200, 169, 81, 0.15) 50px, rgba(200, 169, 81, 0.15) 51px),
        repeating-linear-gradient(45deg, transparent, transparent 70px, rgba(200, 169, 81, 0.1) 70px, rgba(200, 169, 81, 0.1) 71px),
        repeating-linear-gradient(-45deg, transparent, transparent 70px, rgba(200, 169, 81, 0.1) 70px, rgba(200, 169, 81, 0.1) 71px);
    z-index: 0;
}

.about-academy-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: 
        radial-gradient(circle at center, transparent 40%, rgba(200, 169, 81, 0.08) 40%, rgba(200, 169, 81, 0.08) 41%, transparent 41%),
        radial-gradient(circle at center, transparent 60%, rgba(200, 169, 81, 0.08) 60%, rgba(200, 169, 81, 0.08) 61%, transparent 61%),
        radial-gradient(circle at center, transparent 80%, rgba(200, 169, 81, 0.08) 80%, rgba(200, 169, 81, 0.08) 81%, transparent 81%);
    border-radius: 50%;
    z-index: 0;
}

.about-academy-section .container {
    position: relative;
    z-index: 1;
}

.about-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-left-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-box {
    width: 100%;
    max-width: 450px;
}

.about-image-box img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

.about-right-col h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    color: var(--heading-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-right-col p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 30px;
}

.academy-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.academy-feature-inline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.academy-feature-inline i {
    font-size: 20px;
    color: var(--gold-accent);
    flex-shrink: 0;
}

.academy-feature-inline span {
    font-size: 15px;
    color: var(--heading-color);
    font-weight: 600;
}

/* ===== Why Choose Us Section (Two Column with Image) ===== */
.why-us-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(200, 169, 81, 0.15) 50px, rgba(200, 169, 81, 0.15) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(200, 169, 81, 0.15) 50px, rgba(200, 169, 81, 0.15) 51px),
        repeating-linear-gradient(45deg, transparent, transparent 70px, rgba(200, 169, 81, 0.1) 70px, rgba(200, 169, 81, 0.1) 71px),
        repeating-linear-gradient(-45deg, transparent, transparent 70px, rgba(200, 169, 81, 0.1) 70px, rgba(200, 169, 81, 0.1) 71px);
    z-index: 0;
}

.why-us-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: 
        radial-gradient(circle at center, transparent 40%, rgba(200, 169, 81, 0.08) 40%, rgba(200, 169, 81, 0.08) 41%, transparent 41%),
        radial-gradient(circle at center, transparent 60%, rgba(200, 169, 81, 0.08) 60%, rgba(200, 169, 81, 0.08) 61%, transparent 61%),
        radial-gradient(circle at center, transparent 80%, rgba(200, 169, 81, 0.08) 80%, rgba(200, 169, 81, 0.08) 81%, transparent 81%);
    border-radius: 50%;
    z-index: 0;
}

.why-us-section .container {
    position: relative;
    z-index: 1;
}

.why-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.why-left-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-image-box {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.why-image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.why-right-col h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    color: var(--heading-color);
    margin-bottom: 25px;
}

.why-right-col p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.why-features-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.why-col-left,
.why-col-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-feature-bullet {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.why-feature-bullet i {
    font-size: 10px;
    color: var(--gold-accent);
    margin-top: 6px;
    flex-shrink: 0;
}

.why-feature-bullet span {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .steps-two-column,
    .about-two-column,
    .why-two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .steps-header h2,
    .about-right-col h2,
    .why-right-col h2 {
        font-size: 32px;
    }
    
    .academy-features-list,
    .why-features-two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .steps-header h2 {
        font-size: 28px;
    }
    
    .step-item-inline {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ===== Old Styles (Keep for other sections) ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.step-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.step-box:hover {
    transform: translateY(-10px);
    border-color: var(--gold-accent);
    box-shadow: 0 15px 40px rgba(200, 169, 81, 0.3);
}

.step-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-accent), #d4b76a);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(200, 169, 81, 0.4);
}

.step-icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 25px;
    box-shadow: 0 8px 25px rgba(31, 111, 95, 0.3);
}

.step-icon-circle i {
    font-size: 45px;
    color: var(--gold-accent);
}

.step-box h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.step-box p {
    color: var(--light-text);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== About Academy Section ===== */
.about-academy-section {
    padding: 80px 0;
    background: rgba(241, 239, 234, 0.85);
    backdrop-filter: blur(10px);
}

.about-academy-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-left: 6px solid var(--gold-accent);
}

.about-academy-header h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    color: var(--heading-color);
    margin-bottom: 30px;
    text-align: center;
}

.about-academy-content p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.9;
    margin-bottom: 35px;
    text-align: justify;
}

.academy-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.academy-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(245, 230, 196, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.academy-feature:hover {
    background: rgba(245, 230, 196, 0.6);
    transform: translateX(5px);
}

.academy-feature i {
    font-size: 22px;
    color: var(--secondary-green);
}

.academy-feature span {
    font-size: 15px;
    color: var(--heading-color);
    font-weight: 600;
}

/* ===== Why Us Section ===== */
.why-us-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}

.why-us-header {
    text-align: center;
    margin-bottom: 40px;
}

.why-us-header h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--heading-color);
}

.why-us-content {
    max-width: 1000px;
    margin: 0 auto 50px;
}

.why-intro {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: justify;
}

.why-features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.why-feature-item:hover {
    transform: translateY(-8px);
    border-color: var(--gold-accent);
    box-shadow: 0 10px 30px rgba(200, 169, 81, 0.25);
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-gold), var(--gold-accent));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(200, 169, 81, 0.3);
}

.feature-icon-box i {
    font-size: 32px;
    color: var(--primary-green);
}

.why-feature-item span {
    font-size: 15px;
    color: var(--heading-color);
    font-weight: 600;
    line-height: 1.5;
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-academy-wrapper {
        padding: 40px 30px;
    }
    
    .academy-features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-features-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .steps-header h2 {
        font-size: 32px;
    }
    
    .about-academy-header h2 {
        font-size: 28px;
    }
    
    .why-us-header h2 {
        font-size: 32px;
    }
    
    .why-features-list {
        grid-template-columns: 1fr;
    }
}

/* ===== 3 Easy Steps Section ===== */
.steps-section {
    padding: 80px 0;
    background: rgba(250, 247, 240, 0.7);
    backdrop-filter: blur(5px);
}

.steps-section .section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.steps-section .section-header h2 {
    color: var(--gold-accent);
    font-size: 36px;
    margin-bottom: 20px;
}

.steps-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.steps-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-icon-inline {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--gold-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon-inline i {
    font-size: 28px;
    color: var(--gold-accent);
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--heading-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.gold-text {
    color: var(--gold-accent);
}

.step-content p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.7;
}

.steps-right {
    display: flex;
    justify-content: center;
}

.quran-image-wrapper {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.quran-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== About Section ===== */
.about-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-left {
    display: flex;
    justify-content: center;
}

.calligraphy-wrapper {
    width: 100%;
    max-width: 400px;
}

.calligraphy-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.about-right h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--heading-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-right p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bullet-item i {
    color: var(--gold-accent);
    font-size: 18px;
}

.bullet-item span {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
}

/* ===== Why Choose Us Section ===== */
.why-choose-section {
    padding: 80px 0;
    background: rgba(250, 247, 240, 0.7);
    backdrop-filter: blur(5px);
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-left {
    display: flex;
    justify-content: center;
}

.person-image-wrapper {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.person-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.why-right h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--heading-color);
    margin-bottom: 25px;
}

.why-right p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.why-features-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.features-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-bullet {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-bullet i {
    color: var(--gold-accent);
    font-size: 10px;
    margin-top: 6px;
    flex-shrink: 0;
}

.feature-bullet span {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== Responsive for New Sections ===== */
@media (max-width: 968px) {
    .steps-layout,
    .about-layout,
    .why-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-layout {
        direction: ltr;
    }
    
    .about-left {
        order: 2;
    }
    
    .about-right {
        order: 1;
    }
    
    .why-features-columns {
        grid-template-columns: 1fr;
    }
    
    .about-bullets {
        grid-template-columns: 1fr;
    }
}



/* ===== Bismillah Image Style ===== */
.bismillah-image {
    text-align: center;
    margin-bottom: 25px;
    display: block;
}

.bismillah-image img {
    width: 280px;
    max-width: 100%;
    height: auto;
    opacity: 1;
    filter: drop-shadow(0 2px 8px rgba(200, 169, 81, 0.3));
    display: inline-block;
}

.section-header .bismillah-image {
    margin-bottom: 20px;
}

.about-right-col .bismillah-image,
.why-right-col .bismillah-image {
    text-align: left;
    margin-bottom: 20px;
}

.steps-header .bismillah-image {
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .bismillah-image img {
        width: 200px;
    }
}


/* ===== Page Content Section ===== */
.page-content-section {
    padding: 80px 0;
    background: rgba(241, 239, 234, 0.95);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.page-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(200, 169, 81, 0.15) 50px, rgba(200, 169, 81, 0.15) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(200, 169, 81, 0.15) 50px, rgba(200, 169, 81, 0.15) 51px),
        repeating-linear-gradient(45deg, transparent, transparent 70px, rgba(200, 169, 81, 0.1) 70px, rgba(200, 169, 81, 0.1) 71px),
        repeating-linear-gradient(-45deg, transparent, transparent 70px, rgba(200, 169, 81, 0.1) 70px, rgba(200, 169, 81, 0.1) 71px);
    z-index: 0;
}

.page-content-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: 
        radial-gradient(circle at center, transparent 40%, rgba(200, 169, 81, 0.08) 40%, rgba(200, 169, 81, 0.08) 41%, transparent 41%),
        radial-gradient(circle at center, transparent 60%, rgba(200, 169, 81, 0.08) 60%, rgba(200, 169, 81, 0.08) 61%, transparent 61%),
        radial-gradient(circle at center, transparent 80%, rgba(200, 169, 81, 0.08) 80%, rgba(200, 169, 81, 0.08) 81%, transparent 81%);
    border-radius: 50%;
    z-index: 0;
}

.page-content-section .container {
    position: relative;
    z-index: 1;
}

.page-content-section h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--heading-color);
    margin-bottom: 20px;
    text-align: center;
}

.page-content-section p {
    font-size: 16px;
    color: var(--text-color);
    text-align: center;
    line-height: 1.8;
}

/* ===== About Page Content Styles ===== */
.about-page-layout {
    display: grid;
    grid-template-columns: 550px 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
}

.about-images-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.about-images-column .about-image-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-images-column .about-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(200, 169, 81, 0.3);
}

.about-images-column .about-image-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.about-text-column {
    padding-right: 20px;
}

.about-text-column p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: justify;
}

.about-bottom-layout {
    display: grid;
    grid-template-columns: 1fr 550px;
    gap: 50px;
    align-items: start;
    margin-top: 60px;
}

.about-quran-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-top: 30px;
}

.about-quran-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-bottom-text {
    padding-left: 20px;
}

.about-bottom-text p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: justify;
}

@media (max-width: 968px) {
    .about-page-layout,
    .about-bottom-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-images-column {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-quran-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .about-images-column {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .about-images-column .about-image-item img {
        height: 250px;
    }
    
    .about-text-column p,
    .about-bottom-text p {
        text-align: left;
    }
    
    .about-quran-image {
        max-width: 100%;
    }
}

/* ===== Old About Styles (Keep for backward compatibility) ===== */
.about-content-text {
    max-width: 1000px;
    margin: 0 auto 50px;
}

.about-content-text p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: justify;
}

.about-images-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.about-image-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-image-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(200, 169, 81, 0.3);
}

.about-image-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

@media (max-width: 968px) {
    .about-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-images-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content-text p {
        text-align: left;
    }
}


/* ===== Team Section ===== */
.team-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(200, 169, 81, 0.08) 60px, rgba(200, 169, 81, 0.08) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(200, 169, 81, 0.08) 60px, rgba(200, 169, 81, 0.08) 61px);
    z-index: 0;
}

.team-section .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.team-slider-wrapper {
    position: relative;
    margin-top: 60px;
    overflow: hidden;
    padding: 0 50px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.team-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    justify-content: flex-start;
    transform: translateX(0);
}

.team-member {
    min-width: calc(25% - 16px);
    max-width: 320px;
    min-height: 520px;
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    border: 2px solid rgba(200, 169, 81, 0.3);
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--gold-accent), var(--primary-green));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(15, 61, 46, 0.2);
    border-color: var(--gold-accent);
}

.team-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 61, 46, 0.05), rgba(200, 169, 81, 0.05));
    border-radius: 50%;
    margin: 25px auto 0;
    border: 5px solid var(--gold-accent);
    box-shadow: 0 8px 25px rgba(200, 169, 81, 0.3);
}

.team-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, rgba(15, 61, 46, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
}

.team-member:hover .team-image {
    border-color: var(--primary-green);
    box-shadow: 0 10px 35px rgba(15, 61, 46, 0.4);
    transform: scale(1.05);
}

.team-member:hover .team-image::after {
    opacity: 1;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px 20px 30px;
    text-align: center;
    background: #FFFFFF;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    color: var(--primary-green);
    margin-bottom: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    line-height: 1.5;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member:hover .team-info h3 {
    color: var(--gold-accent);
    transform: scale(1.03);
}

.team-role {
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--primary-green), #0a5a3e);
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(15, 61, 46, 0.3);
    border: 1px solid rgba(200, 169, 81, 0.4);
    line-height: 1.4;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member:hover .team-role {
    background: linear-gradient(135deg, var(--gold-accent), #d4b76a);
    box-shadow: 0 5px 18px rgba(200, 169, 81, 0.5);
    transform: scale(1.05);
}

.team-message {
    color: #444444;
    font-size: 13px;
    line-height: 1.9;
    margin-top: 10px;
    text-align: justify;
    padding: 0 10px;
    flex: 1;
    word-wrap: break-word;
    white-space: normal;
    overflow-wrap: break-word;
    font-family: 'Open Sans', sans-serif;
}

.team-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--gold-accent);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(200, 169, 81, 0.3);
}

.team-nav:hover {
    background: var(--primary-green);
    transform: translateY(-50%) scale(1.1);
}

.team-prev {
    left: 0;
}

.team-next {
    right: 0;
}

@media (max-width: 1200px) {
    .team-member {
        min-width: calc(25% - 19px);
    }
    
    .team-image {
        width: 160px;
        height: 160px;
    }
    
    .team-info h3 {
        font-size: 17px;
    }
    
    .team-message {
        font-size: 12px;
    }
}

@media (max-width: 968px) {
    .team-member {
        min-width: calc(33.333% - 17px);
    }
    
    .team-image {
        width: 150px;
        height: 150px;
    }
    
    .team-info h3 {
        font-size: 16px;
    }
    
    .team-role {
        font-size: 10px;
        padding: 7px 15px;
    }
    
    .team-message {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .team-member {
        min-width: calc(50% - 10px);
    }
    
    .team-slider-wrapper {
        padding: 0 40px;
    }
    
    .team-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .team-info {
        padding: 20px 15px 25px;
    }
    
    .team-info h3 {
        font-size: 16px;
    }
    
    .team-role {
        font-size: 10px;
        padding: 6px 14px;
    }
    
    .team-message {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .team-member {
        min-width: calc(100% - 0px);
    }
    
    .team-slider-wrapper {
        padding: 0 35px;
    }
    
    .team-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .team-info {
        padding: 20px 15px 25px;
    }
    
    .team-info h3 {
        font-size: 17px;
        margin-bottom: 12px;
    }
}

@media (max-width: 968px) {
    .team-member {
        min-width: calc(33.333% - 17px);
    }
    
    .team-slider-wrapper {
        padding: 0 50px;
    }
    
    .team-image {
        width: 140px;
        height: 140px;
    }
    
    .team-info h3 {
        font-size: 16px;
    }
    
    .team-role {
        font-size: 10px;
        padding: 5px 12px;
    }
    
    .team-message {
        font-size: 11px;
    }
    
    .team-nav {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .team-member {
        min-width: calc(50% - 10px);
    }
    
    .team-slider-wrapper {
        padding: 0 50px;
    }
    
    .team-image {
        width: 160px;
        height: 160px;
        margin: 20px auto 0;
    }
    
    .team-info {
        padding: 18px 12px 22px;
    }
    
    .team-info h3 {
        font-size: 17px;
    }
    
    .team-role {
        font-size: 10px;
        padding: 5px 12px;
    }
    
    .team-message {
        font-size: 11px;
        line-height: 1.6;
    }
    
    .team-nav {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .team-member {
        min-width: calc(100% - 0px);
    }
    
    .team-slider-wrapper {
        padding: 0 45px;
    }
    
    .team-image {
        width: 180px;
        height: 180px;
        margin: 20px auto 0;
    }
    
    .team-info {
        padding: 20px 15px 25px;
    }
    
    .team-info h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .team-role {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 10px;
    }
    
    .team-message {
        font-size: 12px;
        line-height: 1.7;
    }
    
    .team-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}


/* ===== Blog Section ===== */
.blog-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(200, 169, 81, 0.08) 60px, rgba(200, 169, 81, 0.08) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(200, 169, 81, 0.08) 60px, rgba(200, 169, 81, 0.08) 61px);
    z-index: 0;
}

.blog-section .container {
    position: relative;
    z-index: 1;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.blog-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(200, 169, 81, 0.2);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(15, 61, 46, 0.15);
    border-color: var(--gold-accent);
}

.blog-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--gold-accent), #d4b76a);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(200, 169, 81, 0.4);
}

.blog-content {
    padding: 18px;
}

.blog-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: nowrap;
    overflow: hidden;
}

.blog-meta span {
    color: var(--light-text);
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.blog-meta i {
    color: var(--gold-accent);
    font-size: 9px;
}

.blog-content h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--heading-color);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-content h3 {
    color: var(--secondary-green);
}

.blog-excerpt {
    color: var(--text-color);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}

.tag {
    background: rgba(200, 169, 81, 0.1);
    color: var(--gold-accent);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background: var(--gold-accent);
    color: var(--primary-green);
    transform: translateX(5px);
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}

.no-posts i {
    font-size: 80px;
    color: var(--gold-accent);
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-posts h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.no-posts p {
    color: var(--light-text);
    font-size: 16px;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-meta {
        font-size: 12px;
    }
}


/* ===== Single Post Page ===== */
.post-single {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.98);
}

.post-single .container {
    max-width: 900px;
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-accent), #d4b76a);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.post-header h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--heading-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.post-meta span {
    color: var(--light-text);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-meta i {
    color: var(--gold-accent);
}

.post-featured-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 40px;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content h2, .post-content h3 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    margin: 30px 0 15px;
}

.post-tags {
    padding: 25px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 30px;
}

.post-tags strong {
    color: var(--heading-color);
    margin-right: 10px;
}

.post-navigation {
    text-align: center;
    margin-top: 40px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: var(--gold-accent);
    color: var(--primary-green);
    transform: translateX(-5px);
}

.related-posts {
    padding: 80px 0;
    background: rgba(241, 239, 234, 0.95);
}

.related-posts h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .post-header h1 {
        font-size: 28px;
    }
    
    .post-featured-image {
        height: 300px;
    }
    
    .post-content {
        font-size: 15px;
    }
}


/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-button {
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-button i {
    font-size: 38px;
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button i {
        font-size: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}


/* ===== Contact Form Section ===== */
.contact-form-section {
    padding: 60px 0;
    background: rgba(241, 239, 234, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(200, 169, 81, 0.15) 50px, rgba(200, 169, 81, 0.15) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(200, 169, 81, 0.15) 50px, rgba(200, 169, 81, 0.15) 51px),
        repeating-linear-gradient(45deg, transparent, transparent 70px, rgba(200, 169, 81, 0.1) 70px, rgba(200, 169, 81, 0.1) 71px),
        repeating-linear-gradient(-45deg, transparent, transparent 70px, rgba(200, 169, 81, 0.1) 70px, rgba(200, 169, 81, 0.1) 71px);
    z-index: 0;
}

.contact-form-section .container {
    position: relative;
    z-index: 1;
}

.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Info Side */
.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-box {
    background: rgba(255, 255, 255, 0.98);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gold-accent);
}

.contact-info-box h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.contact-info-box > p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-detail-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(15, 61, 46, 0.3);
}

.contact-icon i {
    font-size: 16px;
    color: var(--gold-accent);
}

.contact-text h4 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 3px;
}

.contact-text p {
    font-size: 12px;
    color: var(--text-color);
    line-height: 1.5;
}

.contact-text a {
    color: var(--secondary-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: var(--gold-accent);
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gold-accent);
    height: 320px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Contact Form Side */
.contact-form-side {
    display: flex;
    flex-direction: column;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.98);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gold-accent);
    height: 100%;
}

.contact-form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: var(--gold-accent);
    font-size: 13px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid rgba(200, 169, 81, 0.3);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 3px rgba(200, 169, 81, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-submit {
    text-align: center;
    margin-top: 8px;
}

.btn-submit {
    padding: 12px 35px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border: none;
    border-radius: 25px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(15, 61, 46, 0.3);
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--gold-accent), #d4b76a);
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 169, 81, 0.4);
}

.btn-submit i {
    font-size: 14px;
}

.form-message {
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    display: none;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4CAF50;
    color: #2E7D32;
    display: block;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    border: 2px solid #F44336;
    color: #C62828;
    display: block;
}

@media (max-width: 968px) {
    .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-info-box,
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .contact-info-box h3,
    .contact-form-wrapper h3 {
        font-size: 20px;
    }
    
    .contact-details-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .contact-form-section {
        padding: 50px 0;
    }
    
    .contact-info-box,
    .contact-form-wrapper {
        padding: 20px 15px;
    }
    
    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .contact-detail-item {
        gap: 10px;
    }
    
    .contact-icon {
        width: 38px;
        height: 38px;
    }
    
    .contact-icon i {
        font-size: 15px;
    }
    
    .btn-submit {
        width: 100%;
        justify-content: center;
        padding: 12px 25px;
    }
    
    .map-container {
        height: 250px;
    }
}


/* ===== Packages Section ===== */
.packages-section {
    padding: 60px 0;
    background: rgba(241, 239, 234, 0.95);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(200, 169, 81, 0.15) 50px, rgba(200, 169, 81, 0.15) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(200, 169, 81, 0.15) 50px, rgba(200, 169, 81, 0.15) 51px),
        repeating-linear-gradient(45deg, transparent, transparent 70px, rgba(200, 169, 81, 0.1) 70px, rgba(200, 169, 81, 0.1) 71px),
        repeating-linear-gradient(-45deg, transparent, transparent 70px, rgba(200, 169, 81, 0.1) 70px, rgba(200, 169, 81, 0.1) 71px);
    z-index: 0;
}

.packages-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: 
        radial-gradient(circle at center, transparent 40%, rgba(200, 169, 81, 0.08) 40%, rgba(200, 169, 81, 0.08) 41%, transparent 41%),
        radial-gradient(circle at center, transparent 60%, rgba(200, 169, 81, 0.08) 60%, rgba(200, 169, 81, 0.08) 61%, transparent 61%),
        radial-gradient(circle at center, transparent 80%, rgba(200, 169, 81, 0.08) 80%, rgba(200, 169, 81, 0.08) 81%, transparent 81%);
    border-radius: 50%;
    z-index: 0;
}

.packages-section .container {
    position: relative;
    z-index: 1;
}

/* Country Tabs */
.country-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.country-tab {
    padding: 12px 30px;
    background: white;
    border: 2px solid var(--gold-accent);
    border-radius: 25px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--heading-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.country-tab:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
}

.country-tab.active {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border-color: var(--primary-green);
}

.country-tab i {
    font-size: 16px;
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.country-packages {
    display: none;
}

.country-packages.active {
    display: grid;
}

/* Simple Packages Grid - Single Currency */
.packages-grid-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .packages-grid-simple {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .packages-grid-simple {
        grid-template-columns: 1fr;
    }
}

/* Package Card */
.package-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(200, 169, 81, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--gold-accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(15, 61, 46, 0.2);
    border-color: var(--gold-accent);
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card.popular {
    border-color: var(--gold-accent);
    border-width: 3px;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(135deg, var(--gold-accent), #d4b76a);
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(200, 169, 81, 0.4);
}

.package-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(200, 169, 81, 0.2);
}

.package-header h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.package-price .currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-accent);
}

.package-price .amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.package-price .period {
    font-size: 14px;
    color: var(--light-text);
}

.package-details {
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(200, 169, 81, 0.1);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item i {
    color: var(--gold-accent);
    font-size: 16px;
    width: 20px;
}

.detail-item span {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}

.package-features {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.feature-item i {
    color: var(--secondary-green);
    font-size: 16px;
}

.feature-item span {
    font-size: 14px;
    color: var(--text-color);
}

.btn-order {
    width: 100%;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border: none;
    border-radius: 25px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-order:hover {
    background: linear-gradient(135deg, var(--gold-accent), #d4b76a);
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 169, 81, 0.4);
}

.btn-trial {
    width: 100%;
    padding: 14px 25px;
    background: linear-gradient(135deg, #C8A951, #d4b76a, #C8A951);
    background-size: 200% 100%;
    color: white;
    border: 2px solid #d4b76a;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(200, 169, 81, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-trial::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-trial:hover::before {
    left: 100%;
}

.btn-trial:hover {
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(200, 169, 81, 0.6);
    border-color: #C8A951;
}

.btn-trial i {
    font-size: 18px;
    animation: crownBounce 2s ease-in-out infinite;
}

@keyframes crownBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Pricing Comparison Table */
.pricing-comparison {
    margin: 50px 0 30px 0;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gold-accent);
}

.pricing-comparison h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 30px;
}

.pricing-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-x: auto;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1.2fr repeat(6, 1fr);
    border-bottom: 2px solid rgba(200, 169, 81, 0.2);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 10px 10px 0 0;
}

.pricing-header .pricing-cell {
    color: white;
    font-weight: 700;
    font-size: 16px;
    padding: 18px 15px;
}

.pricing-cell {
    padding: 20px 15px;
    text-align: center;
    font-size: 17px;
    color: var(--text-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-cell.country-name {
    justify-content: flex-start;
    gap: 10px;
    font-size: 18px;
    color: var(--primary-green);
    font-weight: 700;
}

.pricing-cell.country-name i {
    color: var(--gold-accent);
    font-size: 20px;
}

.pricing-row:not(.pricing-header):hover {
    background: rgba(245, 230, 196, 0.3);
}

/* ===== Downloads Page ===== */
.downloads-content-section {
    padding: 60px 0;
    background: rgba(241, 239, 234, 0.95);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.downloads-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(200, 169, 81, 0.15) 50px, rgba(200, 169, 81, 0.15) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(200, 169, 81, 0.15) 50px, rgba(200, 169, 81, 0.15) 51px),
        repeating-linear-gradient(45deg, transparent, transparent 70px, rgba(200, 169, 81, 0.1) 70px, rgba(200, 169, 81, 0.1) 71px),
        repeating-linear-gradient(-45deg, transparent, transparent 70px, rgba(200, 169, 81, 0.1) 70px, rgba(200, 169, 81, 0.1) 71px);
    z-index: 0;
}

.downloads-content-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: 
        radial-gradient(circle at center, transparent 40%, rgba(200, 169, 81, 0.08) 40%, rgba(200, 169, 81, 0.08) 41%, transparent 41%),
        radial-gradient(circle at center, transparent 60%, rgba(200, 169, 81, 0.08) 60%, rgba(200, 169, 81, 0.08) 61%, transparent 61%),
        radial-gradient(circle at center, transparent 80%, rgba(200, 169, 81, 0.08) 80%, rgba(200, 169, 81, 0.08) 81%, transparent 81%);
    border-radius: 50%;
    z-index: 0;
}

.downloads-content-section .container {
    position: relative;
    z-index: 1;
}

.downloads-header {
    text-align: center;
    margin-bottom: 50px;
}

.downloads-header h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.downloads-header p {
    font-size: 18px;
    color: var(--text-color);
}

.downloads-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(200, 169, 81, 0.3);
}

.table-header {
    display: grid;
    grid-template-columns: 80px 1fr 1fr 180px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-bottom: 2px solid var(--gold-accent);
}

.table-header .table-cell {
    color: white;
    font-weight: 700;
    font-size: 16px;
    padding: 18px 20px;
    text-align: center;
}

.table-row {
    display: grid;
    grid-template-columns: 80px 1fr 1fr 180px;
    border-bottom: 2px solid rgba(200, 169, 81, 0.2);
    transition: all 0.3s ease;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:hover {
    background: rgba(245, 230, 196, 0.3);
}

.table-row.special-row {
    background: linear-gradient(135deg, rgba(15, 61, 46, 0.05), rgba(200, 169, 81, 0.05));
}

.table-cell {
    padding: 18px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-color);
}

.table-cell.arabic-text {
    font-size: 20px;
    direction: rtl;
    font-family: var(--font-heading);
    color: var(--primary-green);
}

.btn-download-small {
    padding: 8px 18px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.btn-download-small:hover {
    background: linear-gradient(135deg, var(--gold-accent), #d4b76a);
    transform: scale(1.05);
}

/* Sponsor Section */
.sponsor-section {
    margin: 50px 0 30px 0;
}

.sponsor-box {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(15, 61, 46, 0.3);
    position: relative;
    overflow: hidden;
}

.sponsor-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 169, 81, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.sponsor-box i {
    font-size: 35px;
    color: var(--gold-accent);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.sponsor-box h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: white;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.sponsor-box p {
    font-size: 14px;
    color: var(--light-gold);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Policy Section */
.policy-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.policy-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gold-accent);
}

.policy-box h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--heading-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-box h3 i {
    color: var(--gold-accent);
    font-size: 24px;
}

.policy-box > p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.policy-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.policy-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(245, 230, 196, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.policy-item:hover {
    background: rgba(245, 230, 196, 0.5);
    transform: translateX(5px);
}

.policy-item i {
    color: var(--secondary-green);
    font-size: 18px;
}

.policy-item span {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.5;
}

.policy-item strong {
    color: var(--primary-green);
    font-weight: 700;
}

/* Achievements Section */
.achievements-section {
    margin: 50px 0;
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gold-accent);
}

.achievements-header {
    text-align: center;
    margin-bottom: 40px;
}

.achievements-header h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.achievements-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.achievements-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievements-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.achievements-text {
    display: flex;
    flex-direction: column;
}

.achievements-text h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.achievements-text h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--gold-accent);
    font-weight: 600;
    margin-bottom: 20px;
}

.achievements-text p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.btn-start-learning {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border: none;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 10px;
    box-shadow: 0 5px 20px rgba(15, 61, 46, 0.3);
    align-self: flex-start;
}

.btn-start-learning:hover {
    background: linear-gradient(135deg, var(--gold-accent), #d4b76a);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 169, 81, 0.5);
}

.btn-start-learning i {
    font-size: 18px;
}

/* Fee & Payment FAQs Section */
.faq-section {
    margin: 50px 0;
    padding: 40px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.faq-header h2 i {
    color: var(--gold-accent);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-accordion {
    background: white;
    margin-bottom: 15px;
    border-radius: 12px;
    border: 2px solid var(--light-gold);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-accordion:hover {
    border-color: var(--gold-accent);
    box-shadow: 0 4px 20px rgba(200, 169, 81, 0.15);
}

.faq-item-accordion.active {
    border-color: var(--primary-green);
    box-shadow: 0 5px 25px rgba(15, 61, 46, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: var(--light-gold);
}

.faq-item-accordion.active .faq-question {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
}

.faq-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.faq-text {
    flex: 1;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-green);
}

.faq-item-accordion.active .faq-text {
    color: white;
}

.faq-arrow {
    font-size: 16px;
    color: var(--gold-accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item-accordion.active .faq-arrow {
    color: var(--light-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f9f9f9;
}

.faq-answer p {
    padding: 20px 25px;
    margin: 0;
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.8;
    border-top: 1px solid var(--light-gold);
}

/* Spiritual Journey Section */
.spiritual-journey-section {
    margin: 50px 0;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(15, 61, 46, 0.3);
    position: relative;
    overflow: hidden;
}

.spiritual-journey-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 169, 81, 0.15) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.journey-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.journey-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: white;
    margin-bottom: 15px;
}

.journey-content p {
    font-size: 18px;
    color: var(--light-gold);
    margin-bottom: 30px;
}

.btn-free-trial-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 45px;
    background: linear-gradient(135deg, #C8A951, #d4b76a, #C8A951);
    background-size: 200% 100%;
    color: white;
    border: 2px solid #d4b76a;
    border-radius: 35px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(200, 169, 81, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-free-trial-large:hover {
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(200, 169, 81, 0.7);
}

.btn-free-trial-large i {
    font-size: 20px;
    animation: crownBounce 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* ===== Services Page ===== */
.services-content-section {
    padding: 60px 0;
    background: rgba(241, 239, 234, 0.95);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.services-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(200, 169, 81, 0.15) 50px, rgba(200, 169, 81, 0.15) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(200, 169, 81, 0.15) 50px, rgba(200, 169, 81, 0.15) 51px),
        repeating-linear-gradient(45deg, transparent, transparent 70px, rgba(200, 169, 81, 0.1) 70px, rgba(200, 169, 81, 0.1) 71px),
        repeating-linear-gradient(-45deg, transparent, transparent 70px, rgba(200, 169, 81, 0.1) 70px, rgba(200, 169, 81, 0.1) 71px);
    z-index: 0;
}

.services-content-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: 
        radial-gradient(circle at center, transparent 40%, rgba(200, 169, 81, 0.08) 40%, rgba(200, 169, 81, 0.08) 41%, transparent 41%),
        radial-gradient(circle at center, transparent 60%, rgba(200, 169, 81, 0.08) 60%, rgba(200, 169, 81, 0.08) 61%, transparent 61%),
        radial-gradient(circle at center, transparent 80%, rgba(200, 169, 81, 0.08) 80%, rgba(200, 169, 81, 0.08) 81%, transparent 81%);
    border-radius: 50%;
    z-index: 0;
}

.services-content-section .container {
    position: relative;
    z-index: 1;
}

.services-intro-floating {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gold-accent);
    margin-bottom: 50px;
}

.services-intro-floating h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary-green);
    margin-bottom: 25px;
    text-align: center;
}

.services-intro-floating .floating-image {
    float: right;
    width: 45%;
    max-width: 500px;
    margin: 0 0 25px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.services-intro-floating p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.services-intro-floating p:last-child {
    margin-bottom: 0;
}

.services-intro-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gold-accent);
    margin-bottom: 50px;
}

.services-intro-image {
    width: 100%;
    height: 100%;
}

.services-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.services-intro-text h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.services-intro-text p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.services-intro-text p:last-child {
    margin-bottom: 0;
}

.services-intro {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gold-accent);
    margin-bottom: 50px;
}

.services-intro h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary-green);
    margin-bottom: 25px;
    text-align: center;
}

.services-intro p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.services-intro p:last-child {
    margin-bottom: 0;
}

.islamic-concepts-section {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    padding: 40px 50px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(15, 61, 46, 0.3);
    position: relative;
    overflow: hidden;
}

.islamic-concepts-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 169, 81, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.concepts-icon {
    width: 100px;
    height: 100px;
    background: rgba(200, 169, 81, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    border: 3px solid var(--gold-accent);
}

.concepts-icon i {
    font-size: 45px;
    color: var(--gold-accent);
}

.concepts-content {
    position: relative;
    z-index: 1;
}

.concepts-content h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: white;
    margin-bottom: 15px;
}

.concepts-content p {
    font-size: 16px;
    color: var(--light-gold);
    line-height: 1.8;
    margin: 0;
}

.service-section-large {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    padding: 30px 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(15, 61, 46, 0.3);
}

.service-section-large .service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.service-section-large .service-header i {
    font-size: 32px;
    color: var(--gold-accent);
}

.service-section-large .service-header h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: white;
    margin: 0;
}

.service-section-large p {
    font-size: 16px;
    color: var(--light-gold);
    line-height: 1.8;
    margin: 0;
    text-align: left;
}

.service-section-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gold-accent);
    margin-bottom: 40px;
}

.service-image-large {
    width: 100%;
    height: 100%;
}

.service-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.service-content-large {
    display: flex;
    flex-direction: column;
}

.service-content-large .service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.service-content-large .service-header i {
    font-size: 32px;
    color: var(--gold-accent);
}

.service-content-large .service-header h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--primary-green);
    margin: 0;
}

.service-content-large p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
    text-align: left;
}

.service-section {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    padding: 30px 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(15, 61, 46, 0.3);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.service-header i {
    font-size: 32px;
    color: var(--gold-accent);
}

.service-header h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: white;
    margin: 0;
}

.service-section p {
    font-size: 16px;
    color: var(--light-gold);
    line-height: 1.8;
    margin: 0;
    text-align: left;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(200, 169, 81, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--gold-accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(15, 61, 46, 0.2);
    border-color: var(--gold-accent);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 15px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 32px;
    color: var(--gold-accent);
}

.service-card h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
    text-align: left;
}

/* Responsive */
@media (max-width: 968px) {
    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .sponsor-section {
        margin: 40px 0 25px 0;
    }
    
    .pricing-comparison {
        margin: 40px 0 25px 0;
        padding: 30px 25px;
    }
    
    .pricing-comparison h3 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .pricing-row {
        grid-template-columns: 1fr repeat(6, 0.9fr);
    }
    
    .pricing-header .pricing-cell {
        font-size: 14px;
        padding: 15px 8px;
    }
    
    .pricing-cell {
        padding: 18px 10px;
        font-size: 15px;
    }
    
    .pricing-cell.country-name {
        font-size: 16px;
    }
    
    .pricing-cell.country-name i {
        font-size: 18px;
    }
    
    .sponsor-box {
        padding: 20px 20px;
    }
    
    .sponsor-box i {
        font-size: 30px;
        margin-bottom: 10px;
    }
    
    .sponsor-box h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .sponsor-box p {
        font-size: 13px;
    }
    
    .policy-section {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .achievements-section {
        padding: 40px 30px;
    }
    
    .achievements-two-column {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .achievements-header h2 {
        font-size: 28px;
    }
    
    .achievements-text h3 {
        font-size: 24px;
    }
    
    .achievements-text h4 {
        font-size: 18px;
    }
    
    .spiritual-journey-section {
        padding: 50px 30px;
    }
    
    .journey-content h2 {
        font-size: 28px;
    }
    
    .services-content-section {
        padding: 50px 0;
    }
    
    .services-intro-floating {
        padding: 30px 25px;
    }
    
    .services-intro-floating h2 {
        font-size: 26px;
    }
    
    .services-intro-floating .floating-image {
        width: 50%;
        margin: 0 0 20px 25px;
    }
    
    .services-intro-floating p {
        font-size: 15px;
    }
    
    .services-intro-with-image {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 25px;
    }
    
    .services-intro-image {
        height: 300px;
    }
    
    .services-intro-text h2 {
        font-size: 26px;
    }
    
    .services-intro-text p {
        font-size: 15px;
    }
    
    .service-section-large {
        padding: 25px 30px;
    }
    
    .islamic-concepts-section {
        grid-template-columns: auto 1fr;
        gap: 25px;
        padding: 35px 40px;
    }
    
    .concepts-icon {
        width: 90px;
        height: 90px;
    }
    
    .concepts-icon i {
        font-size: 40px;
    }
    
    .concepts-content h3 {
        font-size: 24px;
    }
    
    .concepts-content p {
        font-size: 15px;
    }
    
    .service-section-large .service-header h3 {
        font-size: 22px;
    }
    
    .service-section-large p {
        font-size: 15px;
    }
    
    .services-intro {
        padding: 30px 25px;
    }
    
    .services-intro h2 {
        font-size: 26px;
    }
    
    .services-intro p {
        font-size: 15px;
    }
    
    .service-section-with-image {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 25px;
    }
    
    .service-image-large {
        height: 300px;
    }
    
    .service-content-large .service-header h3 {
        font-size: 22px;
    }
    
    .service-content-large p {
        font-size: 15px;
    }
    
    .service-section {
        padding: 25px 30px;
    }
    
    .service-header h3 {
        font-size: 22px;
    }
    
    .service-section p {
        font-size: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-card-image {
        height: 180px;
    }
    
    .downloads-table {
        overflow-x: auto;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 60px 1fr 1fr 140px;
        min-width: 600px;
    }
    
    .table-header .table-cell {
        font-size: 14px;
        padding: 15px 15px;
    }
    
    .table-cell {
        padding: 15px 15px;
        font-size: 14px;
    }
    
    .table-cell.arabic-text {
        font-size: 18px;
    }
    
    .btn-download-small {
        padding: 7px 14px;
        font-size: 13px;
    }
    
    .country-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .country-tab {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .packages-section {
        padding: 50px 0;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card {
        padding: 25px 20px;
    }
    
    .package-price .amount {
        font-size: 36px;
    }
    
    .sponsor-section {
        margin: 30px 0 20px 0;
    }
    
    .pricing-comparison {
        margin: 30px 0 20px 0;
        padding: 25px 15px;
    }
    
    .pricing-comparison h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .pricing-table {
        overflow-x: auto;
    }
    
    .pricing-row {
        grid-template-columns: 0.8fr repeat(6, 0.7fr);
        min-width: 650px;
    }
    
    .pricing-header .pricing-cell {
        font-size: 11px;
        padding: 12px 6px;
    }
    
    .pricing-cell {
        padding: 15px 8px;
        font-size: 13px;
    }
    
    .pricing-cell.country-name {
        font-size: 14px;
        gap: 8px;
    }
    
    .pricing-cell.country-name i {
        font-size: 16px;
    }
    
    .sponsor-box {
        padding: 18px 15px;
    }
    
    .sponsor-box i {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .sponsor-box h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .sponsor-box p {
        font-size: 12px;
    }
    
    .policy-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .policy-box {
        padding: 25px 20px;
    }
    
    .policy-box h3 {
        font-size: 20px;
    }
    
    .faq-accordion {
        padding: 0 15px;
    }
    
    .faq-header h2 {
        font-size: 24px;
        flex-direction: column;
        gap: 10px;
    }
    
    .faq-question {
        padding: 15px 18px;
        gap: 12px;
    }
    
    .faq-icon {
        font-size: 24px;
    }
    
    .faq-text {
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 15px 18px;
        font-size: 14px;
    }
    
    .faq-arrow {
        font-size: 14px;
    }
    
    .achievements-section {
        padding: 30px 20px;
    }
    
    .achievements-two-column {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .achievements-header h2 {
        font-size: 24px;
    }
    
    .achievements-text h3 {
        font-size: 22px;
    }
    
    .achievements-text h4 {
        font-size: 16px;
    }
    
    .achievements-text p {
        font-size: 14px;
    }
    
    .spiritual-journey-section {
        padding: 40px 20px;
    }
    
    .journey-content h2 {
        font-size: 24px;
    }
    
    .journey-content p {
        font-size: 16px;
    }
    
    .btn-free-trial-large {
        padding: 14px 35px;
        font-size: 16px;
    }
    
    .services-content-section {
        padding: 40px 0;
    }
    
    .services-intro-floating {
        padding: 25px 20px;
    }
    
    .services-intro-floating h2 {
        font-size: 22px;
    }
    
    .services-intro-floating .floating-image {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 20px 0;
        display: block;
    }
    
    .services-intro-floating p {
        font-size: 14px;
    }
    
    .services-intro-with-image {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px 20px;
    }
    
    .services-intro-image {
        height: 250px;
    }
    
    .services-intro-text h2 {
        font-size: 22px;
    }
    
    .services-intro-text p {
        font-size: 14px;
    }
    
    .service-section-large {
        padding: 20px 20px;
    }
    
    .islamic-concepts-section {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 25px;
        text-align: center;
    }
    
    .concepts-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    
    .concepts-icon i {
        font-size: 35px;
    }
    
    .concepts-content h3 {
        font-size: 22px;
    }
    
    .concepts-content p {
        font-size: 14px;
    }
    
    .service-section-large .service-header {
        gap: 10px;
    }
    
    .service-section-large .service-header i {
        font-size: 28px;
    }
    
    .service-section-large .service-header h3 {
        font-size: 20px;
    }
    
    .service-section-large p {
        font-size: 14px;
    }
    
    .services-intro {
        padding: 25px 20px;
    }
    
    .services-intro h2 {
        font-size: 22px;
    }
    
    .services-intro p {
        font-size: 14px;
    }
    
    .service-section-with-image {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px 20px;
    }
    
    .service-image-large {
        height: 250px;
    }
    
    .service-content-large .service-header {
        gap: 10px;
    }
    
    .service-content-large .service-header i {
        font-size: 28px;
    }
    
    .service-content-large .service-header h3 {
        font-size: 20px;
    }
    
    .service-content-large p {
        font-size: 14px;
    }
    
    .service-section {
        padding: 20px 20px;
    }
    
    .service-header {
        gap: 10px;
    }
    
    .service-header i {
        font-size: 28px;
    }
    
    .service-header h3 {
        font-size: 20px;
    }
    
    .service-section p {
        font-size: 14px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-card-image {
        height: 160px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 28px;
    }
    
    .service-card h4 {
        font-size: 20px;
    }
    
    .service-card p {
        font-size: 14px;
    }
    
    .downloads-content-section {
        padding: 40px 0;
    }
    
    .downloads-header h2 {
        font-size: 28px;
    }
    
    .downloads-header p {
        font-size: 16px;
    }
    
    .downloads-table {
        overflow-x: auto;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 50px 0.8fr 1fr 120px;
        min-width: 500px;
    }
    
    .table-header .table-cell {
        font-size: 12px;
        padding: 12px 10px;
    }
    
    .table-cell {
        padding: 12px 10px;
        font-size: 13px;
    }
    
    .table-cell.arabic-text {
        font-size: 16px;
    }
    
    .btn-download-small {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .policy-box {
        padding: 25px 20px;
    }
}


/* ===== Payments Page Styles ===== */
.payments-content-section {
    padding: 60px 0;
    background: rgba(241, 239, 234, 0.95);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.payments-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(200, 169, 81, 0.15) 50px, rgba(200, 169, 81, 0.15) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(200, 169, 81, 0.15) 50px, rgba(200, 169, 81, 0.15) 51px),
        repeating-linear-gradient(45deg, transparent, transparent 70px, rgba(200, 169, 81, 0.1) 70px, rgba(200, 169, 81, 0.1) 71px),
        repeating-linear-gradient(-45deg, transparent, transparent 70px, rgba(200, 169, 81, 0.1) 70px, rgba(200, 169, 81, 0.1) 71px);
    z-index: 0;
}

.payments-content-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: 
        radial-gradient(circle at center, transparent 40%, rgba(200, 169, 81, 0.08) 40%, rgba(200, 169, 81, 0.08) 41%, transparent 41%),
        radial-gradient(circle at center, transparent 60%, rgba(200, 169, 81, 0.08) 60%, rgba(200, 169, 81, 0.08) 61%, transparent 61%),
        radial-gradient(circle at center, transparent 80%, rgba(200, 169, 81, 0.08) 80%, rgba(200, 169, 81, 0.08) 81%, transparent 81%);
    border-radius: 50%;
    z-index: 0;
}

.payments-content-section .container {
    position: relative;
    z-index: 1;
}

.payments-intro {
    text-align: center;
    margin-bottom: 50px;
}

.payments-intro h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.payments-intro p {
    font-size: 18px;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

.payment-category {
    margin-bottom: 60px;
}

.payment-category h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary-green);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(15, 61, 46, 0.05), rgba(26, 92, 69, 0.05));
    border-radius: 15px;
    border: 2px solid var(--gold-accent);
    box-shadow: 0 4px 15px rgba(200, 169, 81, 0.2);
    transition: all 0.3s ease;
    cursor: default;
}

.payment-category h3:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 61, 46, 0.3);
}

.payment-category h3:hover i {
    color: var(--light-gold);
}

.payment-category h3 i {
    font-size: 24px;
    color: var(--gold-accent);
    transition: all 0.3s ease;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.payment-methods-grid-center {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-method-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--light-gold);
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.payment-method-card:hover {
    border-color: var(--gold-accent);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(200, 169, 81, 0.2);
}

.payment-logo {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 10px;
}

.payment-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.bank-logo img {
    max-height: 55px;
}

.jazzcash-logo img {
    max-height: 60px;
}

.easypaisa-logo img {
    max-height: 60px;
}

.payment-icon {
    font-size: 48px;
    color: var(--gold-accent);
    margin-bottom: 20px;
    text-align: center;
}

.payment-method-card h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary-green);
    margin-bottom: 12px;
    text-align: center;
}

.payment-method-card p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
}

.payment-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-color);
}

.payment-features i {
    color: var(--primary-green);
    font-size: 16px;
}

/* Pakistan Payment Cards */
.pakistan-card {
    border-color: var(--primary-green);
}

.pakistan-card:hover {
    border-color: var(--gold-accent);
    box-shadow: 0 8px 30px rgba(15, 61, 46, 0.2);
}

.pakistan-icon {
    color: var(--primary-green);
}

.pakistan-icon.jazzcash {
    color: #E31E24;
}

.pakistan-icon.easypaisa {
    color: #00A859;
}

.bank-details {
    background: var(--light-gold);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(200, 169, 81, 0.3);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item strong {
    font-size: 14px;
    color: var(--primary-green);
    font-weight: 600;
}

.detail-item span {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
    font-family: monospace;
}

.payment-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff3cd;
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    border-left: 4px solid #ffc107;
}

.payment-note i {
    color: #856404;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.payment-note span {
    font-size: 13px;
    color: #856404;
    line-height: 1.5;
}

.payment-steps {
    margin-top: 20px;
}

.payment-steps h5 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.payment-steps ol {
    margin: 0;
    padding-left: 20px;
}

.payment-steps li {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 8px;
}

/* Payment Instructions */
.payment-instructions {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin: 50px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.payment-instructions h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary-green);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(15, 61, 46, 0.05), rgba(26, 92, 69, 0.05));
    border-radius: 15px;
    border: 2px solid var(--gold-accent);
    box-shadow: 0 4px 15px rgba(200, 169, 81, 0.2);
    transition: all 0.3s ease;
    cursor: default;
}

.payment-instructions h3:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 61, 46, 0.3);
}

.payment-instructions h3:hover i {
    color: var(--light-gold);
}

.payment-instructions h3 i {
    font-size: 24px;
    color: var(--gold-accent);
    transition: all 0.3s ease;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.instruction-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.instruction-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.instruction-content h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.instruction-content p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

/* Payment Help Section */
.payment-help {
    background: linear-gradient(135deg, #0F3D2E 0%, #1a5c45 100%);
    padding: 40px 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 5px 25px rgba(15, 61, 46, 0.2);
}

.help-content i {
    font-size: 50px;
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.help-content h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: white;
    margin-bottom: 12px;
}

.help-content p {
    font-size: 16px;
    color: var(--light-gold);
    margin-bottom: 25px;
}

.btn-contact-payment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 35px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    line-height: 1;
}

.btn-contact-payment i {
    font-size: 20px;
    color: white;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 0;
}

.btn-contact-payment:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Responsive Styles for Payments */
@media (max-width: 992px) {
    .payment-methods-grid-center {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .payments-intro h2 {
        font-size: 28px;
    }
    
    .payments-intro p {
        font-size: 16px;
    }
    
    .payment-category h3 {
        font-size: 20px;
        padding: 12px 20px;
        flex-direction: column;
        gap: 8px;
    }
    
    .payment-category h3 i {
        font-size: 20px;
    }
    
    .payment-methods-grid,
    .payment-methods-grid-center {
        grid-template-columns: 1fr;
    }
    
    .payment-logo {
        height: 60px;
    }
    
    .payment-instructions {
        padding: 30px 20px;
    }
    
    .payment-instructions h3 {
        font-size: 20px;
        padding: 12px 20px;
        flex-direction: column;
        gap: 8px;
    }
    
    .payment-instructions h3 i {
        font-size: 20px;
    }
    
    .instructions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .payment-help {
        padding: 35px 20px;
    }
    
    .help-content i {
        font-size: 40px;
    }
    
    .help-content h3 {
        font-size: 22px;
    }
    
    .help-content p {
        font-size: 15px;
    }
    
    .btn-contact-payment {
        font-size: 15px;
        padding: 12px 28px;
    }
}


/* ===== Careers Page Styles ===== */
.careers-content-section {
    padding: 60px 0;
    background: rgba(241, 239, 234, 0.95);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.careers-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(200, 169, 81, 0.15) 50px, rgba(200, 169, 81, 0.15) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(200, 169, 81, 0.15) 50px, rgba(200, 169, 81, 0.15) 51px),
        repeating-linear-gradient(45deg, transparent, transparent 70px, rgba(200, 169, 81, 0.1) 70px, rgba(200, 169, 81, 0.1) 71px),
        repeating-linear-gradient(-45deg, transparent, transparent 70px, rgba(200, 169, 81, 0.1) 70px, rgba(200, 169, 81, 0.1) 71px);
    z-index: 0;
}

.careers-content-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: 
        radial-gradient(circle at center, transparent 40%, rgba(200, 169, 81, 0.08) 40%, rgba(200, 169, 81, 0.08) 41%, transparent 41%),
        radial-gradient(circle at center, transparent 60%, rgba(200, 169, 81, 0.08) 60%, rgba(200, 169, 81, 0.08) 61%, transparent 61%),
        radial-gradient(circle at center, transparent 80%, rgba(200, 169, 81, 0.08) 80%, rgba(200, 169, 81, 0.08) 81%, transparent 81%);
    border-radius: 50%;
    z-index: 0;
}

.careers-content-section .container {
    position: relative;
    z-index: 1;
}

.careers-intro {
    text-align: center;
    margin-bottom: 60px;
}

.careers-intro h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.careers-intro p {
    font-size: 18px;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Why Join Section */
.why-join-section {
    margin-bottom: 70px;
}

.why-join-section h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--light-gold);
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.benefit-card:hover {
    border-color: var(--gold-accent);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(200, 169, 81, 0.25);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: white;
}

.benefit-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

/* Positions Section */
.positions-section {
    margin-bottom: 70px;
}

.positions-section h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 40px;
}

.positions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.position-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--light-gold);
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.position-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 8px 30px rgba(15, 61, 46, 0.15);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gold);
}

.position-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.position-title i {
    font-size: 28px;
    color: var(--gold-accent);
}

.position-title h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary-green);
    margin: 0;
}

.position-badge {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.position-details {
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-color);
}

.detail-row i {
    color: var(--gold-accent);
    width: 20px;
}

.position-requirements {
    background: var(--light-gold);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.position-requirements h5 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.position-requirements ul {
    margin: 0;
    padding-left: 20px;
}

.position-requirements li {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 8px;
}

.btn-apply {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border: none;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(15, 61, 46, 0.3);
}

.btn-apply:hover {
    background: linear-gradient(135deg, var(--gold-accent), #d4b76a);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 169, 81, 0.5);
}

/* Application Process */
.application-process {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.application-process h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 15px;
    box-shadow: 0 5px 20px rgba(15, 61, 46, 0.3);
}

.step-content h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.process-arrow {
    font-size: 24px;
    color: var(--gold-accent);
    flex-shrink: 0;
}

/* CTA Section */
.careers-cta {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
}

.cta-content i {
    font-size: 70px;
    color: var(--gold-accent);
    margin-bottom: 25px;
}

.cta-content h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: var(--light-gold);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-contact-hr {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 45px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    line-height: 1;
}

.btn-contact-hr i {
    font-size: 20px;
    color: white;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 0;
}

.btn-contact-hr:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Responsive Styles for Careers */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .positions-list {
        grid-template-columns: 1fr;
    }
    
    .process-arrow {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-step {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .careers-intro h2 {
        font-size: 30px;
    }
    
    .careers-intro p {
        font-size: 16px;
    }
    
    .why-join-section h3,
    .positions-section h3,
    .application-process h3 {
        font-size: 26px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .position-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .position-badge {
        align-self: flex-start;
    }
    
    .application-process {
        padding: 40px 20px;
    }
    
    .careers-cta {
        padding: 50px 20px;
    }
    
    .cta-content h3 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .btn-contact-hr {
        font-size: 16px;
        padding: 14px 35px;
    }
}


/* ===== Contact Page Styles ===== */
.contact-page-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info-section h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.contact-info-section > p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 30px 25px;
    background: white;
    border-radius: 15px;
    border: 2px solid var(--light-gold);
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.contact-detail-item:hover {
    border-color: var(--gold-accent);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(200, 169, 81, 0.2);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(15, 61, 46, 0.3);
}

.contact-icon i {
    font-size: 28px;
    color: white;
}

.contact-text {
    width: 100%;
}

.contact-text h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.contact-text p {
    font-size: 15px;
    color: var(--text-color);
    margin: 5px 0;
    line-height: 1.6;
}

.whatsapp-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 25px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    line-height: 1;
}

.whatsapp-link-btn i {
    font-size: 18px;
}

.whatsapp-link-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Contact Form Section */
.contact-form-section {
    background: white;
    padding: 35px;
    border-radius: 15px;
    border: 2px solid var(--light-gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-section h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary-green);
    margin-bottom: 25px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--light-gold);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 3px rgba(200, 169, 81, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border: none;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(15, 61, 46, 0.3);
    line-height: 1;
}

.btn-submit-contact:hover {
    background: linear-gradient(135deg, var(--gold-accent), #d4b76a);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 169, 81, 0.5);
}

.btn-submit-contact:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    margin-top: 15px;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Map Section */
.contact-map-section {
    margin-top: 60px;
}

.contact-map-section h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary-green);
    margin-bottom: 25px;
    text-align: center;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--gold-accent);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
}

/* Responsive Styles for Contact */
@media (max-width: 768px) {
    .contact-page-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-section h2 {
        font-size: 28px;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section {
        padding: 25px 20px;
    }
    
    .contact-form-section h3 {
        font-size: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-detail-item {
        padding: 20px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 20px;
    }
    
    .btn-submit-contact {
        width: 100%;
    }
}
