/* ============================================
   MyQuranicTutor - Complete Stylesheet
   Author: AI Assistant
   Version: 1.0
   ============================================ */

/* ============================================
   CSS Variables & Root Settings
   ============================================ */
:root {
    /* Primary Gold Palette */
    --gold-50: #fdf8e8;
    --gold-100: #f9edbc;
    --gold-200: #f4de87;
    --gold-300: #efc94b;
    --gold-400: #e5b81f;
    --gold-500: #d4a017;
    --gold-600: #b8860b;
    --gold-700: #966d08;
    --gold-800: #7a5a09;
    --gold-900: #5c4409;

    /* Secondary Deep Teal */
    --teal-50: #e6f7f7;
    --teal-100: #b3e8e8;
    --teal-200: #80d9d9;
    --teal-300: #4dc9c9;
    --teal-400: #26bfbf;
    --teal-500: #00a6a6;
    --teal-600: #008c8c;
    --teal-700: #006e6e;
    --teal-800: #005151;
    --teal-900: #003434;

    /* Accent Deep Burgundy */
    --burgundy-50: #f9e6e9;
    --burgundy-100: #f0b3bc;
    --burgundy-200: #e6808f;
    --burgundy-300: #cc4d62;
    --burgundy-400: #b9263e;
    --burgundy-500: #990033;
    --burgundy-600: #80002b;
    --burgundy-700: #660023;
    --burgundy-800: #4d001b;
    --burgundy-900: #330012;

    /* Accent Emerald Green */
    --emerald-50: #e8f5ec;
    --emerald-100: #b8e2c4;
    --emerald-200: #88cf9c;
    --emerald-300: #58bc74;
    --emerald-400: #35ae57;
    --emerald-500: #1a9e3c;
    --emerald-600: #158533;
    --emerald-700: #106b29;
    --emerald-800: #0b5120;
    --emerald-900: #063716;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #fafaf8;
    --light-gray: #f5f5f3;
    --gray-100: #eee;
    --gray-200: #ddd;
    --gray-300: #ccc;
    --gray-400: #999;
    --gray-500: #777;
    --gray-600: #555;
    --gray-700: #444;
    --gray-800: #333;
    --gray-900: #1a1a1a;
    --dark: #0d0d0d;

    /* Semantic */
    --primary: var(--gold-500);
    --primary-dark: var(--gold-700);
    --primary-light: var(--gold-100);
    --secondary: var(--teal-600);
    --accent: var(--burgundy-500);
    --success: var(--emerald-500);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Amiri', serif;

    /* Spacing */
    --section-padding: 6rem 0;
    --container-width: 1200px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 60px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 4px 20px rgba(184, 134, 11, 0.25);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   Reset & Base
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--gray-900);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

.section-padding {
    padding: var(--section-padding);
}

.section-padding-top {
    padding-top: 4rem;
}

.section-padding-bottom {
    padding-bottom: 4rem;
}

.text-center {
    text-align: center;
}

/* ============================================
   Animations & Keyframes
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-down {
    animation: fadeInDown 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; opacity: 0; }
.delay-2 { animation-delay: 0.4s; opacity: 0; }
.delay-3 { animation-delay: 0.6s; opacity: 0; }

/* Reveal on scroll */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
    background: linear-gradient(135deg, var(--gold-700), var(--gold-800));
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
	
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    transition: var(--transition-normal);
}

.top-bar-item:hover {
    color: var(--gold-200);
}

.top-bar-item i {
    font-size: 0.9rem;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    background: var(--white);
    padding: 0;
    position: fixed;
    top: 32px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    top: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo a {
    display: flex;
    align-items: baseline;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-my {
    color: var(--teal-600);
}

.logo-quranic {
    color: var(--gold-600);
}

.logo-tutor {
    color: var(--burgundy-500);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    border-radius: 2px;
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-600);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--gray-800);
    border-radius: 3px;
    transition: var(--transition-normal);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   Hero Slider
   ============================================ */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 112px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease;
    animation: kenBurns 8s ease-in-out infinite alternate;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 50, 50, 0.55) 50%,
        rgba(0, 0, 0, 0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    padding: 2rem;
}

.hero-title {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 900px;
}

