/* ========================================
   NIVE SALON - MAIN STYLES
   ======================================== */

/* Color Variables */
:root {
    --primary-red: #57111b;
    --dark-red: #3d0c13;
    --light-red: #8c3040;
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    --dark-grey: #1A1A1A;
    --text-grey: #333333;
    --gold: #D4AF37;
    --black: #000000;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--off-white);
    overflow-x: hidden;
}

/* ========================================
   HERO SLIDER / CAROUSEL
   ======================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 6s ease;
}

.slide.active .slide-bg {
    transform: scale(1.1);
}

/* Slide Overlays */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(87, 17, 27, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

/* Slide Content */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
    width: 90%;
    max-width: 900px;
}

.slide-content .subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.slide.active .slide-content .subtitle {
    opacity: 1;
    transform: translateY(0);
}

.slide-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
}

.slide.active .slide-content h1 {
    opacity: 1;
    transform: translateY(0);
}

.slide-content .description {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.7s;
}

.slide.active .slide-content .description {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Buttons */
.slider-btn {
    display: inline-block;
    padding: 16px 45px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .slider-btn {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease 0.9s, background-color 0.4s ease, color 0.4s ease;
}

.slider-btn.primary {
    background-color: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--primary-red);
    margin-right: 15px;
}

.slider-btn.primary:hover {
    background-color: transparent;
    color: var(--white);
}

.slider-btn.secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.slider-btn.secondary:hover {
    background-color: var(--white);
    color: var(--dark-grey);
}

/* Slider Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

/* Slider Dots/Indicators */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.slider-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 6px;
    height: 6px;
    background: var(--gold);
    transition: transform 0.3s ease;
}

.slider-dot.active::after,
.slider-dot:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.slider-dot.active {
    border-color: var(--gold);
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 20;
}

.slider-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), var(--gold));
    width: 0%;
    transition: width 0.1s linear;
}

/* ========================================
   RESPONSIVE HERO SLIDER
   ======================================== */
@media screen and (max-width: 1024px) {
    .slide-content h1 {
        font-size: 3.5rem;
    }

    .slider-nav {
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content .subtitle {
        font-size: 0.8rem;
        letter-spacing: 4px;
    }

    .slide-content .description {
        font-size: 1rem;
    }

    .slider-btn {
        padding: 14px 30px;
        font-size: 0.8rem;
        display: block;
        margin: 10px auto;
    }

    .slider-btn.primary {
        margin-right: 0;
    }

    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .slider-nav.prev {
        left: 15px;
    }

    .slider-nav.next {
        right: 15px;
    }
}

@media screen and (max-width: 480px) {
    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content .description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .slider-nav {
        display: none;
    }

    .slider-dots {
        bottom: 25px;
    }
}

/* ========================================
   PAGE CONTENT SPACING
   ======================================== */
.page-content {
    padding-top: 80px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    position: relative;
    padding: 120px 5%;
    background-color: var(--white);
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(87, 17, 27, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--gold));
    margin: 0 auto;
}

/* About Content Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* About Image */
.about-image-wrapper {
    position: relative;
}

.about-image-main {
    position: relative;
    z-index: 2;
}

.about-image-main img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    border-radius: 0;
    background: #f5f5f5;
}

.about-image-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 250px;
    height: 250px;
    z-index: 3;
}

.about-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f5f5f5;
    border: 8px solid var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    z-index: 0;
}

.experience-badge {
    position: absolute;
    top: 40px;
    right: -30px;
    background: var(--primary-red);
    color: var(--white);
    padding: 25px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 15px 40px rgba(87, 17, 27, 0.3);
}

.experience-badge .number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.experience-badge .text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
}

/* About Text Content */
.about-content {
    padding-left: 20px;
}

.about-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-tagline span {
    color: var(--primary-red);
}

.about-description {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-grey);
    margin-bottom: 2rem;
}

/* Features List */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.feature-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-grey);
    line-height: 1.5;
}

/* About Button */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--primary-red);
    color: var(--white);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: 2px solid var(--primary-red);
}

.about-btn:hover {
    background: transparent;
    color: var(--primary-red);
}

.about-btn i {
    transition: transform 0.3s ease;
}

.about-btn:hover i {
    transform: translateX(5px);
}

