
/* ============================================
   THE ETERNAL KINGDOM DISCIPLESHIP
   Brand Colors:
   Blue Gray — #8593A6
   Light Gray — #E1E1E2
   Pale Blue — #B3C9D3
   Almost White — #FCFDFD
   ============================================ */

:root {
    --blue-gray: #8593A6;
    --light-gray: #E1E1E2;
    --pale-blue: #B3C9D3;
    --almost-white: #FCFDFD;
    --dark: #2C3E50;
    --darker: #1A252F;
    --accent-gold: #A4C1C8;
    --shadow-soft: 0 4px 20px rgba(133, 147, 166, 0.15);
    --shadow-medium: 0 8px 30px rgba(133, 147, 166, 0.2);
    --shadow-strong: 0 12px 40px rgba(133, 147, 166, 0.25);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--almost-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(252, 253, 253, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition);
}
.main-nav.scrolled {
    background: rgba(252, 253, 253, 0.98);
    box-shadow: var(--shadow-soft);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.5px;
}
.nav-logo i { color: var(--accent-gold); font-size: 1.1rem; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-links a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blue-gray);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 6px; left: 50%;
    width: 0; height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
    transform: translateX(-50%);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 60%; }
.nav-links a:hover, .nav-links a.active { color: var(--dark); }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.mobile-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 50%, #3a4a5c 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1504052434569-70ad5836ab65?w=1920&h=1080&fit=crop') center/cover no-repeat;
    opacity: 0.15;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(26,37,47,0.7) 0%, rgba(26,37,47,0.5) 50%, rgba(26,37,47,0.8) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
    animation: fadeInUp 1.2s ease-out;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-welcome {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--pale-blue);
    letter-spacing: 3px;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--almost-white);
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}
.divider-line { width: 60px; height: 1px; background: var(--accent-gold); }
.hero-divider i { color: var(--accent-gold); font-size: 1rem; }
.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--pale-blue);
    margin-bottom: 28px;
    letter-spacing: 2px;
}
.hero-scripture {
    border-left: 3px solid var(--accent-gold);
    padding-left: 24px;
    margin: 0 auto 40px;
    max-width: 600px;
    text-align: left;
}
.hero-scripture p {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 8px;
}
.hero-scripture cite {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-style: normal;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}
.mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.4); border-radius: 12px; position: relative; }
.wheel { width: 4px; height: 8px; background: var(--accent-gold); border-radius: 2px; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); animation: scrollWheel 1.5s infinite; }
@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--accent-gold);
    color: var(--darker);
    border-color: var(--accent-gold);
}
.btn-primary:hover {
    background: transparent;
    color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}
.btn-outline {
    background: transparent;
    color: var(--blue-gray);
    border-color: var(--blue-gray);
}
.btn-outline:hover {
    background: var(--blue-gray);
    color: var(--almost-white);
    transform: translateY(-2px);
}
.btn-large { padding: 16px 40px; font-size: 0.9rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 100px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header.light { color: var(--almost-white); }
.section-header.light .section-title { color: var(--almost-white); }
.section-header.light .section-label { color: var(--pale-blue); }
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--blue-gray);
    margin-bottom: 12px;
    padding: 6px 16px;
    border: 1px solid var(--light-gray);
    border-radius: 20px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-accent {
    width: 50px; height: 3px;
    background: var(--accent-gold);
    margin: 0 auto 20px;
    border-radius: 2px;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--blue-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   TRANSFORMATION SECTION
   ============================================ */
.transformation { background: var(--almost-white); }
.transformation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.transformation-text p {
    font-size: 1.05rem;
    color: var(--blue-gray);
    margin-bottom: 20px;
    line-height: 1.9;
}
.transformation-text strong { color: var(--dark); font-weight: 600; }
.highlight-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark);
    padding: 20px 24px;
    border-left: 3px solid var(--accent-gold);
    background: linear-gradient(to right, rgba(201,169,110,0.05), transparent);
    margin-top: 24px;
}

