/* Reset dan variabel warna */
:root {
    --primary-color: #9c2c2c; /* Merah tanah */
    --secondary-color: #e8d2a6; /* Pasir/cream */
    --accent-color: #2c5f7a; /* Biru langit */
    --dark-color: #1a1a1a;
    --light-color: #f8f5f0;
    --success-color: #2e7d32;
    --warning-color: #ed6c02;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light-color);
    color: var(--dark-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: inherit;
    text-decoration: none;
}

.text-center {
    text-align: center;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header dan Navigasi */
header {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
    color: var(--secondary-color);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-color);
}

.logo-text span {
    color: var(--secondary-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--secondary-color);
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    left: 0;
    bottom: 0;
    transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1492684223066-dd23140edf6d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    text-align: center;
    padding: 8rem 0;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    background-color: var(--accent-color);
    color: var(--light-color);
    text-align: center;
    padding: 5rem 0;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--light-color);
    border-color: var(--light-color);
}

.cta-button.secondary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.cta-button.secondary:hover {
    background-color: transparent;
    color: var(--light-color);
}

.cta-button.full-width {
    width: 100%;
    padding: 1rem;
}

.btn-small {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-small:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
}

.btn-small.secondary {
    background-color: var(--accent-color);
}

.btn-small.outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-small.outline:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* Section Title */
.section-title {
    text-align: center;
    margin: 3rem 0;
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Articles Section */
.articles-section {
    padding: 4rem 0;
    background-color: #f0ebe3;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.article-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.article-img {
    height: 200px;
    overflow: hidden;
}

.article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-img img {
    transform: scale(1.05);
}

.article-info {
    padding: 1.5rem;
}

.article-info time {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

.article-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.article-info p {
    margin-bottom: 1.5rem;
    color: #666;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(44, 95, 122, 0.9), rgba(44, 95, 122, 0.9)), url('https://images.unsplash.com/photo-1514320291840-2e0a9bf2a9ae?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    padding: 5rem 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Highlights Section */
.highlights {
    padding: 4rem 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.highlight-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.highlight-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Featured Productions */
.featured-productions {
    padding: 4rem 0;
    background-color: #f0ebe3;
}

.productions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.production-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.production-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.production-card.detailed {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
}

@media (max-width: 768px) {
    .production-card.detailed {
        grid-template-columns: 1fr;
    }
}

.production-img {
    height: 200px;
    overflow: hidden;
}

.production-card.detailed .production-img {
    height: 100%;
}

.production-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.production-card:hover .production-img img {
    transform: scale(1.05);
}

.production-info {
    padding: 1.5rem;
}

.production-status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.production-status.current {
    background-color: #e8f5e9;
    color: var(--success-color);
}

.production-status.upcoming {
    background-color: #e3f2fd;
    color: var(--accent-color);
}

.production-status.past {
    background-color: #f5f5f5;
    color: #666;
}

.production-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.production-date, .production-location {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.production-details {
    margin-top: 1rem;
}

.production-details h4 {
    color: var(--dark-color);
    margin: 1rem 0 0.5rem;
}

.production-specs {
    list-style: none;
    margin: 0.5rem 0 1rem;
}

.production-specs li {
    margin-bottom: 0.3rem;
    padding-left: 1.5rem;
    position: relative;
}

.production-specs li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.production-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* About Section */
.about-section {
    padding: 4rem 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Philosophy Section */
.philosophy-section {
    background-color: #f0ebe3;
    padding: 4rem 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.philosophy-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.philosophy-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 5px solid var(--secondary-color);
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-member .position {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Milestones Section */
.milestones-section {
    background-color: #f0ebe3;
    padding: 4rem 0;
}

.milestones-timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
}

.milestones-timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--accent-color);
}

.milestone {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.milestone:nth-child(odd) {
    flex-direction: row-reverse;
}

.milestone-year {
    flex: 0 0 100px;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    font-weight: 700;
    z-index: 1;
}

.milestone-content {
    flex: 1;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 0 2rem;
}

.milestone-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Productions Filter */
.productions-filter {
    background-color: #f0ebe3;
    padding: 2rem 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background-color: var(--light-color);
    border: 2px solid var(--accent-color);
    border-radius: 30px;
    color: var(--accent-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--accent-color);
    color: var(--light-color);
}

/* Schedule Section */
.calendar-nav {
    background-color: var(--light-color);
    padding: 2rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.calendar-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.calendar-controls h2 {
    color: var(--primary-color);
}

.calendar-btn {
    padding: 0.5rem 1rem;
    background-color: var(--secondary-color);
    border: none;
    border-radius: 5px;
    color: var(--dark-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.calendar-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.schedule-section {
    padding: 3rem 0;
}

.schedule-table-container {
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: var(--shadow);
}

.schedule-table caption {
    caption-side: bottom;
    text-align: left;
    padding: 1rem;
    font-style: italic;
    color: #666;
}

.schedule-table thead {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.schedule-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.schedule-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: var(--transition);
}

.schedule-table tbody tr:hover {
    background-color: #f9f9f9;
}

.schedule-table tbody tr.highlighted {
    background-color: #fff8e1;
}

.schedule-table td {
    padding: 1rem;
}

.schedule-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.date-day {
    font-size: 0.9rem;
    color: #666;
}

.date-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.date-month {
    font-size: 0.9rem;
    color: #666;
}

.schedule-production h3 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.schedule-production p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.special-tag {
    display: inline-block;
    background-color: var(--warning-color);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
}

.schedule-time {
    display: flex;
    flex-direction: column;
}

.time-primary {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
}

.time-secondary {
    font-size: 0.9rem;
    color: #666;
}

.schedule-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ticket-availability {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.availability-bar {
    width: 100%;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.availability-fill {
    height: 100%;
    background-color: var(--success-color);
    border-radius: 4px;
}

.availability-text {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Pricing Section */
.pricing-section {
    background-color: #f0ebe3;
    padding: 4rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-header h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: #666;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features i.fa-check {
    color: var(--success-color);
}

.pricing-features i.fa-times {
    color: #bdbdbd;
}

/* Booking Notice */
.booking-notice {
    padding: 3rem 0;
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: #e3f2fd;
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--accent-color);
}

.notice-icon {
    font-size: 3rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.notice-text h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

.contact-info h2,
.contact-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.contact-text h3 {
    color: var(--accent-color);
    margin-bottom: 0.3rem;
}

.social-contact {
    margin-top: 2rem;
}

.social-contact h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.social-icons.large {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-icons.large a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background-color: #f5f5f5;
    border-radius: 5px;
    transition: var(--transition);
}

.social-icons.large a:hover {
    background-color: var(--secondary-color);
    transform: translateX(5px);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(44, 95, 122, 0.2);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background-color: #f0ebe3;
}

.map-container {
    margin-top: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder {
    height: 400px;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-placeholder:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--secondary-color) 25%, transparent 25%) -50px 0,
                linear-gradient(225deg, var(--secondary-color) 25%, transparent 25%) -50px 0,
                linear-gradient(315deg, var(--secondary-color) 25%, transparent 25%),
                linear-gradient(45deg, var(--secondary-color) 25%, transparent 25%);
    background-size: 100px 100px;
    background-color: #f5f5f5;
    opacity: 0.3;
}

.map-content {
    text-align: center;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 500px;
}

.map-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.map-instructions {
    text-align: left;
    margin-top: 1.5rem;
}

.map-instructions h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.map-instructions ul {
    list-style: none;
}

.map-instructions li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.map-instructions li:before {
    content: '→';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--light-color);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #666;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover,
.footer-column ul li a.active {
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
}

.copyright a {
    color: #ccc;
    text-decoration: underline;
}

.copyright a:hover {
    color: var(--secondary-color);
}

/* Responsif */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .milestones-timeline:before {
        left: 30px;
    }
    
    .milestone {
        flex-direction: row !important;
    }
    
    .milestone-year {
        flex: 0 0 80px;
    }
    
    .milestone-content {
        margin-left: 4rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    nav {
        width: 100%;
        margin-top: 1rem;
        display: none;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin-left: 0;
        margin-bottom: 1rem;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }
    
    .hero {
        padding: 5rem 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .calendar-controls {
        flex-direction: column;
        text-align: center;
    }
    
    .notice-content {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .footer-column {
        min-width: 100%;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .productions-grid {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .cta-button {
        width: 100%;
        max-width: 300px;
    }
}