/* Stats Bar */
.about-stats {
    display: flex;
    gap: 50px;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   ABOUT SECTION RESPONSIVE
   ======================================== */
@media screen and (max-width: 1200px) {
    .about-grid {
        gap: 50px;
    }

    .about-image-accent {
        width: 200px;
        height: 200px;
        bottom: -30px;
        right: -20px;
    }

    .experience-badge {
        right: -10px;
    }
}

@media screen and (max-width: 992px) {
    .about {
        padding: 80px 5%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }

    .about-image-main img {
        height: 500px;
    }

    .about-content {
        padding-left: 0;
        text-align: center;
    }

    .about-features {
        justify-content: center;
    }

    .feature-item {
        text-align: left;
    }

    .about-stats {
        justify-content: center;
    }

    .stat-item {
        text-align: center;
    }

    .section-title {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 768px) {
    .about {
        padding: 60px 5%;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-tagline {
        font-size: 1.6rem;
    }

    .about-image-main img {
        height: 400px;
    }

    .about-image-accent {
        display: none;
    }

    .about-frame {
        display: none;
    }

    .experience-badge {
        top: 20px;
        right: 20px;
        padding: 20px;
    }

    .experience-badge .number {
        font-size: 2.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .about-tagline {
        font-size: 1.4rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .about-btn {
        padding: 15px 30px;
        font-size: 0.85rem;
    }
}

/* ========================================
   SERVICES SECTION - BENTO GRID
   ======================================== */
.services {
    padding: 120px 5%;
    background-color: var(--off-white);
}

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

/* Bento Grid Layout */
.services-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 150px;
    gap: 15px;
}

/* Grid Item Sizes */
.service-tile:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.service-tile:nth-child(2) {
    grid-column: span 1;
    grid-row: span 2;
}

.service-tile:nth-child(3) {
    grid-column: span 1;
    grid-row: span 1;
}

.service-tile:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
}

.service-tile:nth-child(5) {
    grid-column: span 1;
    grid-row: span 2;
}

.service-tile:nth-child(6) {
    grid-column: span 2;
    grid-row: span 2;
}

.service-tile:nth-child(7) {
    grid-column: span 1;
    grid-row: span 2;
}

.service-tile:nth-child(8) {
    grid-column: span 2;
    grid-row: span 2;
}

.service-tile:nth-child(9) {
    grid-column: span 2;
    grid-row: span 2;
}

/* Service Tile Base */
.service-tile {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-tile-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(1.05) saturate(1.1);
    transition: transform 0.6s ease;
}

.service-tile:hover .service-tile-bg {
    transform: scale(1.1);
}

/* Default Overlay */
.service-tile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 40%,
        rgba(0, 0, 0, 0.45) 100%
    );
    transition: all 0.4s ease;
}

.service-tile:hover .service-tile-overlay {
    background: linear-gradient(
        180deg,
        rgba(87, 17, 27, 0.85) 0%,
        rgba(87, 17, 27, 0.9) 100%
    );
}

/* Content Container */
.service-tile-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    z-index: 2;
    transition: all 0.4s ease;
}

.service-tile:hover .service-tile-content {
    bottom: 50%;
    transform: translateY(50%);
}

/* Service Icon */
.service-tile-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.service-tile:hover .service-tile-icon {
    opacity: 1;
    transform: translateY(0);
}

.service-tile-icon i {
    color: var(--white);
    font-size: 1.3rem;
}

/* Service Title */
.service-tile-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.service-tile:nth-child(1) .service-tile-title {
    font-size: 2rem;
}

/* Service Description */
.service-tile-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.15s;
}

.service-tile:hover .service-tile-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Service Link */
.service-tile-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

.service-tile:hover .service-tile-link {
    opacity: 1;
    transform: translateY(0);
}

.service-tile-link i {
    transition: transform 0.3s ease;
}

.service-tile-link:hover i {
    transform: translateX(5px);
}

/* Small tiles adjustments */
.service-tile:nth-child(3) .service-tile-content,
.service-tile:nth-child(4) .service-tile-content {
    padding: 15px;
}