.image-frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}
.image-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.image-frame:hover img { transform: scale(1.03); }
.frame-corner {
    position: absolute;
    width: 30px; height: 30px;
    border-color: var(--accent-gold);
    border-style: solid;
    transition: var(--transition);
}
.frame-corner.top-left { top: 15px; left: 15px; border-width: 2px 0 0 2px; }
.frame-corner.top-right { top: 15px; right: 15px; border-width: 2px 2px 0 0; }
.frame-corner.bottom-left { bottom: 15px; left: 15px; border-width: 0 0 2px 2px; }
.frame-corner.bottom-right { bottom: 15px; right: 15px; border-width: 0 2px 2px 0; }
.image-frame:hover .frame-corner { width: 40px; height: 40px; }

/* ============================================
   TOPICS SECTION
   ============================================ */
.topics {
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    position: relative;
}
.topics::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1504052434569-70ad5836ab65?w=1920&h=1080&fit=crop') center/cover no-repeat;
    opacity: 0.05;
}
.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}
.topic-card {
    background: rgba(252,253,253,0.05);
    border: 1px solid rgba(179,201,211,0.15);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}
.topic-card:hover {
    background: rgba(252,253,253,0.1);
    border-color: var(--accent-gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.topic-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.4rem;
    color: var(--darker);
    transition: var(--transition);
}
.topic-card:hover .topic-icon { transform: scale(1.1) rotate(5deg); }
.topic-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--almost-white);
    margin-bottom: 12px;
}
.topic-card p {
    font-size: 0.9rem;
    color: var(--pale-blue);
    line-height: 1.7;
}

/* ============================================
   VIDEOS SECTION
   ============================================ */
.videos { background: var(--almost-white); }
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}
.video-card {
    background: var(--almost-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}
.video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: var(--dark);
}
.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}
.video-wrapper.large { padding-bottom: 50%; border-radius: 12px; }
.video-meta { padding: 20px 24px; }
.video-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    margin-bottom: 8px;
}
.video-meta h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--dark);
    font-weight: 600;
}
.disclaimer-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: linear-gradient(to right, rgba(133,147,166,0.08), transparent);
    border-left: 3px solid var(--blue-gray);
    padding: 24px 28px;
    border-radius: 0 8px 8px 0;
    margin-top: 20px;
}
.disclaimer-box i {
    color: var(--blue-gray);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.disclaimer-box p {
    font-size: 0.85rem;
    color: var(--blue-gray);
    line-height: 1.7;
}
.disclaimer-box strong { color: var(--dark); }

/* ============================================
   COMING SOON / SIGNUP
   ============================================ */
.coming-soon {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--pale-blue) 100%);
    position: relative;
    overflow: hidden;
}
.coming-soon::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.coming-soon-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--almost-white);
    border-radius: 16px;
    padding: 60px 50px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    position: relative;
    z-index: 1;
}
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold));
    color: var(--darker);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
}
.coming-soon-card h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 20px;
}
.coming-soon-card p {
    color: var(--blue-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.signup-text { font-weight: 600; color: var(--dark) !important; }

.signup-form { margin-top: 36px; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blue-gray);
    margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--almost-white);
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(201,169,110,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--blue-gray);
    opacity: 0.6;
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238593A6' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}
.required { color: #c0392b; }

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    overflow: hidden;
    margin-top: 72px;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1504052434569-70ad5836ab65?w=1920&h=1080&fit=crop') center/cover no-repeat;
    opacity: 0.12;
}
.page-header-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(26,37,47,0.7), rgba(26,37,47,0.85));
}
.page-header-content { position: relative; z-index: 2; padding: 0 24px; }
.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--almost-white);
    margin-bottom: 16px;
}
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--pale-blue);
}
.breadcrumb a { color: var(--pale-blue); }
.breadcrumb a:hover { color: var(--accent-gold); }
.breadcrumb i { font-size: 0.7rem; color: var(--blue-gray); }

/* ============================================
   FOUNDER SECTION
   ============================================ */
