/* ==========================================================================
   CSS Variables & Theming
   ========================================================================== */
   :root {
    /* Color Palette */
    --primary-color: #E65100; /* Rich vibrant orange/saffron */
    --primary-light: #FF9800;
    --secondary-color: #2E7D32; /* Deep earthy green */
    --bg-color: #FAFAFA;
    --text-main: #212121;
    --text-light: #757575;
    --white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Container & Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: #F0F4F8;
}

.bg-dark {
    background-color: #1A1A1A;
    color: var(--white);
}

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

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

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.section-title span {
    color: var(--primary-color);
}

.bg-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.text-white { color: var(--white); }
.text-white-50 { color: rgba(255,255,255,0.7); }

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: var(--white);
    box-shadow: 0 10px 20px rgba(230, 81, 0, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(230, 81, 0, 0.4);
}

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

/* ==========================================================================
   Top Information & Language Bar
   ========================================================================== */
.top-bar {
    background: #111827;
    color: #9CA3AF;
    font-size: 0.82rem;
    padding: 8px 0;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.date-time-display {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: #E5E7EB;
}

.lang-selector-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-select {
    background: #1F2937;
    color: #F9FAFB;
    border: 1px solid #374151;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.82rem;
    font-family: var(--font-body);
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}

.lang-select:hover, .lang-select:focus {
    border-color: var(--primary-light);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 37px;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
}

.logo span {
    color: var(--primary-light);
}

.navbar.scrolled .logo {
    color: var(--text-main);
}

.navbar.scrolled .logo span {
    color: var(--primary-color);
}

.navbar.scrolled .logo {
    color: var(--text-main);
}

.navbar.scrolled .logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: var(--transition);
}

.navbar.scrolled .nav-links a {
    color: var(--text-main);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-light);
    transition: var(--transition);
}

.navbar.scrolled .nav-links a::after {
    background-color: var(--primary-color);
}

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

/* Mobile Menu Button */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .mobile-menu span {
    background-color: var(--text-main);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('hero.png') center/cover no-repeat;
    /* Adding a fallback background gradient if image is missing */
    background-color: #2c3e50;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 1;
}

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

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--primary-light);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.9;
}

/* ==========================================================================
   About Section - Professional Redesign
   ========================================================================== */
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(230, 81, 0, 0.1);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* Executive Quick Metrics Banner */
.metrics-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.metric-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(230, 81, 0, 0.3);
}

.metric-icon {
    font-size: 2.2rem;
    width: 60px;
    height: 60px;
    background: #FFF3E0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-info h3 {
    font-size: 1.6rem;
    color: var(--text-main);
    line-height: 1.1;
}

.metric-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

.metric-info p span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: #9E9E9E;
}

/* Professional Tabbed Container */
.about-tabs-container {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
}

.tab-buttons {
    display: flex;
    background: #F5F7FA;
    border-bottom: 1px solid #E4E8EF;
    overflow-x: auto;
}

.tab-btn {
    flex: 1;
    min-width: 180px;
    padding: 18px 24px;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: var(--primary-color);
    background: rgba(255,255,255,0.6);
}

.tab-btn.active {
    color: var(--primary-color);
    background: var(--white);
    border-bottom-color: var(--primary-color);
}

.tab-content-wrapper {
    padding: 2.5rem;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.tab-panel.active {
    display: block;
}

.panel-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #F0F0F0;
}

.panel-header h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 0.3rem;
}

.panel-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.info-box {
    background: #FAFAFA;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.info-box.highlight-box {
    border-left-color: var(--primary-color);
    background: #FFF8F5;
}

.info-box.full-width {
    grid-column: 1 / -1;
}

.info-box:hover {
    background: #F0F4F8;
    transform: translateY(-2px);
}

.info-badge {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.info-box h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.info-box p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.6;
}

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

/* ==========================================================================
   Culture & Festivals Showcase Section (Tourism Style Layout)
   ========================================================================== */
.culture-showcase-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.culture-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}

.culture-card.reverse {
    direction: rtl;
}

.culture-card.reverse .culture-content {
    direction: ltr;
}

.culture-card.reverse .culture-media {
    direction: ltr;
}

.culture-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(230, 81, 0, 0.3);
}

.culture-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 480px;
    background-color: #F7FAFC;
    overflow: hidden;
}