.service-tile:nth-child(3) .service-tile-title,
.service-tile:nth-child(4) .service-tile-title {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.service-tile:nth-child(3) .service-tile-icon,
.service-tile:nth-child(4) .service-tile-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.service-tile:nth-child(3) .service-tile-desc,
.service-tile:nth-child(4) .service-tile-desc {
    font-size: 0.8rem;
    display: none;
}

/* ========================================
   SERVICES SECTION RESPONSIVE
   ======================================== */
@media screen and (max-width: 1024px) {
    .services-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .service-tile:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 300px;
    }

    .service-tile:nth-child(2),
    .service-tile:nth-child(5),
    .service-tile:nth-child(7) {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 250px;
    }

    .service-tile:nth-child(3),
    .service-tile:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 200px;
    }

    .service-tile:nth-child(6) {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 300px;
    }

    .service-tile:nth-child(8),
    .service-tile:nth-child(9) {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 250px;
    }

    .service-tile:nth-child(3) .service-tile-desc,
    .service-tile:nth-child(4) .service-tile-desc {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .services {
        padding: 80px 5%;
    }

    .services-bento {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
        gap: 10px;
    }

    /* All tiles: same fixed height, single column span */
    .service-tile,
    .service-tile:nth-child(1),
    .service-tile:nth-child(2),
    .service-tile:nth-child(3),
    .service-tile:nth-child(4),
    .service-tile:nth-child(5),
    .service-tile:nth-child(6),
    .service-tile:nth-child(7),
    .service-tile:nth-child(8),
    .service-tile:nth-child(9) {
        grid-column: span 1;
        grid-row: span 1;
        height: 150px;
        min-height: unset;
    }

    /* Always-on overlay */
    .service-tile .service-tile-overlay {
        background: linear-gradient(
            180deg,
            rgba(87, 17, 27, 0.5) 0%,
            rgba(87, 17, 27, 0.82) 100%
        );
    }

    /* Center all content vertically */
    .service-tile .service-tile-content,
    .service-tile:hover .service-tile-content {
        position: absolute;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        padding: 12px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    /* Always show icon */
    .service-tile .service-tile-icon,
    .service-tile:hover .service-tile-icon {
        opacity: 1;
        transform: translateY(0);
        width: 36px;
        height: 36px;
        margin-bottom: 8px;
    }

    .service-tile .service-tile-icon i {
        font-size: 1rem;
    }

    .service-tile-title {
        font-size: 0.9rem !important;
        margin-bottom: 0 !important;
        line-height: 1.3;
    }

    /* Hide description and link — too long for small fixed-height tiles */
    .service-tile .service-tile-desc,
    .service-tile .service-tile-link {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .services-bento {
        grid-auto-rows: 120px;
        gap: 8px;
    }

    .service-tile,
    .service-tile:nth-child(1),
    .service-tile:nth-child(2),
    .service-tile:nth-child(3),
    .service-tile:nth-child(4),
    .service-tile:nth-child(5),
    .service-tile:nth-child(6),
    .service-tile:nth-child(7),
    .service-tile:nth-child(8),
    .service-tile:nth-child(9) {
        height: 120px;
    }

    .service-tile-title {
        font-size: 0.8rem !important;
    }

    .service-tile .service-tile-icon,
    .service-tile:hover .service-tile-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 6px;
    }

    .service-tile .service-tile-icon i {
        font-size: 0.85rem;
    }
}

/* ========================================
   TRAINING PROGRAMS / ACADEMY SECTION
   ======================================== */
.academy {
    position: relative;
    padding: 120px 5%;
    background: linear-gradient(135deg, #f9f6f2 0%, #f2ece4 100%);
    overflow: hidden;
}

.academy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(87, 17, 27, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.academy-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Academy Header */
.academy .section-header {
    margin-bottom: 60px;
}

.academy .section-title {
    color: var(--dark-grey);
}

.academy .section-subtitle {
    color: var(--primary-red);
}

.academy-intro {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    margin-top: -40px;
    margin-bottom: 60px;
}

.academy-intro p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.programs-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    gap: 40px;
}

/* Program Card */
.program-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 55px 45px 45px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card:hover {
    background: #fff;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Program Icon */
.program-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.program-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    top: 8px;
    left: 8px;
    transition: all 0.3s ease;
}

.program-card:hover .program-icon::after {
    top: 0;
    left: 0;
}

.program-icon i {
    font-size: 2rem;
    color: var(--white);
}

/* Program Content */
.program-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 18px;
}

.program-duration {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.program-desc {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Program Features */
.program-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    flex: 1;
}

.program-features li {
    color: #444;
    font-size: 0.95rem;
    padding: 11px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    gap: 12px;
}

.program-features li:last-child {
    border-bottom: none;
}

.program-features li i {
    color: var(--gold);
    font-size: 0.8rem;
}

/* Program Price - hidden */
.program-price {
    display: none;
}

/* Program Button */
.program-btn {
    display: inline-block;
    width: 100%;
    padding: 14px 25px;
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.program-btn:hover {
    background: var(--primary-red);
    color: #fff;
}

/* Featured Program */
.program-card.featured {
    background: linear-gradient(135deg, #fff8f9 0%, #fff2f4 100%);
    border-color: var(--primary-red);
    border-width: 2px;
}

.program-card.featured::before {
    transform: scaleX(1);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-red);
    color: #fff;
    padding: 8px 40px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: rotate(45deg);
}

/* Academy CTA */
.academy-cta {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.academy-cta p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.academy-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: var(--gold);
    color: var(--dark-grey);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
}

.academy-cta-btn:hover {
    background: #c8912a;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.academy-cta-btn i {
    transition: transform 0.3s ease;
}

.academy-cta-btn:hover i {
    transform: translateX(5px);
}

/* Placement guarantee badge */
.placement-badge-wrap {
    text-align: center;
}

.placement-guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), #b8960f);
    color: var(--dark-grey);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.placement-guarantee-badge i {
    color: var(--dark-grey);
}

/* Program category title */
.programs-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary-red);
    text-align: center;
    margin: 40px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.programs-category-title:first-of-type {
    margin-top: 20px;
}

/* Program duration */
.program-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Program placement label */
.program-placement {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 8px 14px;
    border-radius: 6px;
    margin: 12px 0;
}

/* ========================================
   ACADEMY SECTION RESPONSIVE
   ======================================== */
@media screen and (max-width: 1200px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .program-card.featured {
        order: -1;
    }

    .programs-grid-2 {
        gap: 25px;
    }
}

@media screen and (max-width: 768px) {
    .academy {
        padding: 80px 5%;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .programs-grid-2 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .program-card {
        padding: 40px 30px 35px;
    }

    .program-icon {
        width: 70px;
        height: 70px;
    }

    .program-icon i {
        font-size: 1.6rem;
    }

    .program-title {
        font-size: 1.2rem;
    }

    .featured-badge {
        top: 15px;
        right: -40px;
        padding: 6px 45px;
        font-size: 0.65rem;
    }

    .academy-intro p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .program-card {
        padding: 25px 20px;
    }

    .program-features li {
        font-size: 0.85rem;
    }

    .academy-cta-btn {
        padding: 15px 35px;
        font-size: 0.85rem;
    }
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    position: relative;
    padding: 120px 5%;
    background-color: var(--white);
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    z-index: 0;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}

/* Contact Info Side */
.contact-info {
    padding: 60px;
    padding-right: 80px;
}

.contact-info .section-subtitle {
    text-align: left;
    margin-bottom: 0.5rem;
}

.contact-info .section-title {
    text-align: left;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-info .section-divider {
    margin: 0;
    margin-bottom: 2rem;
}

.contact-intro {
    color: var(--text-grey);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* Contact Details */
.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.contact-item-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-item-text p {
    font-size: 1.05rem;
    color: var(--dark-grey);
    line-height: 1.6;
}

.contact-item-text a {
    color: var(--dark-grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-text a:hover {
    color: var(--primary-red);
}

/* Social Links */
.contact-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link i {
    color: var(--dark-grey);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    background: var(--primary-red);
    transform: translateY(-5px);
}

.social-link:hover i {
    color: var(--white);
}

/* Contact Form Side */
.contact-form-wrapper {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    padding: 60px;
    position: relative;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.form-header {
    margin-bottom: 40px;
}

.form-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4AF37' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-group select option {
    background: var(--dark-grey);
    color: var(--white);
}

/* Submit Button */
.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 45px;
    background: var(--gold);
    color: var(--dark-grey);
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 10px;
}

.form-submit:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.form-submit i {
    transition: transform 0.3s ease;
}

.form-submit:hover i {
    transform: translateX(5px);
}

/* Map Section */
.contact-map {
    width: 100%;
    height: 400px;
    background: var(--off-white);
    margin-top: -1px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.3s ease;
}

.contact-map:hover iframe {
    filter: grayscale(0%) contrast(1);
}

/* ========================================
   CONTACT SECTION RESPONSIVE
   ======================================== */
@media screen and (max-width: 1200px) {
    .contact-info {
        padding: 50px;
        padding-right: 60px;
    }

    .contact-form-wrapper {
        padding: 50px;
    }

    .contact-form-wrapper::before {
        top: 30px;
        left: 30px;
        right: 30px;
        bottom: 30px;
    }
}

@media screen and (max-width: 992px) {
    .contact::before {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 60px 40px;
        text-align: center;
    }

    .contact-info .section-subtitle,
    .contact-info .section-title {
        text-align: center;
    }

    .contact-info .section-divider {
        margin: 0 auto 2rem;
    }

    .contact-item {
        justify-content: center;
        text-align: left;
    }

    .contact-social {
        justify-content: center;
    }

    .contact-form-wrapper {
        padding: 60px 40px;
    }

    .contact-form-wrapper::before {
        top: 25px;
        left: 25px;
        right: 25px;
        bottom: 25px;
    }
}

@media screen and (max-width: 768px) {
    .contact {
        padding: 80px 5%;
    }

    .contact-info {
        padding: 40px 20px;
    }

    .contact-info .section-title {
        font-size: 2.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 40px 25px;
    }

    .contact-form-wrapper::before {
        display: none;
    }

    .form-header h3 {
        font-size: 1.6rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-map {
        height: 300px;
    }
}

@media screen and (max-width: 480px) {
    .contact-item-icon {
        width: 50px;
        height: 50px;
    }

    .form-submit {
        width: 100%;
        padding: 16px 30px;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }
}

/* ========================================
   FOOTER SECTION
   ======================================== */
.footer {
    background: linear-gradient(180deg, var(--dark-grey) 0%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 90%, rgba(87, 17, 27, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* Footer Top - Newsletter */
.footer-top {
    padding: 80px 5% 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

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

.footer-newsletter h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

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

.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-right: none;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

.newsletter-form button {
    padding: 18px 35px;
    background: var(--primary-red);
    border: 1px solid var(--primary-red);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark-grey);
}

/* Footer Main Content */
.footer-main {
    padding: 80px 5%;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

/* Footer Brand Column */
.footer-brand {
    padding-right: 40px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--gold);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a i {
    color: var(--white);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

/* Footer Links Columns */
.footer-links h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-red);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-links ul li a:hover::before {
    width: 15px;
}

/* Footer Contact Column */
.footer-contact h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-red);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: var(--primary-red);
    font-size: 1rem;
    margin-top: 4px;
}

.footer-contact-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--gold);
}

/* Footer Hours */
.footer-hours {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-hours p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.footer-hours p span {
    color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-copyright a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: var(--white);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ========================================
   INSTAGRAM FEED SECTION
   ======================================== */
.instagram-section {
    background: var(--dark-grey);
    padding: 0;
}

.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.instagram-title {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.instagram-title i {
    font-size: 2rem;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instagram-handle {
    color: var(--gold);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.instagram-handle:hover {
    color: var(--white);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(87, 17, 27, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-overlay i {
    color: var(--white);
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-item:hover .instagram-overlay i {
    transform: scale(1);
}

.ig-likes {
    position: absolute;
    bottom: 12px;
    left: 12px;
    color: #fff;
    font-size: 0.85rem;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.instagram-item:hover .ig-likes {
    opacity: 1;
}

/* Visit CTA tile (fallback) */
.ig-visit-cta {
    grid-column: 1 / -1;
    aspect-ratio: unset;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}
.ig-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-align: center;
}
.ig-cta-content .fab { font-size: 3rem; }
.ig-cta-content span { font-size: 1.5rem; font-weight: 700; font-family: 'Montserrat', sans-serif; }
.ig-cta-content small { font-size: 1rem; opacity: 0.85; font-family: 'Montserrat', sans-serif; }

/* Instagram Responsive */
@media screen and (max-width: 1024px) {
    .instagram-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .instagram-header {
        flex-direction: column;
        gap: 15px;
        padding: 30px 5%;
        text-align: center;
    }

    .instagram-title {
        font-size: 1rem;
    }

    .instagram-title i {
        font-size: 1.6rem;
    }

    .instagram-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .instagram-overlay i {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instagram-title {
        font-size: 0.9rem;
    }
}

/* Instagram Loading State */
.instagram-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--white);
    gap: 20px;
}

.instagram-loading span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    opacity: 0.8;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Instagram Widget Container */
.instagram-widget-container {
    min-height: 200px;
    width: 100%;
}

/* SnapWidget iframe styling */
.instagram-widget-container iframe {
    width: 100% !important;
    border: none !important;
    overflow: hidden;
    display: block;
}

/* Instagram embed wrapper (Behold / third-party) */
.instagram-embed-wrapper {
    width: 100%;
    padding: 20px 0 10px;
}

/* Official Instagram embed section */
.instagram-container {
    max-width: 620px;
    margin: 0 auto;
    padding: 50px 20px;
    text-align: center;
}
.instagram-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 12px;
}
.instagram-section-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 30px;
}
.instagram-embed-box {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    margin-bottom: 24px;
}
.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white;
    padding: 13px 32px;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.instagram-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 39, 67, 0.5);
}
.instagram-follow-btn .fab { font-size: 1.2rem; }

/* Fallback CTA shown before Behold is configured */
.instagram-cta-block {
    display: block;
    text-decoration: none;
    padding: 20px 40px 40px;
}
.instagram-cta-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border-radius: 16px;
    padding: 30px 40px;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.instagram-cta-block:hover .instagram-cta-inner {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(220,39,67,0.4);
}
.instagram-cta-inner > .fab.fa-instagram {
    font-size: 3rem;
    flex-shrink: 0;
}
.instagram-cta-inner div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.instagram-cta-inner strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
}
.instagram-cta-inner span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    opacity: 0.9;
}
.instagram-cta-arrow {
    font-size: 1.5rem;
    flex-shrink: 0;
}
@media screen and (max-width: 600px) {
    .instagram-cta-inner {
        padding: 20px;
        gap: 14px;
    }
    .instagram-cta-inner strong { font-size: 1.1rem; }
}

/* Instagram Placeholder */
.instagram-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(87, 17, 27, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.placeholder-content {
    text-align: center;
    max-width: 600px;
    color: var(--white);
}

.placeholder-content > i {
    font-size: 4rem;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 20px;
}

.placeholder-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--white);
}

.placeholder-content > p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* Widget Options */
.widget-options {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.widget-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.widget-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.widget-name {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.widget-tag {
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.setup-note {
    font-size: 0.9rem !important;
    opacity: 0.7 !important;
    margin-bottom: 25px !important;
}

.setup-note strong {
    color: var(--gold);
}

.instagram-visit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.instagram-visit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 39, 67, 0.4);
}

.instagram-visit-btn i {
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .instagram-loading,
    .instagram-placeholder {
        padding: 40px 20px;
    }

    .placeholder-content h3 {
        font-size: 1.5rem;
    }

    .placeholder-content > i {
        font-size: 3rem;
    }

    .widget-options {
        flex-direction: column;
        align-items: center;
    }

    .widget-option {
        width: 100%;
        max-width: 250px;
    }
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    transition: transform 0.3s ease;
    color: var(--white);
}

.whatsapp-float:hover i {
    transform: rotate(15deg);
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: var(--dark-grey);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: var(--dark-grey);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

/* WhatsApp Pulse Animation */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* WhatsApp Responsive */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        bottom: 25px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .whatsapp-float {
        bottom: 20px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}

/* ========================================
   FOOTER RESPONSIVE
   ======================================== */
@media screen and (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 40px;
    }

    .footer-brand {
        padding-right: 20px;
    }
}

@media screen and (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 40px;
    }

    .footer-brand {
        padding-right: 0;
    }

    .footer-newsletter h3 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-top {
        padding: 60px 5% 50px;
    }

    .footer-main {
        padding: 60px 5%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact-item {
        justify-content: center;
        text-align: left;
    }

    .footer-hours p {
        justify-content: center;
        gap: 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
        border-bottom: none;
    }

    .newsletter-form input:focus {
        border-color: var(--gold);
    }

    .footer-newsletter h3 {
        font-size: 1.8rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal {
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    .footer-newsletter h3 {
        font-size: 1.5rem;
    }

    .footer-logo {
        font-size: 1.6rem;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ========================================
   SERVICE MODAL / POPUP
   ======================================== */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    background: var(--white);
    z-index: 1;
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    transition: all 0.4s ease;
}

.service-modal.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark-grey);
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.modal-close:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 90vh;
}

/* Modal Image Section */
.modal-image {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-price {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--primary-red);
    color: var(--white);
    padding: 12px 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

/* Modal Info Section */
.modal-info {
    padding: 50px 40px;
    overflow-y: auto;
    max-height: 90vh;
}

.modal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.modal-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 15px;
    line-height: 1.2;
}

.modal-description {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
}

.modal-details {
    font-size: 1rem;
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: 30px;
}

.modal-features {
    margin-bottom: 30px;
    padding: 25px;
    background: var(--off-white);
}

.modal-features h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.modal-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.modal-features ul li {
    font-size: 0.95rem;
    color: var(--text-grey);
    padding-left: 25px;
    position: relative;
}

.modal-features ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-size: 0.8rem;
}

.modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--primary-red);
    color: var(--white);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: 2px solid var(--primary-red);
}

.modal-btn:hover {
    background: transparent;
    color: var(--primary-red);
}

.modal-btn i {
    transition: transform 0.3s ease;
}

.modal-btn:hover i {
    transform: translateX(5px);
}

/* ========================================
   SERVICE MODAL RESPONSIVE
   ======================================== */
@media screen and (max-width: 992px) {
    .modal-content {
        grid-template-columns: 1fr;
    }

    .modal-image {
        min-height: 300px;
        max-height: 300px;
    }

    .modal-info {
        padding: 40px 30px;
        max-height: calc(90vh - 300px);
    }

    .modal-title {
        font-size: 2rem;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 95vh;
    }

    .modal-image {
        min-height: 250px;
        max-height: 250px;
    }

    .modal-info {
        padding: 30px 25px;
        max-height: calc(95vh - 250px);
    }

    .modal-icon {
        width: 60px;
        height: 60px;
    }

    .modal-icon i {
        font-size: 1.5rem;
    }

    .modal-title {
        font-size: 1.6rem;
    }

    .modal-description {
        font-size: 1rem;
    }

    .modal-features ul {
        grid-template-columns: 1fr;
    }

    .modal-price {
        bottom: 20px;
        left: 20px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .modal-info {
        padding: 25px 20px;
    }

    .modal-title {
        font-size: 1.4rem;
    }

    .modal-features {
        padding: 20px;
    }

    .modal-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 30px;
    }
}

/* ========================================
   COMPACT COURSE TABS (Academy Section)
   ======================================== */

/* Category tabs */
.course-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.course-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: #fff;
    border: 2px solid rgba(87, 17, 27, 0.2);
    color: #555;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.course-tab:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.course-tab.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: #fff;
}

/* Course panels */
.course-panel {
    display: none;
}

.course-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Compact grid */
.compact-courses-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

/* Compact card */
.compact-course-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-top: 3px solid rgba(87,17,27,0.2);
    padding: 20px 22px;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    flex: 0 1 calc(33.333% - 15px);
    min-width: 260px;
    text-align: center;
}

.compact-course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.1);
    border-top-color: var(--primary-red);
}

.compact-course-card.featured {
    border-top: 3px solid var(--primary-red);
    background: linear-gradient(135deg, #fff8f9 0%, #fff 100%);
}

/* Badge */
.compact-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
}

/* Card header */
.compact-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.compact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compact-icon i {
    color: #fff;
    font-size: 1.1rem;
}

.compact-title-wrap {
    width: 100%;
}

.compact-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 4px;
    line-height: 1.3;
}