.hero-subtitle {
    color: var(--gold-200);
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    margin-bottom: 2.5rem;
    max-width: 700px;
    font-weight: 300;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.slider-btn:hover {
    background: var(--gold-500);
    border-color: var(--gold-500);
}

.prev-btn { left: 2rem; }
.next-btn { right: 2rem; }

.slider-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.dot.active {
    background: var(--gold-400);
    border-color: var(--gold-400);
    transform: scale(1.2);
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    margin-bottom: 3.5rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--gold-600);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.section-title {
    margin-bottom: 1rem;
}

.title-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    margin: 1rem auto;
    border-radius: 2px;
}

.section-description {
    max-width: 700px;
    margin: 1rem auto 0;
    color: var(--gray-500);
    font-size: 1.05rem;
}

/* ============================================
   Background Patterns
   ============================================ */
.bg-pattern {
    position: relative;
    background-color: var(--off-white);
}

.bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8860b' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.bg-pattern > .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    cursor: pointer;
    border: none;
    transition: all 0.4s ease;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-700));
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--gold-600);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-light {
    background: var(--white);
    color: var(--gold-600);
}

.btn-light:hover {
    background: var(--gold-50);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--gold-600);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-pricing {
    background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
    color: var(--white);
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 166, 166, 0.25);
}

.btn-pricing:hover {
    background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 166, 166, 0.35);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ============================================
   Welcome Section
   ============================================ */
.welcome-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.welcome-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--gray-100);
}

.welcome-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-200);
}

.welcome-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-100), var(--gold-200));
    border-radius: var(--radius-lg);
    font-size: 1.8rem;
    color: var(--gold-700);
    transition: var(--transition-normal);
}

.welcome-item:hover .welcome-icon {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--white);
    transform: rotateY(180deg);
}

.welcome-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.welcome-item p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   Steps Section
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--gray-100);
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold-100);
    line-height: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-100), var(--gold-200));
    border-radius: var(--radius-full);
    font-size: 2rem;
    color: var(--gold-600);
    transition: var(--transition-normal);
}

.step-card:hover .step-icon {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--white);
    transform: scale(1.1);
}

.step-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.step-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   Why Choose Section
   ============================================ */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    transition: height 0.4s ease;
    z-index: 0;
}

.why-card:hover::after {
    height: 4px;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal-50), var(--teal-100));
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    color: var(--teal-600);
    transition: var(--transition-normal);
}

.why-card:nth-child(even) .why-icon {
    background: linear-gradient(135deg, var(--gold-100), var(--gold-200));
    color: var(--gold-600);
}

.why-card:nth-child(3n) .why-icon {
    background: linear-gradient(135deg, var(--burgundy-50), var(--burgundy-100));
    color: var(--burgundy-500);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(-5deg);
}

.why-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.why-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   Services Overview
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--gray-100);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.7), rgba(0, 106, 106, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    font-size: 3rem;
    color: var(--white);
    transform: scale(0.5);
    transition: transform 0.4s ease;
}

.service-card:hover .service-overlay i {
    transform: scale(1);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.service-content p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-link {
    color: var(--gold-600);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link i {
    transition: var(--transition-normal);
}

.service-link:hover i {
    transform: translateX(5px);
}

.service-link:hover {
    color: var(--gold-700);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    background: linear-gradient(135deg, var(--gold-800), var(--teal-900));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.testimonials-section .section-subtitle {
    color: var(--gold-300);
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-section .title-divider {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: var(--gold-400);
    font-size: 0.9rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image i {
    font-size: 2.5rem;
    color: var(--gold-400);
}

.author-info h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--gold-300);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--gold-200);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    flex: 1;
    margin: 0;
}

.faq-question i {
    color: var(--gold-600);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, var(--gold-50), var(--gold-100));
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--teal-700), var(--gold-700), var(--burgundy-700));
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   About Page
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--gold-700), var(--teal-800));
    padding: 8rem 0 4rem;
    margin-top: 112px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 3.36L23.62 0 20 0 16.38 0 20 3.36zM20 10.09l-3.62-3.36L20 0l3.62 6.73L20 10.09zM20 16.82l-3.62-3.36L20 6.73l3.62 6.73L20 16.82zM20 23.55l-3.62-3.36L20 13.46l3.62 6.73L20 23.55zM20 30.27l-3.62-3.36L20 20.18l3.62 6.73L20 30.27zM20 36.64L16.38 40 20 40l3.62 0L20 36.64z' fill='%23ffffff' fill-opacity='1'/%3E%3C/svg%3E");
    pointer-events: none;
}

