/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --bg-primary: #0b0c10; /* Deep Charcoal / Temple Black */
    --bg-surface: #161214; /* Rich Dark Onyx / Deep Wine */
    --bg-surface-hover: #221c20;
    --accent-primary: #d4af37; /* Rich Antique Gold / Brass */
    --accent-secondary: #8b1e2f; /* Royal Terracotta / Maroon */
    --accent-gradient: linear-gradient(135deg, #8b1e2f 0%, #d4af37 100%);
    --accent-rose: #8b1e2f; /* Aliased to Royal Terracotta */
    --accent-violet: #d4af37; /* Aliased to Rich Antique Gold */
    --accent-glow: rgba(212, 175, 55, 0.35);
    --text-primary: #f5f3ef; /* Soft Ivory */
    --text-muted: #b3ada7; /* Warm Muted Slate */
    --text-dark: #0b0c10;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --glass-bg: rgba(22, 18, 20, 0.85);
    --glass-border: rgba(212, 175, 55, 0.15);
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--accent-rose), var(--accent-violet));
    border-radius: 5px;
}

/* Typography Utility */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
    position: relative;
}

/* Navigation Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.8rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-primary);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition-smooth);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* CTA Button Menu */
.cta-nav {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-rose);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    box-shadow: 0 0 0 transparent;
}

.cta-nav:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-2px);
}

/* Hamburger Menu */
.menu-btn {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Mobile Nav Open States */
.menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.menu-btn.open span:nth-child(2) {
    opacity: 0;
}
.menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: brightness(0.4) contrast(1.1);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(10, 10, 12, 0.4) 0%, 
        rgba(10, 10, 12, 0.8) 70%, 
        var(--bg-primary) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1.2s forwards cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-rose);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-tags span {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

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

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    cursor: pointer;
    font-size: 1rem;
    border: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-primary);
    box-shadow: 0 5px 15px rgba(255, 42, 95, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 42, 95, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

/* About & Resume Section */
.about {
    background-color: var(--bg-surface);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--accent-gradient);
    z-index: -1;
    filter: blur(15px);
    opacity: 0.5;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: grayscale(15%) contrast(1.05);
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
    filter: grayscale(0%) contrast(1.1);
}

.about-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.about-text p {
    margin-bottom: 1.2rem;
}

.dance-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.meta-item h4 {
    color: var(--accent-rose);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meta-item p {
    color: var(--text-primary);
    font-weight: 500;
}

/* Timeline Layout */
.about-timeline {
    margin-top: 3rem;
}

.about-timeline-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-rose);
    padding-left: 1rem;
}

.timeline {
    position: relative;
    border-left: 2px solid rgba(255,255,255,0.1);
    padding-left: 2rem;
    margin-bottom: 3rem;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.7rem;
    top: 0.3rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--accent-gradient);
    box-shadow: 0 0 10px var(--accent-glow);
}

.timeline-date {
    font-weight: 700;
    color: var(--accent-rose);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.timeline-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Gallery Section */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-gradient);
    color: var(--text-primary);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(255, 42, 95, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    grid-auto-flow: dense; /* Fill in gaps automatically */
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background-color: var(--bg-surface);
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
}

.gallery-item.hide {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Focus on dancer's posture/head in portraits */
    transition: var(--transition-smooth);
}

.gallery-item.landscape-item img {
    object-position: center center; /* Keep full group/document content centered */
}

.gallery-item.landscape-item {
    aspect-ratio: 4/3; /* Custom landscape aspect ratio to avoid side cuts */
}

/* Specific styling for Photo #8 (Guru & Disciples group photo) */
.gallery-item.guru-photo {
    aspect-ratio: 4/3; /* Default / Mobile Aspect Ratio */
}

.gallery-item.guru-photo img {
    object-position: center 20%; /* Keep everyone's faces fully in frame */
}

@media (min-width: 768px) {
    .gallery-item.guru-photo {
        grid-column: span 2; /* Span two columns on desktop/tablet */
        aspect-ratio: 16/9; /* Wide aspect ratio on wider screens */
    }
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact & Bookings Section */
.contact {
    background-color: var(--bg-surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}

.contact-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.contact-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-rose);
}

.contact-detail-content h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.contact-detail-content p {
    font-size: 1.1rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    color: var(--text-primary);
}

.social-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.social-btn:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 42, 95, 0.4);
}