.compact-duration {
    font-size: 0.72rem;
    color: #c8912a;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: block;
}

.compact-duration i {
    margin-right: 3px;
}

/* Features */
.compact-features {
    list-style: none;
    margin-bottom: 14px;
    flex: 1;
    text-align: left;
}

.compact-features li {
    font-size: 0.8rem;
    color: #555;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.compact-features li:last-child {
    border-bottom: none;
}

.compact-features li i {
    color: var(--primary-red);
    font-size: 0.65rem;
    margin-top: 3px;
    min-width: 10px;
}

/* Placement */
.compact-placement {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Enroll button */
.compact-enroll-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 16px;
    background: transparent;
    border: 1.5px solid var(--primary-red);
    color: var(--primary-red);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.compact-enroll-btn:hover {
    background: var(--primary-red);
    color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .compact-course-card {
        flex: 0 1 calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .compact-course-card {
        flex: 0 1 100%;
    }
    .course-tab {
        padding: 8px 14px;
        font-size: 0.78rem;
    }
}

/* ========================================
   RATE CARD PAGE
   ======================================== */

/* Page hero (reusable) */
.page-hero {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 60%, #8c3040 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-overlay {
    display: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.page-hero-content .section-subtitle {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.page-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-hero-content p {
    font-size: 1rem;
    opacity: 0.85;
}

/* Rate card section */
.rate-card-section {
    padding: 70px 5%;
    background: var(--off-white);
}

.rate-card-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Tabs */
.rc-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 50px;
}

.rc-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: #fff;
    border: 2px solid rgba(87,17,27,0.18);
    color: #555;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.rc-tab:hover,
.rc-tab.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: #fff;
}

/* Panels */
.rc-panel {
    display: none;
}

.rc-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Category group */
.rc-category-group {
    margin-bottom: 45px;
}

.rc-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(87,17,27,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
}

.rc-category-title i {
    font-size: 1rem;
    opacity: 0.8;
}

/* Items grid */
.rc-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.rc-item {
    background: #fff;
    padding: 12px 18px;
    font-size: 0.9rem;
    color: var(--text-grey);
    border-left: 3px solid var(--primary-red);
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.rc-item:hover {
    background: var(--primary-red);
    color: #fff;
    transform: translateX(4px);
}

/* CTA */
.rc-cta {
    text-align: center;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 30px;
}

.rc-cta p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.rc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #25d366;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 6px 8px;
}

.rc-cta-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.3);
}