.founder { background: var(--almost-white); }
.founder-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.founder-image { position: relative; }
.founder-image .image-frame { border-radius: 8px; }
.founder-image .image-frame img { aspect-ratio: 3/4; object-fit: cover; }
.founder-badge {
    position: absolute;
    bottom: -20px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--dark);
    color: var(--accent-gold);
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: var(--shadow-medium);
    white-space: nowrap;
}
.founder-content .section-title { text-align: left; }
.founder-content .section-accent { margin: 0 0 28px 0; }
.founder-story p {
    font-size: 1.05rem;
    color: var(--blue-gray);
    margin-bottom: 18px;
    line-height: 1.9;
}
.founder-story strong { color: var(--dark); font-weight: 600; }
.founder-values {
    display: flex;
    gap: 20px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(to right, rgba(133,147,166,0.08), transparent);
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid var(--light-gray);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
}
.value-item i { color: var(--accent-gold); }

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    background: linear-gradient(to bottom, var(--almost-white), var(--light-gray));
}
.video-feature { max-width: 900px; margin: 0 auto; }

/* ============================================
   PHOTO CAROUSEL
   ============================================ */
.carousel-section { background: var(--almost-white); }
.photo-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}
.carousel-track { position: relative; height: 500px; }
.carousel-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.carousel-slide.active { opacity: 1; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(26,37,47,0.9), transparent);
    padding: 40px 30px 30px;
    color: var(--almost-white);
}
.slide-caption h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 6px;
}
.slide-caption p { font-size: 0.95rem; color: var(--pale-blue); }
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: var(--dark);
}
.carousel-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 2px solid var(--blue-gray);
    background: transparent;
    color: var(--almost-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.carousel-btn:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--darker);
}
.carousel-dots { display: flex; gap: 10px; }
.carousel-dots .dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--blue-gray);
    cursor: pointer;
    transition: var(--transition);
}
.carousel-dots .dot.active { background: var(--accent-gold); transform: scale(1.3); }

/* ============================================
   COMMUNITY SECTION
   ============================================ */
.community {
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    position: relative;
}
.community::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1529070538774-1843cb3265df?w=1920&h=1080&fit=crop') center/cover no-repeat;
    opacity: 0.08;
}
.community-cta { text-align: center; position: relative; z-index: 1; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--almost-white); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.testimonial-card {
    background: var(--almost-white);
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    padding: 40px 36px;
    position: relative;
    transition: var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}
.testimonial-quote {
    position: absolute;
    top: 24px; right: 28px;
    font-size: 2rem;
    color: var(--accent-gold);
    opacity: 0.3;
}
.testimonial-card blockquote { margin-bottom: 28px; }
.testimonial-card blockquote p {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 12px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.author-avatar {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--pale-blue), var(--blue-gray));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--almost-white);
    font-size: 1.1rem;
}
.author-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 4px;
}
.author-info span {
    font-size: 0.8rem;
    color: var(--blue-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    position: relative;
    overflow-x: hidden;
}
.pricing::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?w=1920&h=1080&fit=crop') center/cover no-repeat;
    opacity: 0.05;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
    max-width: 100%;
}
.pricing-card {
    background: rgba(252,253,253,0.05);
    border: 1px solid rgba(179,201,211,0.15);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(10px);
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-width: 0;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: var(--accent-gold);
}
.pricing-card.featured {
    background: rgba(252,253,253,0.08);
    border-color: var(--accent-gold);
    transform: scale(1.05);
}
.pricing-card.featured:hover { transform: scale(1.05) translateY(-8px); }
.pricing-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--darker);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pricing-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    color: var(--darker);
}
.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--almost-white);
    margin-bottom: 16px;
}
.pricing-price { margin-bottom: 8px; }
.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--pale-blue);
    vertical-align: top;
}
.pricing-price .amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--almost-white);
}
.pricing-price .period { font-size: 0.9rem; color: var(--blue-gray); }
.pricing-discount { margin-bottom: 20px; }
.discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201,169,110,0.2);
    color: var(--accent-gold);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.pricing-body {
    margin: 24px 0;
    padding: 24px 0;
    border-top: 1px solid rgba(179,201,211,0.15);
    border-bottom: 1px solid rgba(179,201,211,0.15);
}
.pricing-features { text-align: left; }
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--pale-blue);
}
.pricing-features li i { color: var(--accent-gold); font-size: 0.8rem; }
.pricing-footer { margin-top: 24px; }