.page-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gold-200);
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--gold-200);
}

.breadcrumb a:hover {
    color: var(--white);
}

.content-box {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-600);
}

.content-box p:last-child {
    margin-bottom: 0;
}

.about-image-text .row,
.about-image-text .row-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-image-text .row-reverse {
    direction: rtl;
}

.about-image-text .row-reverse > * {
    direction: ltr;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image-text h3 {
    margin-bottom: 1rem;
    color: var(--gold-700);
}

.about-image-text p {
    color: var(--gray-600);
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    margin-top: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--gold-50), var(--gold-100));
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--gold-600);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-700);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-box {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--gray-100);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-100), var(--gold-200));
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    color: var(--gold-600);
}

.feature-box h3 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.feature-box p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin: 0;
}

/* Sets Apart Grid */
.sets-apart-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.apart-card {
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.apart-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-200);
}

.apart-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-100);
    line-height: 1;
    margin-bottom: 1rem;
}

.apart-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.apart-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   Services Page
   ============================================ */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--gray-100);
}

.service-detail:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

.service-icon-large {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-100), var(--gold-200));
    border-radius: var(--radius-md);
    font-size: 1.8rem;
    color: var(--gold-600);
    margin-bottom: 1.5rem;
}

.service-detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.service-detail-content p {
    color: var(--gray-600);
    line-height: 1.8;
}

.service-features {
    margin: 1.5rem 0 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--emerald-500);
    font-size: 1rem;
}

/* Features Grid Alt */
.features-grid-alt {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card-alt {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--gray-100);
}

.feature-card-alt:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-200);
}

.feature-card-alt i {
    font-size: 2.5rem;
    color: var(--gold-600);
    margin-bottom: 1rem;
}

.feature-card-alt h3 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.feature-card-alt p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing-region-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.region-flag {
    width: 48px;
    height: auto;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.region-title {
    font-size: 1.5rem;
    color: var(--gray-800);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--gray-100);
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--gold-400);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--white);
    padding: 0.35rem 1.5rem;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.pricing-schedule {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.pricing-price {
    margin-bottom: 0.75rem;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    vertical-align: top;
    line-height: 1.2;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.pricing-price .period {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.pricing-classes {
    color: var(--teal-600);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.pricing-features li i {
    color: var(--emerald-500);
    font-size: 0.85rem;
}

/* Sponsor Section */
.sponsor-box {
    text-align: center;
    background: linear-gradient(135deg, var(--emerald-500), var(--teal-600));
    color: var(--white);
    padding: 4rem 2rem;
    border-radius: var(--radius-xl);
}

.sponsor-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.sponsor-box h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.sponsor-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Discount Section */
.discount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.discount-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--gray-100);
}

.discount-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-200);
}

.discount-icon {
    font-size: 2.5rem;
    color: var(--gold-600);
    margin-bottom: 1rem;
}

.discount-card h3 {
    margin-bottom: 0.75rem;
}

.discount-percentage {
    font-size: 2rem;
    font-weight: 800;
    color: var(--emerald-500);
    margin-bottom: 0.75rem;
}

.discount-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin: 0;
}

/* Referral Section */
.referral-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.referral-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 2px solid var(--gray-100);
    position: relative;
}

.referral-card.featured {
    border-color: var(--gold-400);
    box-shadow: var(--shadow-gold);
}

.referral-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.referral-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--white);
    padding: 0.35rem 1.5rem;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
}

.referral-icon {
    font-size: 2.5rem;
    color: var(--gold-600);
    margin-bottom: 1rem;
}

.referral-card h3 {
    margin-bottom: 0.75rem;
}

.referral-reward {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold-600);
    margin-bottom: 0.75rem;
}

.referral-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-200);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-100), var(--gold-200));
    border-radius: var(--radius-full);
    font-size: 1.5rem;
    color: var(--gold-600);
}