.rc-cta-btn.rc-cta-secondary {
    background: var(--primary-red);
}

.rc-cta-btn.rc-cta-secondary:hover {
    background: var(--dark-red);
    box-shadow: 0 8px 20px rgba(87,17,27,0.3);
}

/* ========================================
   FRANCHISE SECTION
   ======================================== */
.franchise-section {
    background: #0e0608;
    padding: 110px 24px;
    position: relative;
    overflow: hidden;
}

/* Glowing orbs */
.franchise-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}
.franchise-bg-orb.orb1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(87,17,27,0.55) 0%, transparent 70%);
    top: -120px;
    left: -100px;
}
.franchise-bg-orb.orb2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
}

/* Dot grid overlay */
.franchise-dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

.franchise-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* --- Header --- */
.franchise-header {
    text-align: center;
    margin-bottom: 56px;
}

.franchise-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.franchise-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
}

.franchise-title span {
    color: var(--gold);
    position: relative;
}

.franchise-subtitle {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
}

/* --- Stats Bar --- */
.franchise-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 16px;
    padding: 28px 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    row-gap: 20px;
}

.fstat {
    text-align: center;
    padding: 0 36px;
    flex: 1;
    min-width: 120px;
}

.fstat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.fstat span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.fstat-sep {
    width: 1px;
    height: 44px;
    background: rgba(212,175,55,0.2);
    flex-shrink: 0;
}