/* ============================================
   IDEAL FOR
   ============================================ */
.ideal-for { background: var(--almost-white); overflow-x: hidden; }
.ideal-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.ideal-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-width: 0;
}
.ideal-card:hover {
    background: var(--almost-white);
    box-shadow: var(--shadow-soft);
    transform: translateY(-4px);
    border-color: var(--pale-blue);
}
.ideal-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--pale-blue), var(--blue-gray));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.2rem;
    color: var(--almost-white);
    transition: var(--transition);
}
.ideal-card:hover .ideal-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold));
    color: var(--darker);
}
.ideal-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 8px;
}
.ideal-card p {
    font-size: 0.85rem;
    color: var(--blue-gray);
    line-height: 1.6;
}

/* ============================================
   BOOKING FORM
   ============================================ */
.booking-form-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--pale-blue) 100%);
    position: relative;
}
.booking-form-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.booking-form-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--almost-white);
    border-radius: 16px;
    padding: 50px;
    box-shadow: var(--shadow-medium);
    position: relative;
    z-index: 1;
}
.form-header { text-align: center; margin-bottom: 36px; }
.form-header i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 16px;
    display: block;
}
.form-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 8px;
}
.form-header p { color: var(--blue-gray); font-size: 0.95rem; }
.form-contact-alt {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--light-gray);
}
.form-contact-alt p { font-size: 0.9rem; color: var(--blue-gray); }
.form-contact-alt a { color: var(--dark); font-weight: 600; }
.form-contact-alt a:hover { color: var(--accent-gold); }

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--darker);
    color: var(--pale-blue);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--almost-white);
    line-height: 1.3;
    margin-bottom: 12px;
}
.footer-logo i { color: var(--accent-gold); font-size: 1rem; margin-top: 4px; }
.footer-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--blue-gray);
    font-size: 0.95rem;
    padding-left: 30px;
}
.footer-nav h4, .footer-contact h4, .footer-social h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--almost-white);
    margin-bottom: 20px;
}
.footer-nav ul li { margin-bottom: 10px; }
.footer-nav ul li a {
    font-size: 0.9rem;
    color: var(--blue-gray);
    transition: var(--transition);
}
.footer-nav ul li a:hover { color: var(--accent-gold); padding-left: 6px; }
.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--blue-gray);
}
.footer-contact a:hover { color: var(--accent-gold); }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid var(--blue-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--blue-gray);
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--darker);
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid rgba(133,147,166,0.15);
    padding: 24px 0;
    text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--blue-gray); letter-spacing: 1px; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .topics-grid, .videos-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .ideal-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: rgba(252,253,253,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px 24px;
        gap: 8px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        border-bottom: 1px solid var(--light-gray);
        box-shadow: var(--shadow-soft);
    }
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-links a { width: 100%; text-align: center; padding: 14px; }
    .section { padding: 70px 0; }
    .transformation-grid, .founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .founder-grid { direction: rtl; }
    .founder-grid > * { direction: ltr; }
    .topics-grid, .videos-grid, .pricing-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: scale(1) translateY(-8px); }
    .exploratory-card { padding: 35px 24px; gap: 25px; }
    .ideal-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .coming-soon-card, .booking-form-card { padding: 40px 24px; }
    .carousel-track { height: 350px; }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .footer-logo { justify-content: center; }
    .footer-tagline { padding-left: 0; }
    .social-links { justify-content: center; }
    .founder-values { justify-content: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .ideal-grid { grid-template-columns: 1fr; }
    .carousel-track { height: 280px; }
    .testimonial-card { padding: 30px 24px; }
    .pricing-card { padding: 30px 16px; }
    .pricing-price .amount { font-size: 2.2rem; }
    .exploratory-card { padding: 30px 20px; gap: 20px; }
    .exploratory-icon { width: 60px; height: 60px; font-size: 1.4rem; }
    .exploratory-content h3 { font-size: 1.3rem; }
    .booking-form-card { padding: 30px 16px; }
    .coming-soon-card { padding: 30px 16px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* ============================================
   EXPLORATORY CALL CTA
   ============================================ */
.exploratory-call {
    background: linear-gradient(135deg, var(--almost-white) 0%, var(--light-gray) 100%);
    padding: 60px 0 80px;
    overflow-x: hidden;
}
.exploratory-card {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
    background: var(--almost-white);
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.exploratory-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 100%;
    background: linear-gradient(to bottom, var(--accent-gold), var(--accent-gold));
}
.exploratory-icon {
    flex-shrink: 0;
    width: 90px; height: 90px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--darker);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
    animation: pulseIcon 2s ease-in-out infinite;
}
@keyframes pulseIcon {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 12px 35px rgba(201, 169, 110, 0.5); }
}
.exploratory-content {
    flex: 1;
}
.exploratory-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent-gold);
    margin-bottom: 10px;
    padding: 5px 14px;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 20px;
}
.exploratory-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 14px;
}
.exploratory-content p {
    font-size: 1rem;
    color: var(--blue-gray);
    line-height: 1.8;
    margin-bottom: 28px;
}
.exploratory-content p strong {
    color: var(--dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .exploratory-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 30px;
    }
    .exploratory-card::before {
        width: 100%; height: 6px;
        top: 0; left: 0;
    }
    .exploratory-content h3 {
        font-size: 1.5rem;
    }
}

