/* ========================================
   HOMEPAGE TEMPLATE STYLES
   ======================================== */

/* Hero Section Main */
.hero-section-main {
    position: relative;
    min-height: auto;
    background: #fff;
    overflow: hidden;
    padding: 4rem 2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.hero-left-column,
.hero-right-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-right-column {
    justify-content: stretch;
}

/* Hero Slider Styles */
.hero-slider-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(139, 26, 26, 0.15);
}

.hero-slider {
    position: relative;
    height: 350px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(139, 26, 26, 0.4), transparent);
    color: #fff;
}

.hero-slide-content h2,
.hero-slide-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.75rem;
}

.hero-slide-content p {
    margin: 0 0 0.75rem;
    opacity: 0.9;
}

.hero-slide-content .btn-primary {
    margin-top: 1.5rem;
}

.slide-tag {
    display: inline-block;
    background: var(--color-antique-gold);
    color: var(--color-deep-burgundy);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.slider-nav,
.slider-dots {
    display: none !important;
}

/* Hero Cards Row */
.hero-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.hero-card {
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
    min-height: 280px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(139, 26, 26, 0.2);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 26, 26, 0.5);
    z-index: 1;
    transition: background 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(139, 26, 26, 0.3);
}

.hero-card:hover::before {
    background: rgba(139, 26, 26, 0.45);
}