/* --- Cards --- */
.franchise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

.franchise-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 36px 28px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    backdrop-filter: blur(6px);
}

.franchise-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(212,175,55,0.25), transparent 60%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.franchise-card:hover::before { opacity: 1; }

.franchise-card:hover {
    background: rgba(87,17,27,0.25);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,175,55,0.2);
}

.fc-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(212,175,55,0.08);
    line-height: 1;
    position: absolute;
    top: 14px;
    right: 20px;
    transition: color 0.35s ease;
}

.franchise-card:hover .fc-num {
    color: rgba(212,175,55,0.18);
}

.fc-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(87,17,27,0.45);
    transition: transform 0.3s ease;
}

.franchise-card:hover .fc-icon {
    transform: scale(1.08);
}

.franchise-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.12rem;
    margin-bottom: 10px;
}

.franchise-card p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    line-height: 1.75;
}

.fc-line {
    height: 2px;
    width: 32px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-top: 20px;
    transition: width 0.35s ease;
}

.franchise-card:hover .fc-line {
    width: 64px;
}

/* --- CTA Banner --- */
.franchise-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: linear-gradient(135deg, rgba(87,17,27,0.5) 0%, rgba(61,12,19,0.6) 100%);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 20px;
    padding: 44px 52px;
    position: relative;
    overflow: hidden;
}