/* ============================================
   INTRO VIDEO SECTION
   ============================================ */
.intro-video {
    background: linear-gradient(to bottom, var(--light-gray), var(--almost-white));
    padding-bottom: 80px;
}
.intro-video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    background: var(--dark);
}
.intro-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.video-overlay-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}
.intro-video-wrapper:hover .video-overlay-play {
    opacity: 1;
}
.video-overlay-play i {
    font-size: 4rem;
    color: var(--accent-gold);
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* ============================================
   BOOK RESOURCES SECTION
   ============================================ */
.book-resources {
    background: var(--almost-white);
    padding-top: 60px;
    padding-bottom: 40px;
}
.books-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.book-card {
    background: var(--almost-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.book-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--pale-blue);
}
.book-cover {
    position: relative;
    overflow: hidden;
    max-width:1400px    
    aspect-ratio: 2 / 1;
    background: var(--dark);
}
.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.book-card:hover .book-cover img {
    transform: scale(1.05);
}
.book-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 37, 47, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.book-card:hover .book-overlay {
    opacity: 1;
}
.book-link {
    width: 50px; height: 50px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--darker);
    font-size: 1.1rem;
    transform: scale(0.8);
    transition: var(--transition);
}
.book-card:hover .book-link {
    transform: scale(1);
}
.book-link:hover {
    background: var(--almost-white);
    color: var(--accent-gold);
}
.book-info {
    padding: 28px 24px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.book-info h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.3;
}
.book-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}
.book-desc {
    font-size: 0.9rem;
    color: var(--blue-gray);
    line-height: 1.7;
    flex: 1;
}

/* ============================================
   MOBILE: BOOKS & VIDEO
   ============================================ */
@media (max-width: 768px) {
    .books-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .video-overlay-play { opacity: 1; }
    .video-overlay-play i { font-size: 3rem; }
    .intro-video-wrapper { border-radius: 12px; }
    .intro-video-wrapper video { border-radius: 12px; }
}

@media (max-width: 480px) {
    .books-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
    .book-info { padding: 22px 20px 26px; }
    .book-info h4 { font-size: 1.15rem; }
    .video-overlay-play i { font-size: 2.5rem; }
}