.contact-info-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info-card p {
    color: var(--gray-700);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-info-card p a {
    color: var(--teal-600);
    font-weight: 600;
}

.contact-info-card p a:hover {
    color: var(--teal-700);
}

.info-label {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: var(--gray-500);
    margin: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.form-group label i {
    margin-right: 0.5rem;
    color: var(--gold-500);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    background: var(--off-white);
    color: var(--gray-800);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-400);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    text-align: center;
    color: var(--gray-400);
    font-size: 0.85rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Map */
.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    display: block;
}

/* ============================================
   Policy Pages
   ============================================ */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-meta {
    padding: 1rem 0;
    border-bottom: 2px solid var(--gold-200);
    margin-bottom: 2rem;
}

.policy-content h2 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--gold-700);
}

.policy-content h3 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--gray-800);
}

.policy-content ul {
    margin: 0.5rem 0 1rem 1.5rem;
    list-style: disc;
}

.policy-content ul li {
    padding: 0.25rem 0;
    color: var(--gray-600);
}

.policy-content a {
    color: var(--teal-600);
    text-decoration: underline;
}

.policy-content a:hover {
    color: var(--teal-700);
}

.policy-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 2rem 0;
}

.policy-contact-box {
    background: linear-gradient(135deg, var(--gold-50), var(--teal-50));
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 1rem;
    border: 1px solid var(--gold-200);
}

.policy-contact-box h3 {
    margin-bottom: 1rem;
    color: var(--gold-700);
}

.policy-contact-box p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.policy-contact-box p:last-child {
    margin-bottom: 0;
}

.policy-contact-box i {
    color: var(--gold-600);
    width: 20px;
}

.policy-highlight {
    background: linear-gradient(135deg, var(--emerald-50), var(--teal-50));
    border-left: 4px solid var(--emerald-500);
    padding: 1.5rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 1rem 0;
}

.policy-highlight p {
    margin: 0;
}

/* Refund Timeline */
.refund-timeline {
    display: grid;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.refund-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.refund-badge {
    min-width: 120px;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
}

.refund-badge.green {
    background: linear-gradient(135deg, var(--emerald-400), var(--emerald-500));
}

.refund-badge.yellow {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
}

.refund-badge.red {
    background: linear-gradient(135deg, var(--burgundy-400), var(--burgundy-500));
}

.refund-details h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.refund-details p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: linear-gradient(135deg, var(--gray-900), #1a2332);
    color: var(--gray-400);
    padding: 4rem 0 0;
}

.footer-top {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-contact-info i {
    color: var(--gold-500);
    width: 16px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--gold-500);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--gold-400);
    padding-left: 5px;
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom i.fa-heart {
    color: var(--burgundy-400);
}

/* ============================================
   Scroll to Top Button
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: var(--shadow-gold);
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-700));
    transform: translateY(-3px);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .welcome-grid,
    .why-choose-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sets-apart-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-left {
        gap: 1rem;
        font-size: 0.75rem;
    }

    .top-bar-item span {
        display: none;
    }

    .top-bar-item i {
        font-size: 1rem;
    }

    .navbar {
        top: 32px;
    }

    .nav-wrapper {
        height: 65px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        padding: 100px 2rem 2rem;
        transition: right 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid var(--gray-100);
        font-size: 1.1rem;
    }

    .nav-link::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-slider {
        margin-top: 97px;
        min-height: 500px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .slider-btn {
        display: none;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .page-header {
        margin-top: 97px;
        padding: 6rem 0 3rem;
    }

    .welcome-grid,
    .why-choose-grid,
    .services-grid,
    .pricing-grid,
    .testimonials-grid,
    .features-grid,
    .features-grid-alt,
    .sets-apart-grid,
    .discount-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .referral-grid {
        grid-template-columns: 1fr;
    }

    .about-image-text .row,
    .about-image-text .row-reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image-text .row-reverse {
        direction: ltr;
    }

    .service-detail,
    .service-detail.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .refund-item {
        flex-direction: column;
        text-align: center;
    }

    .cta-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .contact-info-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .logo a {
        font-size: 1.3rem;
    }
}

/* ============================================
   Custom Scrollbar
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--gold-400), var(--gold-600));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--gold-500), var(--gold-700));
}

/* ============================================
   Selection
   ============================================ */
::selection {
    background: var(--gold-200);
    color: var(--gray-900);
}

/* ============================================
   Loading Overlay
   ============================================ */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gold-100);
    border-top-color: var(--gold-500);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}