.franchise-cta-banner::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.franchise-cta-left h3 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.65rem;
    margin-bottom: 8px;
}

.franchise-cta-left p {
    color: rgba(255,255,255,0.5);
    font-size: 0.92rem;
    line-height: 1.6;
}

.franchise-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

.franchise-whatsapp-btn i {
    font-size: 1.3rem;
}

.franchise-whatsapp-btn:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(37,211,102,0.45);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .franchise-stats-bar { padding: 24px 20px; }
    .fstat { padding: 0 24px; }
}

@media (max-width: 900px) {
    .franchise-grid { grid-template-columns: repeat(2, 1fr); }
    .franchise-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
    }
}

@media (max-width: 600px) {
    .franchise-section { padding: 72px 16px; }
    .franchise-grid { grid-template-columns: 1fr; gap: 14px; }
    .fstat-sep { display: none; }
    .fstat { padding: 8px 16px; }
    .franchise-stats-bar { gap: 10px; }
    .franchise-cta-banner { padding: 28px 20px; }
    .franchise-cta-left h3 { font-size: 1.3rem; }
}

/* Responsive */
@media (max-width: 900px) {
    .rc-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .page-hero {
        height: 220px;
    }
    .page-hero-content h1 {
        font-size: 2rem;
    }
    .rc-items-grid {
        grid-template-columns: 1fr;
    }
    .rc-tab {
        padding: 10px 16px;
        font-size: 0.78rem;
    }
    .rc-category-title {
        font-size: 1.1rem;
    }
}