.hero-card h4 {
    margin: 0 0 0.75rem;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-card p {
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Stats Section */
.stats-section {
    background: var(--color-deep-burgundy);
    padding: 3rem 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--color-antique-gold);
    line-height: 1;
}

.stat-item .stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-antique-gold);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 2rem 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stat-item i {
        font-size: 1.8rem;
    }
    
    .stat-item .stat-content {
        align-items: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

.hero-card .btn-secondary {
    background: var(--color-antique-gold);
    color: var(--color-deep-burgundy);
    padding: 0.7rem 1.75rem;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
    border: 2px solid var(--color-antique-gold);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.hero-card .btn-secondary:hover {
    background: #fff;
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

/* Right Column Vertical Slider */
.hero-right-column .hero-slider-wrapper {
    height: 100%;
    flex: 1;
}

.hero-right-column .hero-slide img {
    height: 100%;
    object-fit: cover;
}

.hero-right-column .hero-slider {
    height: 100%;
}

.hero-right-column .slider-prev,
.hero-right-column .slider-next {
    top: auto;
    bottom: 1rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

.hero-right-column .slider-prev {
    margin-left: -25px;
}

.hero-right-column .slider-next {
    margin-left: 25px;
}

.hero-right-column .hero-slide-content {
    text-align: center;
}

.hero-right-column .hero-slide-content .btn-primary {
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-right-column {
        order: -1;
    }
    
    .hero-cards-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-card {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .hero-cards-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .hero-card {
        min-height: 240px;
        padding: 1.5rem 1rem;
    }
    
    .hero-card h4 {
        font-size: 1.1rem;
    }
    
    .hero-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .hero-section-main {
        padding: 2rem 1rem;
    }
    
    .hero-cards-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-card {
        min-height: 220px;
        padding: 1.25rem 1rem;
    }
    
    .hero-card h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-card p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-slider {
        height: 250px;
    }
    
    .hero-right-column .hero-slider-wrapper {
        height: 400px;
    }
    
    .hero-card .btn-secondary {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="100" cy="100" r="2" fill="%23D4AF37" opacity="0.3"/><circle cx="300" cy="200" r="2" fill="%238B1A1A" opacity="0.2"/><circle cx="500" cy="150" r="2" fill="%23D4AF37" opacity="0.3"/><circle cx="700" cy="250" r="2" fill="%238B1A1A" opacity="0.2"/><circle cx="900" cy="100" r="2" fill="%23D4AF37" opacity="0.3"/><circle cx="1100" cy="200" r="2" fill="%238B1A1A" opacity="0.2"/></svg>');
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 5rem;
    font-weight: 700;
    color: var(--color-deep-burgundy);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-zodiac-symbols {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.zodiac-symbol {
    position: absolute;
    font-size: 3rem;
    color: var(--color-antique-gold);
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.zodiac-1 { top: 10%; left: 5%; animation-delay: 0s; }
.zodiac-2 { top: 15%; right: 8%; animation-delay: 1s; }
.zodiac-3 { top: 30%; left: 15%; animation-delay: 2s; }
.zodiac-4 { top: 45%; right: 5%; animation-delay: 3s; }
.zodiac-5 { top: 60%; left: 10%; animation-delay: 4s; }
.zodiac-6 { top: 75%; right: 12%; animation-delay: 5s; }
.zodiac-7 { bottom: 10%; left: 20%; animation-delay: 0.5s; }
.zodiac-8 { bottom: 15%; right: 15%; animation-delay: 1.5s; }
.zodiac-9 { top: 20%; left: 25%; animation-delay: 2.5s; }
.zodiac-10 { top: 50%; right: 20%; animation-delay: 3.5s; }
.zodiac-11 { bottom: 30%; left: 8%; animation-delay: 4.5s; }
.zodiac-12 { bottom: 20%; right: 25%; animation-delay: 5.5s; }

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

/* Welcome Section */
.welcome-section {
    padding: 5rem 2rem 3rem;
    background: white;
}

/* Welcome Combined Section */
.welcome-combined-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #fff 0%, #faf8f3 100%);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.welcome-content {
    padding-right: 2rem;
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-deep-burgundy);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.welcome-description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    text-align: justify;
}

.resources-content .resources-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-antique-gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.resources-content .resources-subtitle {
    text-align: center;
    margin-bottom: 1rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    justify-content: center;
}

.resource-card {
    text-align: center;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    min-height: auto;
}

.resource-card .resource-icon {
    margin-bottom: 0.5rem;
}

.resource-card .resource-title {
    margin-bottom: 0.25rem;
}

.resource-card .resource-description {
    margin-bottom: 0.75rem;
}

.resources-grid {
    gap: 1rem;
}

@media (max-width: 992px) {
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .welcome-content {
        padding-right: 0;
        text-align: center;
    }
    
    .welcome-title {
        font-size: 1.75rem;
    }
    
    .resources-content {
        text-align: center;
    }
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-deep-burgundy);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-antique-gold);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Free Resources Section */
.free-resources-section {
    padding: 4rem 2rem;
    background: #fff;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.resource-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.resource-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-antique-gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.resource-icon {
    font-size: 4rem;
    color: var(--color-antique-gold);
    margin-bottom: 1.5rem;
}

.resource-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-deep-burgundy);
    margin-bottom: 1rem;
}

.resource-description {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

/* Publications Section */
.publications-section {
    padding: 5rem 2rem;
    background: rgba(245, 230, 211, 0.3);
}

.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.publication-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    border: 2px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.publication-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25);
    border-color: var(--color-antique-gold);
}

.publication-image {
    width: 100%;
    height: 350px;
    background: #f5e6d3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.publication-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.publication-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 0.5rem;
    margin-bottom: 1rem;
}

.publication-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-deep-burgundy);
    margin: 0;
    flex: 1;
}

.publication-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-antique-gold);
    margin: 0;
    margin-left: 1rem;
}

.publication-card .btn-ghost {
    margin-bottom: 1.5rem;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Courses Section */
.courses-section {
    padding: 5rem 2rem;
    background: #fff;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.courses-scroll-wrapper {
    overflow-x: auto;
    margin: 0 -2rem 3rem -2rem;
    padding: 0 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--color-antique-gold) #f5e6d3;
}

.courses-scroll-wrapper::-webkit-scrollbar {
    height: 8px;
}

