/* Design System Variables */
:root {
    --primary-gold: #c5a880;
    --primary-gold-dark: #b3946a;
    --primary-gold-light: #dfcbb3;
    --dark-charcoal: #121212;
    --dark-surface: #1a1a1a;
    --dark-surface-muted: #242424;
    --text-white: #f5f5f5;
    --text-muted: #a5a5a5;
    --accent-cream: #ebe3d5;
    --glass-bg: rgba(26, 26, 26, 0.85);
    --glass-border: rgba(197, 168, 128, 0.15);
    
    --font-heading: 'Outfit', sans-serif;
    --font-elegant: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.5), 0 5px 15px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 0 25px rgba(197, 168, 128, 0.25);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--dark-charcoal);
    color: var(--text-white);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--dark-charcoal);
}

.btn-primary:hover {
    background-color: var(--primary-gold-dark);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.btn-secondary:hover {
    background-color: var(--primary-gold);
    color: var(--dark-charcoal);
    transform: translateY(-2px);
}

.btn-secondary-outline {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-secondary-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-text {
    color: var(--primary-gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.btn-text span {
    transition: var(--transition-fast);
}

.btn-text:hover span {
    transform: translateX(5px);
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.05em;
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    flex-shrink: 0;
}

.gold-text {
    color: var(--primary-gold);
}

.light-text {
    font-size: 0.75rem;
    color: var(--text-white);
    opacity: 0.8;
    margin-top: -3px;
    letter-spacing: 0.12em;
    font-weight: 400;
    white-space: nowrap;
}

.nav-menu ul {
    display: flex;
    gap: 1.2rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-white);
    opacity: 0.85;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
    opacity: 1;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-shrink: 0;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.phone-link:hover {
    color: var(--primary-gold-light);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 170px;
    padding-bottom: 90px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.97) 35%, rgba(197, 168, 128, 0.15) 75%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 4.5rem;
    align-items: center;
}

.hero-content {
    max-width: 750px;
}

.badge {
    display: inline-block;
    background-color: rgba(197, 168, 128, 0.15);
    color: var(--primary-gold);
    border: 1px solid rgba(197, 168, 128, 0.3);
    padding: 0.45rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    border-radius: 50px;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.8rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-title .highlight {
    font-family: var(--font-elegant);
    font-style: italic;
    color: var(--primary-gold);
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.2rem;
    line-height: 1.75;
}

.hero-features {
    margin-bottom: 2.8rem;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.9rem;
    font-size: 1.1rem;
}

.icon-check {
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.25rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

/* Lead Capture Card */
.hero-form-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: 12px;
    padding: 2.8rem 2.2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.hero-form-card:hover {
    border-color: rgba(197, 168, 128, 0.4);
    box-shadow: 0 20px 50px rgba(197, 168, 128, 0.1), 0 5px 15px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

.hero-form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    margin-bottom: 0.8rem;
    color: var(--primary-gold);
}

.hero-form-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    line-height: 1.5;
}

.lead-form .form-group {
    margin-bottom: 1.3rem;
}

.lead-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
    color: var(--text-white);
    opacity: 0.9;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background-color: rgba(18, 18, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.2);
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.form-group-checkbox input {
    margin-top: 0.25rem;
    cursor: pointer;
}

.form-group-checkbox label {
    font-size: 0.8rem;
    color: var(--text-muted);
    cursor: pointer;
}

.kvkk-link {
    color: var(--primary-gold);
    text-decoration: underline;
}

.form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

.form-message.success {
    color: #25d366;
    display: block;
}

.form-message.error {
    color: #ff4d4d;
    display: block;
}

/* Stats Section */
.stats-section {
    background-color: var(--dark-surface-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0;
}

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

.stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Section Header Style */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-tag {
    display: inline-block;
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
    margin: 1rem auto 1.5rem auto;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Courses Section */
.courses-section {
    padding: 100px 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.course-card {
    background-color: var(--dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.course-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 168, 128, 0.3);
    box-shadow: var(--shadow-premium);
}

.course-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-gold);
    color: var(--dark-charcoal);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    text-transform: uppercase;
}

.course-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-body h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.course-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.course-info-list {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.2rem;
    margin-bottom: 1.5rem;
}

.course-info-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.course-info-list li span {
    color: var(--text-muted);
}

.course-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Curriculum Section (Interactive Tabs) */
.curriculum-section {
    background-color: var(--dark-surface);
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    color: var(--text-white);
}

.tab-btn.active {
    color: var(--primary-gold);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-gold);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

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

.curriculum-col {
    background-color: var(--dark-surface-muted);
    border-left: 2px solid var(--primary-gold);
    padding: 2rem;
    border-radius: 0 8px 8px 0;
}

.curriculum-col h4 {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.curriculum-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.curriculum-col li {
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.2rem;
    line-height: 1.4;
}

.curriculum-col li::before {
    content: '▪';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    top: 0;
}

/* Why Us Section */
.why-us-section {
    padding: 100px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-card {
    background-color: var(--dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
    text-align: center;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 168, 128, 0.2);
}

.why-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(197, 168, 128, 0.1);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem auto;
    border: 1px solid rgba(197, 168, 128, 0.2);
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Student Reviews Section */
.reviews-section {
    background-color: var(--dark-surface);
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.reviews-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-container {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 2rem;
}

.testimonial-card {
    min-width: calc(50% - 1rem);
    background-color: var(--dark-surface-muted);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.rating {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.review-text {
    font-size: 1.05rem;
    font-family: var(--font-elegant);
    font-style: italic;
    color: var(--text-white);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.review-author {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info strong {
    display: block;
    font-size: 1rem;
    color: var(--primary-gold);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--dark-surface-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.slider-btn:hover {
    background-color: var(--primary-gold);
    color: var(--dark-charcoal);
    border-color: var(--primary-gold);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

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

.faq-item {
    background-color: var(--dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-gold);
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    opacity: 0;
}

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

.faq-item.active .faq-question {
    color: var(--primary-gold);
}

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

.faq-item.active .faq-answer {
    max-height: 200px; /* High enough to contain content */
    opacity: 1;
}

/* Contact & Footer Section */
.contact-section {
    background-color: var(--dark-surface-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 100px 0 0 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 60px;
}

.contact-info-panel h3,
.contact-form-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 1.2rem;
}

.contact-info-panel p,
.contact-form-panel p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-bottom: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.contact-detail-item svg {
    color: var(--primary-gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-detail-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-white);
    margin-bottom: 0.2rem;
}

.contact-detail-item p,
.contact-detail-item a {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

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

.map-container {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-premium);
}

.detailed-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.detailed-form .form-group {
    margin-bottom: 1.2rem;
}

.detailed-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-white);
}

.detailed-form input,
.detailed-form select,
.detailed-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: var(--dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.detailed-form input:focus,
.detailed-form select:focus,
.detailed-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.15);
}

.detailed-form textarea {
    resize: vertical;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    background-color: var(--dark-charcoal);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-content a {
    color: var(--primary-gold);
}

.footer-content a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-muted);
}

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

/* Floating WhatsApp */
.whatsapp-floating {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    z-index: 999;
    animation: pulseWhatsapp 2s infinite;
}

@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-form-card {
        max-width: 550px;
        margin: 0 auto;
    }
    
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .curriculum-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 1200px) {
    .header-actions .phone-link,
    .header-actions .btn {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--dark-surface);
        transition: var(--transition-smooth);
        padding: 3rem 2rem;
        border-top: 1px solid var(--glass-border);
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-item {
        border-right: none;
    }
    
    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        min-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 1.5rem;
    }
    
    .stats-grid .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .curriculum-grid {
        grid-template-columns: 1fr;
    }
    
    .detailed-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* --- Language Dropdown --- */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropdown-btn {
    background-color: var(--dark-surface-muted);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--primary-gold);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.lang-dropdown-btn:hover {
    background-color: rgba(197, 168, 128, 0.1);
    border-color: var(--primary-gold);
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: var(--dark-surface);
    border: 1px solid var(--glass-border);
    min-width: 80px;
    box-shadow: var(--shadow-premium);
    z-index: 1002;
    border-radius: 4px;
    margin-top: 0.3rem;
    overflow: hidden;
}

.lang-dropdown-content a {
    color: var(--text-white);
    padding: 0.6rem 1rem;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-fast);
}

.lang-dropdown-content a:hover {
    background-color: var(--primary-gold);
    color: var(--dark-charcoal);
}

.lang-dropdown:hover .lang-dropdown-content {
    display: block;
}

/* --- Cookie Consent Banner --- */
.cookie-consent-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    max-width: 450px;
    background-color: var(--dark-surface);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 1.5rem;
    box-shadow: var(--shadow-premium);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.cookie-icon {
    font-size: 1.5rem;
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-content a {
    color: var(--primary-gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

/* --- Instagram Feed --- */
.instagram-feed-section {
    padding: 100px 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.insta-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

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

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

.insta-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-gold);
}

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

/* --- Blog Page Styles --- */
.blog-body-page {
    background-color: var(--dark-charcoal);
}

.blog-hero {
    padding: 180px 0 60px 0;
    background: linear-gradient(180deg, rgba(197, 168, 128, 0.05) 0%, rgba(18, 18, 18, 0) 100%);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.blog-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin: 1rem 0;
    color: var(--text-white);
}

.blog-hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.blog-list-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.blog-post-card {
    background-color: var(--dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.blog-post-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 168, 128, 0.15);
    box-shadow: var(--shadow-premium);
}

.blog-post-img {
    height: 200px;
    overflow: hidden;
}

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

.blog-post-card:hover .blog-post-img img {
    transform: scale(1.03);
}

.blog-post-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-category {
    color: var(--primary-gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
}

.blog-post-body h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.post-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
    margin-top: auto;
    margin-bottom: 1.5rem;
}

.post-read-more {
    display: flex;
}

.post-read-more .btn {
    width: 100%;
}

/* Responsive Overrides for new elements */
@media (max-width: 1024px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .cookie-consent-banner {
        left: 1rem;
        right: 1rem;
        max-width: none;
        bottom: 1rem;
    }
    .lang-dropdown {
        margin-right: 1rem;
    }
}