/* ========================================
   LIGHT THEME — Instagram · Franchise · Footer
   ======================================== */

/* --- Instagram Section --- */
.instagram-section {
    background: #fff;
}
.instagram-section-title {
    color: var(--dark-grey);
}
.instagram-section-sub {
    color: rgba(0,0,0,0.5);
}
.instagram-embed-box {
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

/* --- Franchise Section --- */
.franchise-section {
    background: #f8f4f0;
}
.franchise-bg-orb.orb1 {
    background: radial-gradient(circle, rgba(87,17,27,0.07) 0%, transparent 70%);
}
.franchise-bg-orb.orb2 {
    background: radial-gradient(circle, rgba(212,175,55,0.09) 0%, transparent 70%);
}
.franchise-dot-grid {
    background-image: radial-gradient(rgba(0,0,0,0.055) 1px, transparent 1px);
}
.franchise-eyebrow {
    background: rgba(87,17,27,0.07);
    border-color: rgba(87,17,27,0.18);
    color: var(--primary-red);
}
.franchise-title {
    color: var(--dark-grey);
}
.franchise-subtitle {
    color: rgba(0,0,0,0.5);
}
.franchise-stats-bar {
    background: #fff;
    border-color: rgba(0,0,0,0.07);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.fstat span {
    color: rgba(0,0,0,0.4);
}
.fstat-sep {
    background: rgba(0,0,0,0.09);
}
.franchise-card {
    background: #fff;
    border-color: rgba(0,0,0,0.055);
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    backdrop-filter: none;
}
.franchise-card:hover {
    background: #fff;
    box-shadow: 0 24px 50px rgba(87,17,27,0.1), 0 0 0 1px rgba(87,17,27,0.08);
}
.franchise-card::before {
    background: linear-gradient(135deg, rgba(87,17,27,0.15), transparent 60%) border-box;
}
.fc-num {
    color: rgba(87,17,27,0.06);
}
.franchise-card:hover .fc-num {
    color: rgba(87,17,27,0.1);
}
.fc-icon {
    box-shadow: 0 8px 24px rgba(87,17,27,0.2);
}
.franchise-card h3 {
    color: var(--dark-grey);
}
.franchise-card p {
    color: rgba(0,0,0,0.48);
}
.fc-line {
    background: linear-gradient(90deg, var(--primary-red), transparent);
}
.franchise-cta-banner {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(87,17,27,0.2);
}
.franchise-cta-banner::before {
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}
.franchise-cta-left h3 {
    color: #fff;
}
.franchise-cta-left p {
    color: rgba(255,255,255,0.65);
}

/* --- Footer --- */
.footer {
    background: #fff;
}
.footer::before {
    background:
        radial-gradient(circle at 10% 90%, rgba(87,17,27,0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(212,175,55,0.02) 0%, transparent 40%);
}
.footer-top {
    border-bottom-color: rgba(0,0,0,0.07);
    background: #faf7f5;
}
.footer-newsletter h3 {
    color: var(--dark-grey);
}
.footer-newsletter p {
    color: rgba(0,0,0,0.52);
}
.newsletter-form input {
    background: #fff;
    border-color: rgba(0,0,0,0.12);
    color: var(--dark-grey);
    border-right: none;
}
.newsletter-form input::placeholder {
    color: rgba(0,0,0,0.3);
}
.newsletter-form input:focus {
    background: #fff;
    border-color: var(--primary-red);
}
.footer-logo {
    color: var(--dark-grey);
}
.footer-brand p {
    color: rgba(0,0,0,0.52);
}
.footer-social a {
    background: #f3f3f3;
    border-color: rgba(0,0,0,0.07);
}
.footer-social a i {
    color: var(--dark-grey);
}
.footer-social a:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
}
.footer-social a:hover i {
    color: #fff;
}
.footer-links ul li a {
    color: rgba(0,0,0,0.55);
}
.footer-links ul li a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}
.footer-links ul li a::before {
    background: var(--primary-red);
}
.footer-contact-item p,
.footer-contact-item a {
    color: rgba(0,0,0,0.55);
}
.footer-contact-item a:hover {
    color: var(--primary-red);
}
.footer-hours {
    border-top-color: rgba(0,0,0,0.07);
}
.footer-hours p {
    color: rgba(0,0,0,0.55);
}
.footer-hours p span {
    color: var(--dark-grey);
    font-weight: 600;
}
.footer-bottom {
    border-top-color: rgba(0,0,0,0.07);
    background: #f5f5f5;
}
.footer-copyright {
    color: rgba(0,0,0,0.45);
}
.footer-copyright a {
    color: var(--primary-red);
}
.footer-copyright a:hover {
    color: var(--dark-red);
}
.footer-legal a {
    color: rgba(0,0,0,0.45);
}
.footer-legal a:hover {
    color: var(--primary-red);
}