.courses-scroll-wrapper::-webkit-scrollbar-track {
    background: #f5e6d3;
    border-radius: 4px;
}

.courses-scroll-wrapper::-webkit-scrollbar-thumb {
    background: var(--color-antique-gold);
    border-radius: 4px;
}

.courses-scroller {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 1rem;
}

.courses-scroller .course-card {
    flex: 0 0 280px;
    max-width: 280px;
}

.courses-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.courses-slider {
    display: flex;
    gap: 1.5rem;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    justify-content: center;
}

.courses-slider .course-card {
    flex: 0 0 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
    min-width: 280px;
}

.courses-slider-btn {
    background: var(--color-antique-gold);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.courses-slider-btn:hover:not(:disabled) {
    background: var(--color-deep-maroon);
    transform: scale(1.1);
}

.courses-slider-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
}

@media (max-width: 992px) {
    .courses-slider .course-card {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
    }
}

@media (max-width: 576px) {
    .courses-slider .course-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.courses-section .course-card {
    background: white;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.35);
    transition: all 0.3s ease;
    overflow: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.courses-section .course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(139, 26, 26, 0.16);
    border-color: var(--color-antique-gold);
}

.courses-section .course-image {
    width: 100%;
    height: 170px;
    overflow: hidden;
}

.courses-section .course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.courses-section .course-card:hover .course-image img {
    transform: scale(1.05);
}

.courses-section .course-info {
    padding: 1rem 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
}

.courses-section .course-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-deep-burgundy);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.courses-section .course-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    min-height: 2.8em;
}

.courses-section .course-card .btn-primary {
    margin-top: auto;
}

/* Mentor Section */
.mentor-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--color-deep-burgundy), #6B0F1A);
}

.mentor-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.mentor-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--color-antique-gold);
}

.mentor-content-col {
    padding: 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
}

.mentor-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-antique-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.mentor-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.mentor-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.mentor-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.mentor-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.mentor-list li::before {
    content: "✓ ";
    color: var(--color-antique-gold);
    margin-right: 0.5rem;
}

.mentor-content-col .btn-primary {
    margin-top: 1rem;
    background: var(--color-antique-gold);
    border-color: var(--color-antique-gold);
}

.mentor-content-col .btn-primary:hover {
    background: #b8962e;
    border-color: #b8962e;
}

@media (max-width: 992px) {
    .mentor-wrapper {
        grid-template-columns: 1fr;
    }
    
    .mentor-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Founder Section */
.founder-section {
    padding: 5rem 2rem;
    background: white;
}

.founder-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.founder-image img {
    width: 100%;
    height: auto;
    display: block;
}

.founder-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-antique-gold);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.founder-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-deep-burgundy);
    margin-bottom: 1.5rem;
}

.founder-description {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Videos Section */
.videos-section {
    padding: 5rem 2rem;
    background: #fafafa;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.video-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #E8D5B7 0%, #D4AF37 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(139, 26, 26, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.play-button:hover {
    background: var(--color-deep-burgundy);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-title {
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-deep-burgundy);
    text-align: center;
}

.video-title a {
    color: var(--color-deep-burgundy);
    transition: var(--transition-normal);
}

.video-title a:hover {
    color: var(--color-antique-gold);
}

/* Consultation Section */
.consultation-section {
    padding: 5rem 2rem;
    background: #fff;
    margin: 0;
}

.consultation-section .container {
    background: transparent;
}

.consultation-content {
    max-width: 700px;
    margin: 0 auto;
}

.consultation-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-deep-burgundy);
    margin-bottom: 1rem;
}

.consultation-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.consultation-section .consultations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.consultation-section .consultation-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: var(--transition-normal);
    border: 2px solid transparent;
    text-align: center;
    padding-bottom: 1rem;
    flex: 0 0 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
    min-width: 260px;
}

.consultation-section .consultation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 26, 26, 0.15);
    border-color: var(--color-antique-gold);
}

