/* Advice & Ridge - Professional White Theme */
:root
{
    --primary: #065ec8;
    --primary-dark: #0445a0;
    --primary-light: #2f7ad9;
    --secondary: #85bde5;
    --tertiary: #e1e4eb;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --black: #000000;
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
}

/* Base Styles */
body
{
    font-family: var(--font-primary);
    color: var(--gray-800);
    background-color: var(--white);
    padding-top: 80px;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6
{
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1
{
    font-size: 3.5rem;
}

h2
{
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.text-primary
{
    color: var(--primary) !important;
}

.bg-primary
{
    background-color: var(--primary) !important;
}

.bg-secondary
{
    background-color: var(--secondary) !important;
}

.bg-tertiary
{
    background-color: var(--tertiary) !important;
}

/* Navbar */
.navbar
{
    background-color: var(--white);
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled
{
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.navbar-logo
{
    height: 45px;
    width: auto;
}

.navbar-nav .nav-link
{
    color: var(--gray-700) !important;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 8px 15px !important;
    margin: 0 3px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active
{
    color: var(--primary) !important;
}

.navbar-nav .nav-link::after
{
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after
{
    width: 30px;
}

.navbar-toggler
{
    border: none;
    padding: 0;
}

.navbar-toggler:focus
{
    box-shadow: none;
}

.navbar-toggler-icon
{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23065ec8' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-primary
{
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover
{
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(6, 94, 200, 0.2);
}

.btn-outline-primary
{
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover
{
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(6, 94, 200, 0.2);
}

.btn-light
{
    background-color: var(--white);
    border-color: var(--white);
    color: var(--primary);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
}

.btn-light:hover
{
    background-color: var(--tertiary);
    border-color: var(--tertiary);
    transform: translateY(-2px);
}

.btn-lg
{
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-sm
{
    padding: 8px 20px;
    font-size: 0.9rem;
}

::-webkit-scrollbar
{
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track
{
    background: transparent;
}

/* Thumb */
::-webkit-scrollbar-thumb
{
    background: var(--primary);
    border-radius: 8px;
}

/* Hover effect */
::-webkit-scrollbar-thumb:hover
{
    background: var(--secondary);
}


/* Hero Section */
.hero-section
{
    position: relative;
    background-color: var(--white);
    overflow: hidden;
}

.hero-content
{
    padding: 60px 0;
}

.hero-badge
{
    display: inline-block;
    background-color: var(--tertiary);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.hero-title
{
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--gray-900);
}

.hero-subtitle
{
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-description
{
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-stats
{
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item
{
    text-align: left;
}

.stat-number
{
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-display);
    line-height: 1.2;
}

.stat-label
{
    font-size: 0.9rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-label-2
{
    color: silver !important;
}

.hero-cta
{
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-social-proof p
{
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.featured-logos
{
    display: flex;
    gap: 30px;
    color: var(--gray-400);
    font-weight: 600;
}

.hero-image-wrapper
{
    position: relative;
}

.hero-image
{
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(6, 94, 200, 0.2);
}

.hero-image img
{
    width: 100%;
    height: auto;
    display: block;
}

.book-highlight
{
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 150px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 4px solid var(--white);
}

.book-highlight img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-badge
{
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Section Styles */
.section-badge
{
    display: inline-block;
    background-color: var(--tertiary);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title
{
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.section-lead
{
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 700px;
}

/* Book Section */
.book-section
{
    padding: 80px 0;
    background-color: var(--gray-50);
}

.book-cover-wrapper
{
    text-align: center;
}

.book-cover-large
{
    max-width: 350px;
    width: 100%;
    border-radius: 20px;
    margin-bottom: 20px;
}

.book-rating
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.book-rating i
{
    color: #ffc107;
    font-size: 1.2rem;
}

.book-rating span
{
    color: var(--gray-600);
    margin-left: 10px;
}

.book-audience-grid
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.audience-card
{
    background: var(--white);
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.audience-card:hover
{
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(6, 94, 200, 0.1);
    border-color: var(--primary);
}

.audience-card i
{
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.audience-card h4
{
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.audience-card p
{
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

.book-highlights
{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.highlight
{
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight i
{
    font-size: 1.2rem;
}

.highlight span
{
    color: var(--gray-700);
}

.book-cta
{
    display: flex;
    gap: 15px;
}

/* Speaking Section */
.speaking-section
{
    padding: 80px 0;
    background-color: var(--white);
}

.speaking-card
{
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.speaking-card.featured
{
    border: 2px solid var(--primary);
    box-shadow: 0 20px 40px rgba(6, 94, 200, 0.1);
    transform: scale(1.05);
    z-index: 2;
}

.speaking-card:hover
{
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(6, 94, 200, 0.15);
    border-color: var(--primary);
}

.speaking-card.featured:hover
{
    transform: scale(1.05) translateY(-10px);
}

.card-icon
{
    width: 70px;
    height: 70px;
    background: var(--tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.card-icon i
{
    font-size: 2rem;
    color: var(--primary);
}

.speaking-card h3
{
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.speaking-card p
{
    color: var(--gray-600);
    margin-bottom: 20px;
}

.card-list
{
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-list li
{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--gray-700);
}

.card-list li i
{
    color: var(--primary);
    font-size: 1.1rem;
}

/* Stats Section */
.stats-section
{
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.stat-card
{
    text-align: center;
    padding: 30px;
}

.stat-number
{
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-display);
    margin-bottom: 10px;
}

.stat-label
{
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section
{
    padding: 80px 0;
    background-color: var(--gray-50);
}

.testimonial-card
{
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.testimonial-card.featured
{
    border: 2px solid var(--primary);
    box-shadow: 0 20px 40px rgba(6, 94, 200, 0.1);
}

.testimonial-card:hover
{
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.testimonial-quote
{
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.1;
}

.testimonial-text
{
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.testimonial-author
{
    border-top: 1px solid var(--gray-200);
    padding-top: 20px;
}

.testimonial-author strong
{
    display: block;
    color: var(--gray-900);
    font-size: 1.1rem;
}

.testimonial-author span
{
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section
{
    padding: 60px 0;
    background-color: var(--white);
}

.cta-card
{
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50px;
    padding: 60px;
    color: var(--white);
}

.cta-title
{
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-text
{
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

/* Footer */
.footer
{
    background-color: var(--gray-900);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-logo
{
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.footer-tagline
{
    color: var(--gray-400);
    margin-bottom: 15px;
}

.footer-verse
{
    font-size: 0.95rem;
    color: var(--secondary);
    font-style: italic;
    margin-bottom: 20px;
}

.social-links
{
    display: flex;
    gap: 15px;
}

.social-links a
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover
{
    background: var(--primary);
    transform: translateY(-3px);
}

.footer h5
{
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links
{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li
{
    margin-bottom: 10px;
}

.footer-links a
{
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover
{
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom
{
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gray-500);
    font-size: 0.9rem;
}

.credit a
{
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.credit a:hover
{
    color: var(--primary);
}

/* Option 1 Styles */
.twins-image-container
{
    position: relative;
    padding: 20px;
}

.twins-image
{
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(6, 94, 200, 0.15));
}

.floating-book
{
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 180px;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.floating-book img
{
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.book-badge
{
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.floating-element
{
    position: absolute;
    color: var(--secondary);
    opacity: 0.2;
    font-size: 2rem;
    z-index: 1;
}

.element-1
{
    top: 10%;
    left: 0;
    animation: float-slow 5s ease-in-out infinite;
}

.element-2
{
    bottom: 20%;
    left: 10%;
    animation: float-slow 4s ease-in-out infinite reverse;
}

/* Option 2 Styles */
.twins-showcase
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    padding: 40px 0;
}

.twin-container
{
    flex: 1;
    max-width: 200px;
    z-index: 2;
}

.twin-image
{
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(6, 94, 200, 0.2));
    transition: transform 0.3s ease;
}

.twin-image:hover
{
    transform: translateY(-10px);
}

.book-container
{
    position: relative;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.book-image
{
    width: 160px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 30px 50px rgba(6, 94, 200, 0.4);
}

.book-badge-large
{
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(6, 94, 200, 0.3);
}

.showcase-bg
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--tertiary) 100%);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(40px);
    z-index: 1;
}

/* Option 3 Styles */
.hero-visual-stack
{
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-backdrop
{
    position: absolute;
    width: 100%;
    max-width: 400px;
    opacity: 0.15;
    transform: rotate(-5deg);
    z-index: 1;
}

.book-backdrop-image
{
    width: 100%;
    height: auto;
}

.twins-foreground
{
    position: relative;
    z-index: 3;
    max-width: 100%;
    animation: float-subtle 4s ease-in-out infinite;
}

.twins-foreground-image
{
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 40px rgba(6, 94, 200, 0.25));
}

.floating-badge
{
    position: absolute;
    background: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(6, 94, 200, 0.15);
    z-index: 4;
    white-space: nowrap;
}

.badge-1
{
    top: 15%;
    right: 0;
    animation: float 3s ease-in-out infinite;
    border-left: 4px solid var(--primary);
}

.badge-2
{
    bottom: 20%;
    left: 0;
    animation: float 3.5s ease-in-out infinite reverse;
    border-right: 4px solid var(--primary);
}

/* Option 4 Styles */
.dynamic-visual
{
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.twin-position
{
    position: absolute;
    width: 200px;
    z-index: 3;
}

.twin-1
{
    left: 0;
    bottom: 20%;
    transform: perspective(500px) rotateY(5deg);
    animation: float-left 4s ease-in-out infinite;
}

.twin-2
{
    right: 0;
    top: 20%;
    transform: perspective(500px) rotateY(-5deg);
    animation: float-right 4s ease-in-out infinite;
}

.twin-img
{
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(6, 94, 200, 0.2));
}

.book-position
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    z-index: 4;
    animation: float-center 3s ease-in-out infinite;
}

.book-img
{
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 30px 50px rgba(6, 94, 200, 0.4);
}

.book-pulse
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: var(--primary);
    opacity: 0.2;
    z-index: -1;
    animation: pulse 2s ease-out infinite;
}

.shape-bg
{
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--secondary) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 1;
    animation: rotate-slow 20s linear infinite;
}

/* Speaking Page Specific Styles */
.speaking-hero-section
{
    padding: 60px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
}

.speaking-hero-image-wrapper
{
    position: relative;
    text-align: center;
}

.speaking-hero-image
{
    max-width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(6, 94, 200, 0.2);
}

.experience-badge
{
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 20px 40px rgba(6, 94, 200, 0.3);
    white-space: nowrap;
}

.speaking-stats-mini
{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-mini-item
{
    text-align: center;
}

.audiences-section
{
    padding: 80px 0;
    background-color: var(--white);
}

.audience-card-wide
{
    background: var(--gray-50);
    border-radius: 50px;
    padding: 50px;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.audience-card-wide:hover
{
    transform: translateY(-5px);
    box-shadow: 0 30px 50px rgba(6, 94, 200, 0.1);
    border-color: var(--primary);
}

.audience-image-wrapper
{
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.audience-image
{
    width: 100%;
    border-radius: 30px;
    transition: transform 0.5s ease;
}

.audience-card-wide:hover .audience-image
{
    transform: scale(1.05);
}

.image-caption
{
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
}

.audience-icon
{
    width: 60px;
    height: 60px;
    background: var(--tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.audience-icon i
{
    font-size: 2rem;
    color: var(--primary);
}

.benefit-grid
{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.benefit-item
{
    display: flex;
    gap: 10px;
}

.benefit-item i
{
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.audience-testimonial
{
    background: var(--white);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 15px;
    position: relative;
}

.audience-testimonial .bi-quote
{
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.1;
}

.formats-section
{
    padding: 80px 0;
    background-color: var(--gray-50);
}

.format-card
{
    background: var(--white);
    border-radius: 30px;
    padding: 40px 30px;
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.format-card.featured
{
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(6, 94, 200, 0.1);
}

.format-card:hover
{
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(6, 94, 200, 0.15);
}

.format-card.featured:hover
{
    transform: scale(1.05) translateY(-10px);
}

.format-icon
{
    width: 70px;
    height: 70px;
    background: var(--tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.format-icon i
{
    font-size: 2rem;
    color: var(--primary);
}

.format-features
{
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.format-features li
{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--gray-700);
}

.format-features li i
{
    color: var(--primary);
}

.booking-section
{
    padding: 80px 0;
    background-color: var(--white);
}

.booking-card
{
    background: var(--white);
    border-radius: 50px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(6, 94, 200, 0.15);
    border: 1px solid var(--gray-200);
}

.booking-alternatives
{
    border-top: 1px solid var(--gray-200);
    padding-top: 40px;
}

.alternative-card
{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: 20px;
    height: 100%;
}

.alternative-card i
{
    font-size: 1.0rem;
    color: var(--primary);
    margin-right: 5px;
}

.speaking-faq-section
{
    padding: 80px 0;
    background-color: var(--gray-50);
}

.faq-accordion
{
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.faq-item
{
    border-bottom: 1px solid var(--gray-200);
}

.faq-item:last-child
{
    border-bottom: none;
}

.faq-question
{
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover
{
    background: var(--gray-50);
}

.faq-question i
{
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i
{
    transform: rotate(180deg);
}

.faq-answer
{
    display: none;
    padding: 0 25px 20px 25px;
    color: var(--gray-600);
}

/* Entrepreneurship Section Enhancements */
.benefit-item.highlight
{
    background: rgba(6, 94, 200, 0.05);
    padding: 10px;
    border-radius: 10px;
    border-left: 3px solid var(--primary);
}

.entrepreneurship-message
{
    animation: pulse-subtle 2s ease-in-out infinite;
}

.booking-card
{
    background: var(--white);
    border-radius: 50px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(6, 94, 200, 0.15);
    border: 1px solid var(--gray-200);
}

/* Form Groups */
.booking-card .mb-3
{
    position: relative;
}

.booking-card .form-label
{
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

/* Input Wrappers for Icons (Optional) */
.booking-card .input-wrapper
{
    position: relative;
}

.booking-card .input-wrapper i
{
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.booking-card .input-wrapper .form-control
{
    padding-left: 45px;
}

/* Input Fields */
.booking-card .form-control,
.booking-card .form-select
{
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 14px 18px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.1);
    color: var(--gray-800);
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.booking-card .form-control:hover,
.booking-card .form-select:hover
{
    border-color: var(--secondary);
    background: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 94, 200, 0.1);
}

.booking-card .form-control:focus,
.booking-card .form-select:focus
{
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 5px rgba(6, 94, 200, 0.1), 0 5px 15px rgba(6, 94, 200, 0.15);
    outline: none;
    transform: translateY(-2px);
}

/* Select specific styling */
.booking-card .form-select
{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23065ec8' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 16px;
    padding-right: 3rem;
}

/* Checkbox styling */
.booking-card .form-check
{
    padding-left: 2rem;
    margin-top: 20px;
}

.booking-card .form-check-input
{
    width: 22px;
    height: 22px;
    margin-left: -2rem;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.booking-card .form-check-input:checked
{
    background-color: var(--primary);
    border-color: var(--primary);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.booking-card .form-check-input:focus
{
    box-shadow: 0 0 0 4px rgba(6, 94, 200, 0.15);
    border-color: var(--primary);
}

.booking-card .form-check-label
{
    color: var(--gray-700);
    cursor: pointer;
    font-size: 1rem;
}

.booking-card .form-check-label a
{
    text-decoration: none;
    font-weight: 600;
}

/* Alternative Contact Cards */
.booking-alternatives
{
    border-top: 2px dashed var(--gray-200);
    padding-top: 40px;
}

.alternative-card
{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(145deg, var(--gray-50), var(--white));
    border-radius: 25px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.1);
    border: 2px solid transparent;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

.alternative-card:hover
{
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(6, 94, 200, 0.15);
}

.alternative-card i
{
    font-size: 1rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.alternative-card:hover i
{
    transform: scale(1.1) rotate(5deg);
    color: var(--white);
}

.alternative-card h4
{
    color: var(--gray-800);
    margin-bottom: 5px;
    font-weight: 700;
}

.alternative-card p
{
    color: var(--gray-600);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.alternative-card .btn
{
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.alternative-card .btn:hover
{
    transform: translateX(5px);
}

#SubmitBookingBtn
{
    padding: 18px !important;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

#SubmitBookingBtn::before
{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

#SubmitBookingBtn:hover
{
    transform: translateY(-3px);
    box-shadow: 0 20px 30px rgba(6, 94, 200, 0.3);
}

#SubmitBookingBtn:hover::before
{
    left: 100%;
}

/* Small note styling */
.booking-card .text-muted
{
    color: var(--gray-500) !important;
    font-size: 0.9rem;
}

/* Loading state for button */
#SubmitBookingBtn.submitting
{
    opacity: 0.8;
    pointer-events: none;
}

#SubmitBookingBtn.submitting i
{
    animation: spin 1s linear infinite;
}

/* Success/Error message styling */
.form-message
{
    padding: 15px;
    border-radius: 15px;
    margin-top: 20px;
    display: none;
}

.form-message.success
{
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error
{
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* About Page Styles */
.about-hero-section
{
    padding: 60px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    overflow: hidden;
}

.about-quick-facts
{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fact-item
{
    display: flex;
    align-items: center;
    gap: 10px;
}

.fact-item i
{
    font-size: 1.3rem;
}

.about-hero-image-wrapper
{
    position: relative;
    padding: 20px;
}

.about-hero-image
{
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(6, 94, 200, 0.2);
}

.image-collage
{
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    gap: 15px;
}

.collage-img
{
    width: 120px;
    height: 120px;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

.collage-img.book-img
{
    width: 100px;
    height: 130px;
    object-fit: cover;
}

/* Timeline */
.journey-section
{
    padding: 80px 0;
    background-color: var(--white);
}

.timeline
{
    position: relative;
    padding: 40px 0;
}

.timeline::before
{
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary), transparent);
    opacity: 0.3;
}

.timeline-item
{
    position: relative;
    margin-bottom: 100px;
}

.timeline-item:last-child
{
    margin-bottom: 0;
}

.timeline-marker
{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(6, 94, 200, 0.3);
    white-space: nowrap;
}

.year
{
    font-size: 1.1rem;
}

.timeline-content-wrapper
{
    padding-top: 60px;
}

.timeline-content
{
    padding: 30px;
    background: var(--gray-50);
    border-radius: 30px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.timeline-content:hover
{
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(6, 94, 200, 0.1);
    border-color: var(--primary);
}

.timeline-image
{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.timeline-image img
{
    transition: transform 0.5s ease;
}

.timeline-image:hover img
{
    transform: scale(1.05);
}

.image-caption
{
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
}

.detail-box
{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px;
    background: var(--white);
    border-radius: 15px;
    border: 1px solid var(--gray-200);
}

.detail-box i
{
    font-size: 2rem;
    color: var(--primary);
}

/* Reading Stats */
.reading-stats
{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-bubble
{
    background: var(--white);
    padding: 15px 20px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 2px solid var(--primary);
}

.stat-bubble .number
{
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-bubble .label
{
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* Bond Section */
.bond-principles .badge
{
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Writing Story */
.writing-story
{
    background: rgba(6, 94, 200, 0.05);
    padding: 20px;
    border-radius: 20px;
    border-left: 4px solid var(--primary);
}

.writing-story p
{
    margin-bottom: 10px;
}

.writing-story p:last-child
{
    margin-bottom: 0;
}

/* Speaking Highlights */
.speaking-highlights
{
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
}

.highlight-row
{
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--gray-200);
}

.highlight-row:last-child
{
    border-bottom: none;
}

.highlight-row i
{
    color: var(--primary);
    font-size: 1.2rem;
}

/* Faith Section */
.faith-section
{
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.faith-image-wrapper
{
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.faith-image
{
    width: 100%;
    border-radius: 30px;
}

.scripture-overlay
{
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 15px 25px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.scripture-overlay span
{
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
}

.scripture-overlay span:first-child
{
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Mission & Vision */
.mission-vision-section
{
    padding: 60px 0;
    background-color: var(--white);
}

.mission-card, .vision-card
{
    background: var(--gray-50);
    border-radius: 30px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.mission-card:hover, .vision-card:hover
{
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(6, 94, 200, 0.1);
    border-color: var(--primary);
}

.mission-card i, .vision-card i
{
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Trivia Section */
.trivia-section
{
    padding: 60px 0;
    background-color: var(--gray-50);
}

.trivia-card
{
    background: var(--white);
    border-radius: 30px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    height: 100%;
}

.trivia-card:hover
{
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(6, 94, 200, 0.1);
    border-color: var(--primary);
}

.trivia-card i
{
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.trivia-number
{
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.trivia-label
{
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* About CTA */
.about-cta-section
{
    padding: 60px 0 80px;
}

.about-cta-card
{
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50px;
    padding: 60px;
    color: white;
}

/* Hero Section */
.contact-hero-section
{
    padding: 60px 0 30px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
}

.contact-hero-title
{
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-hero-subtitle
{
    max-width: 700px;
    color: var(--gray-600);
}

/* Contact Options Cards */
.contact-options-section
{
    padding: 40px 0;
}

.contact-option-card
{
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.1);
    position: relative;
    overflow: hidden;
}

.contact-option-card::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.contact-option-card:hover::before
{
    transform: translateX(0);
}

.contact-option-card:hover
{
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 30px 50px rgba(6, 94, 200, 0.15);
}

.contact-option-card.featured
{
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(6, 94, 200, 0.1);
    z-index: 2;
}

.contact-option-card.featured:hover
{
    transform: scale(1.05) translateY(-10px);
}

.option-icon
{
    width: 80px;
    height: 80px;
    background: var(--tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.option-icon i
{
    font-size: 2.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.contact-option-card:hover .option-icon i
{
    transform: scale(1.1) rotate(5deg);
}

.contact-option-card h3
{
    margin-bottom: 15px;
}

.contact-option-card p
{
    color: var(--gray-600);
    margin-bottom: 20px;
}

.contact-option-card .btn
{
    border-radius: 50px;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

/* Quick Contact Row */
.quick-contact-section
{
    padding: 30px 0 50px;
}

.quick-contact-row
{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    background: var(--white);
    border-radius: 50px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(6, 94, 200, 0.05);
    border: 1px solid var(--gray-200);
}

.quick-contact-item
{
    display: flex;
    align-items: center;
    gap: 15px;
}

.quick-contact-item i
{
    font-size: 2.5rem;
    color: var(--primary);
}

.quick-contact-item .label
{
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.quick-contact-item .value
{
    color: var(--gray-800);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-contact-item .value:hover
{
    color: var(--primary);
}

/* Main Contact Section */
.main-contact-section
{
    padding: 60px 0;
    background-color: var(--gray-50);
}

.contact-card
{
    background: var(--white);
    border-radius: 50px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(6, 94, 200, 0.15);
    border: 1px solid var(--gray-200);
}

/* Booking Duplicate Section */
.booking-duplicate-section
{
    padding: 60px 0;
    background-color: var(--white);
}

/* Connect Section */
.connect-section
{
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.connect-content
{
    padding-right: 40px;
}

.social-connect-grid
{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.social-connect-item
{
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 20px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.social-connect-item:hover
{
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 30px rgba(6, 94, 200, 0.1);
}

.social-connect-item i
{
    font-size: 2rem;
}

.social-connect-item .platform
{
    display: block;
    font-weight: 600;
    color: var(--gray-800);
}

.social-connect-item .handle
{
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* Platform-specific colors on hover */
.social-connect-item.instagram:hover i
{
    color: #e4405f;
}

.social-connect-item.tiktok:hover i
{
    color: #000000;
    text-shadow: 2px 2px 0 #00f2ea;
}

.social-connect-item.facebook:hover i
{
    color: #1877f2;
}

.social-connect-item.threads:hover i
{
    color: black;
}

.social-connect-item.whatsapp:hover i
{
    color: #25D366;
}

.social-connect-item.email:hover i
{
    color: var(--primary);
}

.connect-image-wrapper
{
    position: relative;
}

.connect-image
{
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(6, 94, 200, 0.2);
}

.quick-reply-badge
{
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 20px 30px rgba(6, 94, 200, 0.3);
    animation: float 3s ease-in-out infinite;
}

.quick-reply-badge i
{
    font-size: 1.5rem;
}

/* FAQ Mini */
.contact-faq-section
{
    padding: 60px 0 80px;
    background-color: var(--gray-50);
}

.faq-mini-card
{
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.faq-mini-card:hover
{
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(6, 94, 200, 0.1);
}

.faq-mini-card h4
{
    margin-bottom: 10px;
    color: var(--gray-800);
}

.faq-mini-card p
{
    color: var(--gray-600);
    margin: 0;
}

/* Form Element Styles (Option 3) */
.booking-card .input-wrapper,
.contact-card .input-wrapper
{
    position: relative;
}

.booking-card .input-wrapper i,
.contact-card .input-wrapper i
{
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 1.2rem;
    transition: color 0.3s ease;
    z-index: 2;
}

.booking-card .input-wrapper textarea + i,
.contact-card .input-wrapper textarea + i
{
    top: 20px;
    transform: none;
}

.booking-card .form-control,
.booking-card .form-select,
.contact-card .form-control,
.contact-card .form-select
{
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 14px 18px 14px 45px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.1);
    color: var(--gray-800);
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    width: 100%;
}

.booking-card .form-control:hover,
.booking-card .form-select:hover,
.contact-card .form-control:hover,
.contact-card .form-select:hover
{
    border-color: var(--secondary);
    background: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 94, 200, 0.1);
}

.booking-card .form-control:focus,
.booking-card .form-select:focus,
.contact-card .form-control:focus,
.contact-card .form-select:focus
{
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 5px rgba(6, 94, 200, 0.1), 0 5px 15px rgba(6, 94, 200, 0.15);
    outline: none;
    transform: translateY(-2px);
}

.booking-card .input-wrapper:focus-within i,
.contact-card .input-wrapper:focus-within i
{
    color: var(--primary);
}

/* Select specific */
.booking-card .form-select,
.contact-card .form-select
{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23065ec8' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 16px;
    padding-right: 3rem;
}

/* Checkbox */
.booking-card .form-check,
.contact-card .form-check
{
    padding-left: 2rem;
}

.booking-card .form-check-input,
.contact-card .form-check-input
{
    width: 22px;
    height: 22px;
    margin-left: -2rem;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.booking-card .form-check-input:checked,
.contact-card .form-check-input:checked
{
    background-color: var(--primary);
    border-color: var(--primary);
}

.booking-card .form-check-input:focus,
.contact-card .form-check-input:focus
{
    box-shadow: 0 0 0 4px rgba(6, 94, 200, 0.15);
    border-color: var(--primary);
}

/* Submit Buttons */
#SubmitContactBtn,
#SubmitBookingBtn
{
    padding: 18px !important;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

#SubmitContactBtn::before,
#SubmitBookingBtn::before
{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

#SubmitContactBtn:hover,
#SubmitBookingBtn:hover
{
    transform: translateY(-3px);
    box-shadow: 0 20px 30px rgba(6, 94, 200, 0.3);
}

#SubmitContactBtn:hover::before,
#SubmitBookingBtn:hover::before
{
    left: 100%;
}


/* Animations */
@keyframes pulse-subtle
{
    0%, 100%
    {
        opacity: 1;
    }

    50%
    {
        opacity: 0.9;
        transform: scale(1.02);
    }
}

@keyframes spin
{
    from
    {
        transform: rotate(0deg);
    }

    to
    {
        transform: rotate(360deg);
    }
}

@keyframes float
{
    0%, 100%
    {
        transform: translateY(0);
    }

    50%
    {
        transform: translateY(-15px);
    }
}

@keyframes float-slow
{
    0%, 100%
    {
        transform: translateY(0) rotate(0deg);
    }

    50%
    {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes float-subtle
{
    0%, 100%
    {
        transform: translateY(0);
    }

    50%
    {
        transform: translateY(-5px);
    }
}

@keyframes float-left
{
    0%, 100%
    {
        transform: perspective(500px) rotateY(5deg) translateY(0);
    }

    50%
    {
        transform: perspective(500px) rotateY(5deg) translateY(-10px);
    }
}

@keyframes float-right
{
    0%, 100%
    {
        transform: perspective(500px) rotateY(-5deg) translateY(0);
    }

    50%
    {
        transform: perspective(500px) rotateY(-5deg) translateY(-10px);
    }
}

@keyframes float-center
{
    0%, 100%
    {
        transform: translate(-50%, -50%) scale(1);
    }

    50%
    {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes pulse
{
    0%
    {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }

    100%
    {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes rotate-slow
{
    from
    {
        transform: rotate(0deg);
    }

    to
    {
        transform: rotate(360deg);
    }
}



/* Responsive */
@media (max-width: 992px)
{
    h1
    {
        font-size: 2.8rem;
    }

    h2
    {
        font-size: 2rem;
    }

    .hero-title
    {
        font-size: 3rem;
    }

    .hero-image-wrapper
    {
        margin-top: 0px;
    }
    .hero-content
    {
        padding-bottom: 0px;
    }

    .book-audience-grid
    {
        grid-template-columns: 1fr;
    }

    .speaking-card.featured
    {
        transform: scale(1);
    }

    .speaking-card.featured:hover
    {
        transform: translateY(-10px);
    }

    .cta-card
    {
        padding: 40px;
        border-radius: 30px;
    }

    .cta-title
    {
        font-size: 2rem;
    }

    .twin-position
    {
        width: 150px;
    }

    .book-position
    {
        width: 140px;
    }

    .twin-container
    {
        max-width: 150px;
    }

    .book-image
    {
        width: 120px;
    }

    .floating-book
    {
        width: 140px;
    }
    .audience-card-wide
    {
        padding: 30px;
    }

    .benefit-grid
    {
        grid-template-columns: 1fr;
    }

    .format-card.featured
    {
        transform: scale(1);
    }

    .format-card.featured:hover
    {
        transform: translateY(-10px);
    }

    .experience-badge
    {
        position: relative;
        bottom: 0;
        margin-top: -20px;
        left: 15%;
        display: inline-flex;
        width: auto;
        display:none;
    }
    .navbar-nav .nav-link::after
    {
        left: 9%;
    }

    .booking-card
    {
        padding: 40px;
    }
    .timeline::before
    {
        left: 30px;
    }

    .timeline-marker
    {
        left: 30px;
        transform: none;
    }

    .timeline-content-wrapper
    {
        padding-left: 80px;
        padding-top: 0;
    }

    .image-collage
    {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
        justify-content: center;
    }
    .contact-hero-title
    {
        font-size: 3rem;
    }

    .contact-option-card.featured
    {
        transform: scale(1);
    }

    .contact-option-card.featured:hover
    {
        transform: translateY(-10px);
    }

    .quick-contact-row
    {
        border-radius: 30px;
        padding: 20px;
    }

    .contact-card,
    .booking-card
    {
        padding: 40px;
    }

    .connect-content
    {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px)
{
    body
    {
        padding-top: 70px;
    }

    .navbar-logo
    {
        height: 35px;
    }

    .hero-title
    {
        font-size: 2.5rem;
    }

    .hero-stats
    {
        flex-wrap: wrap;
        gap: 20px;
    }

    .book-cta .btn
    {
        width: 100%;
    }

    .book-highlights
    {
        grid-template-columns: 1fr;
    }

    .stat-card
    {
        padding: 20px;
    }

    .stat-number
    {
        font-size: 2.5rem;
    }

    .cta-card
    {
        text-align: center;
    }

    .cta-card .text-lg-end
    {
        text-align: center !important;
        margin-top: 20px;
    }

    .twins-showcase
    {
        flex-direction: column;
        gap: 10px;
    }

    .twin-container
    {
        max-width: 180px;
    }

    .book-container
    {
        order: -1;
        margin-bottom: 20px;
    }

    .twin-position
    {
        position: static;
        width: 150px;
        margin: 10px;
    }

    .dynamic-visual
    {
        min-height: auto;
        flex-direction: column;
        padding: 40px 0;
    }

    .twin-1, .twin-2
    {
        position: static;
        margin: 10px 0;
    }

    .book-position
    {
        position: static;
        transform: none;
        margin: 20px 0;
    }

    .floating-badge
    {
        position: static;
        display: inline-block;
        margin: 5px;
    }
    #FooterOrderNowBtn, #FooterBookUsBtn
    {
        width: 250px !important;
    }
    .speaking-stats-mini
    {
        justify-content: center;
    }

    .audience-card-wide
    {
        border-radius: 30px;
        padding: 25px;
    }

    .booking-card
    {
        padding: 30px;
        border-radius: 30px;
    }

    .alternative-card
    {
        flex-direction: column;
        text-align: center;
    }

    .experience-badge
    {
        padding: 15px 25px;
    }

    .experience-badge span:first-child
    {
        font-size: 1.5rem;
    }
    .benefit-item.highlight
    {
        margin-bottom: 10px;
    }

    .entrepreneurship-message
    {
        padding: 15px !important;
    }

    .entrepreneurship-message p
    {
        font-size: 14px;
    }

    .booking-card
    {
        padding: 30px;
        border-radius: 30px;
    }

    .alternative-card
    {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .booking-card .form-control,
    .booking-card .form-select
    {
        padding: 12px 15px;
    }

    #SubmitBookingBtn
    {
        padding: 15px !important;
        font-size: 1.1rem;
    }
    .about-hero-section, .journey-section, .faith-section, .mission-vision-section
    {
        padding: 40px 0;
    }

    .timeline-content
    {
        padding: 20px;
    }

    .reading-stats
    {
        justify-content: center;
    }

    .stat-bubble
    {
        flex: 1;
        min-width: 100px;
    }

    .trivia-card
    {
        padding: 20px;
    }

    .trivia-number
    {
        font-size: 1.5rem;
    }

    .about-cta-card
    {
        padding: 40px;
        border-radius: 30px;
        text-align: center;
    }

    .about-cta-card .text-lg-end
    {
        text-align: center !important;
        margin-top: 20px;
    }
    .contact-hero-title
    {
        font-size: 2.5rem;
    }

    .quick-contact-row
    {
        flex-direction: column;
        align-items: flex-start;
    }

    .quick-contact-item
    {
        width: 100%;
    }

    .contact-card,
    .booking-card
    {
        padding: 30px;
        border-radius: 30px;
    }

    .social-connect-grid
    {
        grid-template-columns: 1fr;
    }

    .quick-reply-badge
    {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }

    .contact-faq-section
    {
        padding: 40px 0;
    }
}

@media (max-width: 576px)
{
    .hero-section
    {
        padding: 0 20px;
    }

    .hero-title
    {
        font-size: 2rem;
    }

    .section-title
    {
        font-size: 2rem;
    }

    .book-cover-large
    {
        max-width: 250px;
    }

    .book-highlight
    {
        width: 100px;
        height: 130px;
    }

    .cta-card
    {
        padding: 30px 20px;
    }

    .cta-title
    {
        font-size: 1.8rem;
    }

    .floating-book
    {
        width: 100px;
    }

    .hero-stats .stat-item .stat-label
    {
        font-size: 14px !important;
    }

    .hero-cta .btn, .book-cta .btn
    {
        width: 230px;
        margin-left: auto;
        margin-right: auto;
        padding: 7px;
    }
    .hero-cta
    {
        flex-direction: column;
    }
    .book-highlights
    {
        gap: 3px;
    }
    .book-audience-grid
    {
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .speaking-section
    {
        padding: 40px 0;
    }
    #HomeEnquireBtn, #HomeLetsConnectBtn
    {
        padding: 5px 15px;
    }
    .testimonials-section
    {
        padding: 40px 0px;
    }
    .speaking-hero-section
    {
        padding: 30px 0;
    }

    .audiences-section, .formats-section, .booking-section, .speaking-faq-section
    {
        padding: 40px 0;
    }

    .benefit-item
    {
        flex-direction: column;
        text-align: center;
    }

    .format-card
    {
        padding: 30px 20px;
    }

    .booking-card
    {
        padding: 20px;
    }

    .alternative-card
    {
        margin-bottom: 15px;
    }
    #SpeakingBookNowBtn, #SpeakingLearnMoreBtn
    {
        padding: 7px 20px;
        font-size: 16px;
        margin-bottom: 10px;
        width: 180px;
    }
    .experience-badge
    {
        left: 17%;
    }
    #SubmitBookingBtn
    {
        padding: 7px 15px;
        font-size: 16px;
    }
    .navbar-nav .nav-link::after
    {
        left: 50px;
    }
    .booking-card
    {
        padding: 20px;
    }

    .alternative-card
    {
        padding: 20px;
        margin-bottom: 15px;
    }

    .booking-card .form-label
    {
        font-size: 0.9rem;
    }

    #SubmitBookingBtn
    {
        padding: 12px !important;
        font-size: 1rem;
    }

    .booking-alternatives
    {
        padding-top: 30px;
    }
    .image-collage
    {
        flex-wrap: wrap;
    }

    .collage-img
    {
        width: 80px;
        height: 80px;
    }

    .collage-img.book-img
    {
        width: 70px;
        height: 90px;
    }

    .timeline-marker
    {
        padding: 8px 15px;
    }

    .year
    {
        font-size: 0.9rem;
    }

    .timeline-content-wrapper
    {
        padding-left: 60px;
    }

    .stat-bubble
    {
        min-width: 80px;
        padding: 10px;
    }

    .stat-bubble .number
    {
        font-size: 1.2rem;
    }

    .scripture-overlay
    {
        left: 15px;
        bottom: 15px;
        padding: 10px 15px;
    }

    .scripture-overlay span
    {
        font-size: 1rem;
    }
    #AboutToSpeakingBtn
    {
        padding: 7px 25px;
    }
    .contact-hero-section
    {
        padding: 40px 0 20px;
    }

    .contact-hero-title
    {
        font-size: 2rem;
    }

    .contact-option-card
    {
        padding: 30px 20px;
    }

    .option-icon
    {
        width: 60px;
        height: 60px;
    }

    .option-icon i
    {
        font-size: 2rem;
    }

    .contact-card,
    .booking-card
    {
        padding: 20px;
    }

    #SubmitContactBtn,
    #SubmitBookingBtn
    {
        padding: 14px !important;
        font-size: 1rem;
    }

    .connect-section
    {
        padding: 40px 0;
    }

    .quick-reply-badge
    {
        padding: 10px 20px;
    }
}

@media (max-width: 400px)
{
    .book-cta
    {
        flex-direction: column;
    }
    #SubmitBookingBtn
    {
        font-size: 14px;
    }
}

@media (max-width: 370px)
{
    .floating-book
    {
        width: 70px;
    }
    .book-badge
    {
        font-size:8px;
        top: -13px;
        padding: 3px 10px;
    }
    .hero-stats .stat-item .stat-label
    {
        font-size: 12px !important;
    }
}