.culture-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.culture-card:hover .culture-media img {
    transform: scale(1.06);
}

.culture-media-placeholder {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    padding: 2rem;
    text-align: center;
}

.culture-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: #FFF;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.culture-badge.red-badge { background-color: #D32F2F; }
.culture-badge.orange-badge { background-color: #E65100; }
.culture-badge.blue-badge { background-color: #1976D2; }
.culture-badge.dark-badge { background-color: #455A64; }
.culture-badge.green-badge { background-color: #2E7D32; }

.culture-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.culture-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.deity-tag, .timing-tag {
    font-size: 0.82rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    background: #F0F4F8;
    color: var(--secondary-color);
}

.timing-tag {
    background: #FFF3E0;
    color: var(--primary-color);
}

.culture-content h3 {
    font-size: 2.2rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.culture-section-block {
    margin-bottom: 1.5rem;
}

.culture-section-block:last-child {
    margin-bottom: 0;
}

.culture-section-block h4 {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 0.4rem;
    font-family: var(--font-heading);
}

.culture-section-block p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.mantra-callout {
    background: linear-gradient(135deg, #FFF8F5, #FFF3E0);
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.2rem;
    border-radius: 8px;
    font-style: italic;
    font-size: 0.92rem;
    color: var(--text-main);
    margin-top: 0.8rem;
    font-weight: 600;
    line-height: 1.6;
}

/* ==========================================================================
   Landmarks / Famous Places Section
   ========================================================================== */
.landmarks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.landmark-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

.landmark-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(230, 81, 0, 0.3);
}

.landmark-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 380px;
    background-color: #E2E8F0;
    overflow: hidden;
}

.landmark-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    transition: transform 0.5s ease;
}

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

.landmark-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.schedule-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    color: #FFF;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.landmark-badge {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.landmark-body h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 0.3rem;
}

.location-text {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
}

.landmark-body p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.landmark-features {
    list-style: none;
    padding: 0;
    margin-top: auto;
    border-top: 1px solid #F0F0F0;
    padding-top: 1rem;
}

.landmark-features li {
    font-size: 0.88rem;
    color: var(--text-main);
    margin-bottom: 0.4rem;
    font-weight: 500;
}

/* ==========================================================================
   Notices Section
   ========================================================================== */
.notices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: left;
}

.notice-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.notice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--secondary-color);
    transition: var(--transition);
    z-index: -1;
}

.notice-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.notice-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.notice-date {
    display: inline-block;
    padding: 5px 12px;
    background-color: rgba(230, 81, 0, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.notice-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.notice-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.read-more {
    font-weight: 600;
    color: var(--secondary-color);
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-color);
}

/* ==========================================================================
   Gallery Section (Square Aspect-Ratio Container)
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    width: 100%;
    background-color: #E2E8F0;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

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

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

.gallery-overlay span {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-list {
    margin-top: 2rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-list .icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: #FAFAFA;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(230, 81, 0, 0.1);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #111;
    color: var(--white);
    padding: 2rem 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    color: var(--white);
}

.footer-link {
    color: var(--primary-light);
    font-weight: 600;
    margin: 0 4px;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.right {
    transform: translateX(50px);
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
    .layout-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-md);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }
    
    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .nav-links a {
        color: var(--text-main);
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
    }

    .top-bar {
        padding: 6px 0;
    }

    .top-bar-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 92%;
        font-size: 0.76rem;
    }

    .navbar {
        top: 35px;
        padding: 10px 0;
    }

    .nav-container {
        width: 92%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        font-size: 1.35rem;
        gap: 8px;
        line-height: 1;
        display: inline-flex;
        align-items: center;
    }

    .logo-img {
        height: 32px;
        width: auto;
    }

    .mobile-menu {
        display: flex;
        align-items: center;
    }

    .section {
        padding: 60px 0;
    }

    .metrics-banner {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tab-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .tab-btn {
        width: 100%;
        text-align: left;
        padding: 12px 16px;
    }

    .culture-card, .culture-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr !important;
    }

    .culture-media {
        aspect-ratio: 1 / 1;
        width: 100%;
        max-height: none;
    }

    .social-buttons {
        flex-direction: column;
        width: 100%;
    }

    .social-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    
    .contact-form {
        padding: 2rem;
    }
}