.consultation-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.consultation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.consultation-info {
    padding: 1rem;
}

.consultation-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-deep-burgundy);
    margin-bottom: 0.5rem;
}

.consultation-duration {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.consultation-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-antique-gold);
    margin-bottom: 1rem;
}

.consultation-price .price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.consultation-price .price-sale {
    color: var(--color-antique-gold);
}

@media (max-width: 992px) {
    .consultation-section .consultation-card {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
    }
}

@media (max-width: 576px) {
    .consultation-section .consultation-card {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 0;
    }
}

/* Blog Section */
.blog-section {
    padding: 5rem 2rem;
    background: #fff;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.blog-title-wrapper .section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--color-deep-burgundy);
    text-align: left;
    margin: 0;
}

.blog-title-wrapper .section-title em {
    font-style: italic;
    color: var(--color-antique-gold);
}

.blog-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.5rem;
}

/* Featured Post - Left Side */
.blog-featured {
    display: flex;
}

.blog-card-featured {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.blog-card-featured .blog-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog-card-featured .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.blog-card-featured:hover .blog-image img {
    transform: scale(1.05);
}

.blog-card-featured .blog-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    color: white;
}

.blog-card-featured .blog-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--color-deep-burgundy);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.blog-card-featured .blog-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-card-featured .blog-title a {
    color: white;
    transition: var(--transition-normal);
}

.blog-card-featured .blog-title a:hover {
    color: var(--color-antique-gold);
}

.blog-card-featured .blog-meta {
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

.blog-card-featured .blog-separator {
    margin: 0 0.25rem;
}

/* Sidebar Posts - Right Side */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-card-small {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 140px;
}

.blog-card-small .blog-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog-card-small .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.blog-card-small:hover .blog-image img {
    transform: scale(1.05);
}

.blog-card-small .blog-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    color: white;
}

.blog-card-small .blog-category {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background: var(--color-deep-burgundy);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.blog-card-small .blog-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.blog-card-small .blog-title a {
    color: white;
    transition: var(--transition-normal);
}

.blog-card-small .blog-title a:hover {
    color: var(--color-antique-gold);
}

.blog-card-small .blog-meta {
    display: flex;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
}

.blog-card-small .blog-separator {
    margin: 0 0.15rem;
}

/* Responsive blog layout */
@media (max-width: 900px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .blog-card-featured {
        min-height: 350px;
    }
}

/* Legacy styles for fallback */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
    border-color: var(--color-antique-gold);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--color-antique-gold);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-title a {
    color: var(--color-deep-burgundy);
    transition: var(--transition-normal);
}