/* Contact Form styling */
.contact-form-container {
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 1.1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-rose);
    box-shadow: 0 0 10px rgba(255, 42, 95, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.form-label {
    position: absolute;
    left: 1.1rem;
    top: 1.1rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    pointer-events: none;
    transform-origin: left top;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    transform: translateY(-1.7rem) scale(0.85);
    color: var(--accent-rose);
}

textarea.form-input {
    resize: none;
    min-height: 120px;
}

/* Form Validation Styles */
.form-input.error {
    border-color: #ff3838;
}

.error-message {
    color: #ff3838;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
}

.form-input.error ~ .error-message {
    display: block;
}

/* Form Success Overlay */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-surface);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 10;
    padding: 2rem;
    text-align: center;
}

.form-success-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(79, 172, 254, 0.4);
}

.success-icon svg {
    width: 40px;
    height: 40px;
    fill: #ffffff;
}

.success-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-text {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 320px;
}

/* Footer Section */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0;
    text-align: center;
    background-color: var(--bg-primary);
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

/* Lightbox Modal CSS */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 8, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-caption {
    margin-top: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.lightbox-title {
    font-size: 1.2rem;
    font-weight: 700;
}

.lightbox-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    background: var(--accent-rose);
    transform: rotate(90deg);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.05);
    border: none;
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-arrow:hover {
    background: var(--accent-rose);
    box-shadow: 0 0 15px var(--accent-glow);
}

.lightbox-arrow-left {
    left: 30px;
}

.lightbox-arrow-right {
    right: 30px;
}

.lightbox-arrow svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Video Modal HTML / CSS */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 8, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: all;
}

.video-modal-container {
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-modal.active .video-modal-container {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.video-modal-close:hover {
    background: var(--accent-rose);
    transform: rotate(90deg);
}

.video-modal-close svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.video-wrapper {
    width: 100%;
    height: 100%;
    background: #000;
}

/* Custom interactive video component styled inside modal when no src */
.mock-video-player {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    position: relative;
    background-size: cover;
    background-position: center;
}

.mock-video-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.mock-video-header {
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.mock-video-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.mock-video-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    background: var(--accent-rose);
    font-size: 0.8rem;
    font-weight: 600;
}

.mock-video-center {
    z-index: 2;
    align-self: center;
}

.mock-video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--text-primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
}

.mock-video-play-btn:hover {
    transform: scale(1.1);
    background: var(--accent-rose);
    color: var(--text-primary);
}

.mock-video-play-btn svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
    margin-left: 4px;
}

.mock-video-controls {
    z-index: 2;
    background: rgba(20, 20, 24, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.mock-video-timeline-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.mock-video-timeline-progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 30%;
    height: 100%;
    background: var(--accent-rose);
    border-radius: 3px;
}

.mock-video-bar-items {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.mock-video-left-controls {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.mock-video-control-icon {
    cursor: pointer;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.mock-video-control-icon:hover {
    color: var(--accent-rose);
}

.mock-video-control-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 5rem 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-surface);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        border-left: 1px solid var(--glass-border);
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .hero-tags {
        gap: 0.5rem;
    }
    
    .hero-tags span {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   New Classical Rebranding Styles (Academic Research, Offerings & Lineage)
   ========================================================================== */

/* Academic & Research Section */
.research-specialization {
    margin-top: 5rem;
    padding: 3rem;
    background: rgba(139, 30, 47, 0.05); /* soft maroon tint */
    border: 1px solid rgba(212, 175, 55, 0.2); /* soft gold border */
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.research-specialization::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gradient);
}

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

.research-badge-container {
    text-align: center;
    border-right: 1px solid rgba(212, 175, 55, 0.15);
    padding-right: 3rem;
}

.research-degree {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.research-institution {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.research-details h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.research-dissertation {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--accent-primary);
    margin-bottom: 1.2rem;
    line-height: 1.4;
    font-weight: 600;
}

.research-summary {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Offerings Section */
.offerings {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

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

.offering-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(139, 30, 47, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.offering-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(139, 30, 47, 0.2);
}

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

.offering-icon {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.offering-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    color: var(--text-primary);
}

.offering-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Guru Lineage styling helper */
.lineage-badge {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    color: var(--accent-primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.8rem;
}

/* Specific timeline enhancement */
.timeline-desc strong {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .research-specialization {
        padding: 2rem 1.5rem;
    }
    .research-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .research-badge-container {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
        padding-right: 0;
        padding-bottom: 2rem;
    }
}