.blog-title a:hover {
    color: var(--color-antique-gold);
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.blog-meta i {
    margin-right: 0.25rem;
    color: var(--color-antique-gold);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 2rem;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    border-color: var(--color-antique-gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    text-align: center;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-deep-burgundy);
    margin-bottom: 0.5rem;
}

.author-rating {
    color: var(--color-antique-gold);
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background: #fff;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    border: 2px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--color-antique-gold);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-deep-burgundy);
    margin: 0;
}

.faq-question i {
    color: var(--color-antique-gold);
    font-size: 1.25rem;
    transition: var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #8B1A1A 0%, #6B0F1A 100%);
}

.newsletter-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.newsletter-subtitle {
    font-size: 1.25rem;
    color: var(--color-wheat-gold);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-antique-gold);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-submit {
    padding: 1rem 2rem;
    background: var(--color-antique-gold);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.newsletter-submit:hover {
    background: var(--color-bronze);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.section-cta {
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Consistent mobile section padding */
    .welcome-section,
    .publications-section,
    .courses-section,
    .founder-section,
    .videos-section,
    .testimonials-section,
    .faq-section,
    .newsletter-section,
    .blog-section {
        padding: 3rem 1rem;
    }
    
    .hero-section {
        padding: 3rem 1rem 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .founder-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .zodiac-symbol {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE FIXES
   ======================================== */

@media (max-width: 992px) {
    /* General Section Padding */
    .hero-section-main,
    .welcome-section,
    .free-resources-section,
    .publications-section,
    .courses-section,
    .founder-section,
    .videos-section,
    .consultation-section,
    .blog-section,
    .testimonials-section,
    .faq-section,
    .newsletter-section {
        padding: 3rem 1rem;
    }
    
    /* Resource Cards */
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Publications */
    .publications-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    /* Courses */
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Videos */
    .videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* FAQ */
    .faq-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    /* Hero Section */
    .hero-section-main {
        padding: 2rem 1rem 3rem;
        min-height: auto;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-ghost {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }
    
    /* Sections */
    .welcome-section,
    .free-resources-section,
    .publications-section,
    .courses-section,
    .founder-section,
    .videos-section,
    .consultation-section,
    .blog-section,
    .testimonials-section,
    .faq-section,
    .newsletter-section {
        padding: 2.5rem 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    /* Resource Cards */
    .resource-card {
        padding: 1.5rem;
    }
    
    /* Publication Cards */
    .publication-card {
        padding: 1rem;
    }
    
    .publication-info {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .publication-title {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .publication-price {
        font-size: 1.25rem;
        margin-left: 0;
    }
    
    .publication-image {
        height: 250px;
    }
    
    /* Course Cards */
    .courses-section .course-card {
        padding: 0;
    }
    
    /* Founder Section */
    .founder-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .founder-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .founder-content {
        text-align: center;
    }
    
    /* Video Cards */
    .video-card {
        min-height: 180px;
    }
    
    /* Blog Section */
    .blog-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-card-featured {
        min-height: 300px;
    }
    
    .blog-card-featured .blog-title {
        font-size: 1.25rem;
    }
    
    .blog-title-wrapper .section-title {
        font-size: 1.75rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    /* FAQ */
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-input {
        width: 100%;
    }
    
    .newsletter-submit {
        width: 100%;
    }
    
    /* Zodiac symbols */
    .hero-zodiac-symbols {
        display: none;
    }
}

@media (max-width: 480px) {
    /* Hero */
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    /* Sections */
    .section-title {
        font-size: 1.5rem;
    }
    
    /* Publications */
    .publications-grid {
        grid-template-columns: 1fr;
    }
    
    .publication-image {
        height: 180px;
    }
    
    .publication-title {
        font-size: 1rem;
    }
    
    .publication-price {
        font-size: 1.1rem;
    }
    
    .publication-info {
        padding: 1rem 1rem 0.5rem;
    }
    
    /* Blog */
    .blog-card-featured {
        min-height: 250px;
    }
    
    .blog-card-small {
        min-height: 120px;
    }
    
    .blog-card-featured .blog-title {
        font-size: 1.1rem;
    }
    
    .blog-card-small .blog-title {
        font-size: 0.9rem;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-ghost,
    .btn-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .courses-slider-wrapper {
        gap: 0.5rem;
    }

    .courses-slider-btn {
        width: 38px;
        height: 38px;
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .courses-slider-wrapper {
        display: block;
        margin-bottom: 2rem;
    }

    .courses-slider {
        overflow-x: auto;
        justify-content: flex-start;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }

    .courses-slider .course-card {
        scroll-snap-align: start;
    }

    .courses-slider-btn {
        display: none;
    }

    .courses-section .course-image {
        height: 180px;
    }

    .courses-section .course-info {
        padding: 1rem;
    }

    .section-cta {
        margin-top: 2rem;
    }

    .consultation-content {
        padding: 0 0.25rem;
    }
}

@media (max-width: 480px) {
    .courses-section .course-image {
        height: 160px;
    }

    .courses-section .course-title {
        font-size: 1.1rem;
    }

    .courses-section .course-description {
        font-size: 0.9rem;
    }
}
