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

:root {
    --gold: #D4AF37;
    --gold-light: #E5C158;
    --gold-dark: #C4A030;
    --white: #FFFFFF;
    --near-black: #1A1A1A;
    --gray: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--gold);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.1);
}

#navbar.scrolled {
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu .dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 240px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    border: 2px solid var(--gold);
    list-style: none;
    padding: 0;
    margin-top: 10px;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 14px 20px;
    color: var(--gold-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--gold);
    color: white;
}

.dropdown-toggle::after {
    content: ' ▾';
    font-size: 12px;
}

.nav-link {
    color: var(--gold-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

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

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
    max-width: 1000px;
}

.hero-title {
    font-size: 96px;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 32px;
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 28px;
    color: var(--gold-light);
    margin-bottom: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-text {
    font-size: 18px;
    color: var(--gold-dark);
    margin-bottom: 48px;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    padding: 16px 48px;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Gold Divider */
.gold-divider {
    width: 96px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 48px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.gold-divider-left {
    width: 96px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 32px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* Introduction Section */
.introduction {
    padding: 128px 24px;
    background: var(--white);
}

.intro-main {
    font-size: 28px;
    color: var(--gold);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 32px;
    font-weight: 300;
    line-height: 1.6;
}

.intro-text {
    font-size: 20px;
    color: var(--gold-dark);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 24px;
    font-weight: 300;
    line-height: 1.7;
}

/* Ceremonial Images */
.ceremonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 96px;
}

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

.image-frame {
    border: 3px solid var(--gold);
    padding: 12px;
    transition: all 0.3s ease;
}

.image-frame:hover {
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    transform: translateY(-4px);
}

.image-frame img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.image-frame:hover img {
    filter: grayscale(0%);
}

.image-caption {
    margin-top: 16px;
    font-size: 14px;
    color: var(--gold);
    font-weight: 300;
}

/* Sections */
.who-section,
.services-section,
.additional-section {
    padding: 96px 24px;
    background: #F9F9F9;
}

.about-section,
.pujas-section {
    padding: 128px 24px;
    background: var(--white);
}

.contact-section {
    padding: 128px 24px;
    background: var(--white);
}

.section-title {
    font-size: 56px;
    font-weight: 300;
    color: var(--gold);
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -1px;
}

.subsection-title {
    font-size: 36px;
    font-weight: 300;
    color: var(--gold);
    text-align: center;
    margin: 64px 0 48px;
}

.section-intro {
    font-size: 20px;
    color: var(--gold-dark);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 64px;
    font-weight: 300;
    line-height: 1.7;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.card {
    background: var(--white);
    padding: 40px;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.card-icon {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 24px;
}

.card-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-desc {
    font-size: 16px;
    color: var(--gold-dark);
    font-weight: 300;
    line-height: 1.6;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 64px;
    align-items: start;
}

.guruji-frame {
    border: 4px solid var(--gold);
    padding: 8px;
}

.guruji-frame img {
    width: 100%;
    display: block;
}

.about-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.about-text {
    font-size: 18px;
    color: var(--gold-dark);
    margin-bottom: 24px;
    font-weight: 300;
    line-height: 1.7;
}

/* Puja Note */
.puja-note {
    text-align: center;
    font-style: italic;
    color: var(--gold-dark);
    margin-top: 48px;
    font-weight: 300;
}

/* Ethical Note */
.ethical-note {
    max-width: 900px;
    margin: 64px auto 0;
    padding: 32px;
    background: var(--white);
    border: 2px solid var(--gold);
    text-align: center;
}

.ethical-note p {
    font-size: 16px;
    color: var(--gold-dark);
    font-weight: 300;
    line-height: 1.7;
}

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

/* Contact Section */
.contact-intro {
    font-size: 18px;
    color: var(--gold-dark);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
    font-weight: 300;
    line-height: 1.7;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
    margin-bottom: 32px;
}

.form-row.three-cols {
    grid-template-columns: repeat(3, 1fr);
}

.form-group-wide {
    grid-column: span 1;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

input,
select,
textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--gold);
    background: var(--white);
    color: var(--gold-dark);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: var(--gold-dark);
    opacity: 0.6;
}

.btn-submit {
    width: 100%;
    padding: 20px;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.form-message {
    margin-top: 24px;
    padding: 16px;
    text-align: center;
    font-size: 14px;
    border-left: 4px solid var(--gold);
}

.form-message.success {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.form-message.error {
    background: rgba(255, 0, 0, 0.1);
    color: #D32F2F;
    border-left-color: #D32F2F;
}

/* Footer */
.footer {
    padding: 64px 24px;
    background: var(--near-black);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
    margin-bottom: 48px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.footer-text {
    text-align: center;
    color: var(--gold);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.footer-copy {
    text-align: center;
    color: var(--gold-dark);
    font-size: 14px;
    font-weight: 300;
}

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

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 64px;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ceremonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 48px 24px;
        gap: 0;
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 16px 20px;
        text-align: center;
        width: 100%;
    }

    .nav-menu .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        margin-top: 0;
        background: rgba(212, 175, 55, 0.05);
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 12px 40px;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 36px;
    }

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

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .intro-main {
        font-size: 20px;
    }

    .section-title {
        font-size: 28px;
    }
}
/* Page Hero Styles */
.page-hero {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.hero-content-page {
    text-align: center;
    padding: 0 24px;
    max-width: 1000px;
}

.page-title {
    font-size: 64px;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: 22px;
    color: var(--gold-light);
    font-weight: 300;
}

/* Intro Section */
.intro-section {
    padding: 96px 24px;
    background: white;
}

.intro-text-large {
    font-size: 28px;
    color: var(--gold);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 32px;
    font-weight: 400;
    font-style: italic;
}

.intro-text {
    font-size: 18px;
    color: var(--gold-dark);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 24px;
    font-weight: 300;
    line-height: 1.8;
}

.intro-text.highlight {
    color: var(--gold);
    font-weight: 400;
    margin-top: 32px;
}

/* Services Grid Section */
.services-grid-section {
    padding: 96px 24px;
    background: #F9F9F9;
}

/* Note Box */
.note-box {
    max-width: 900px;
    margin: 64px auto 0;
    padding: 32px;
    background: white;
    border: 2px solid var(--gold);
    border-left: 6px solid var(--gold);
    text-align: center;
}

.note-box p {
    font-size: 16px;
    color: var(--gold-dark);
    font-weight: 300;
    line-height: 1.7;
}

/* Ethical Note Box */
.ethical-note-box {
    max-width: 900px;
    margin: 64px auto 0;
    padding: 40px;
    background: white;
    border: 3px solid var(--gold);
    text-align: center;
}

.ethical-title {
    font-size: 24px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 16px;
}

.ethical-note-box p {
    font-size: 16px;
    color: var(--gold-dark);
    font-weight: 300;
    line-height: 1.7;
}

/* Simple CTA Section */
.cta-section-simple {
    padding: 96px 24px;
    background: white;
    text-align: center;
}

.cta-title-simple {
    font-size: 42px;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 24px;
}

.cta-text-simple {
    font-size: 18px;
    color: var(--gold-dark);
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.7;
    font-weight: 300;
}

/* Responsive for new pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 40px;
    }
    
    .page-subtitle {
        font-size: 18px;
    }
    
    .intro-text-large {
        font-size: 22px;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .dropdown-menu a {
        padding-left: 40px;
    }
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 48px;
    border: 2px solid var(--gold);
    background: var(--gold);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Tanthrigam Page Specific Styles */
.tanthrigam-page .page-hero {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border: 2px solid var(--gold);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 16px;
    color: var(--gold-dark);
    font-weight: 300;
    line-height: 1.6;
}

.emphasis-box {
    background: var(--white);
    border: 3px solid var(--gold);
    padding: 48px;
    margin: 48px auto;
    max-width: 900px;
    text-align: center;
}

.emphasis-title {
    font-size: 36px;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 24px;
}

.info-block {
    max-width: 900px;
    margin: 64px auto;
}

.block-title {
    font-size: 28px;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 24px;
}

.golden-list {
    list-style: none;
    margin: 32px 0;
}

.golden-list li {
    font-size: 18px;
    color: var(--gold-dark);
    padding: 16px 0;
    padding-left: 40px;
    position: relative;
    line-height: 1.7;
}

.golden-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 20px;
}

.golden-list li strong {
    color: var(--gold);
    font-weight: 600;
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.reason-card {
    background: var(--white);
    padding: 40px;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.reason-number {
    font-size: 48px;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 16px;
}

.reason-title {
    font-size: 22px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 12px;
}

.reason-desc {
    font-size: 16px;
    color: var(--gold-dark);
    font-weight: 300;
    line-height: 1.6;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin: 48px 0;
}

.principle-card {
    background: var(--white);
    padding: 40px;
    border: 2px solid var(--gold);
    text-align: center;
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.principle-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.principle-title {
    font-size: 22px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 12px;
}

.principle-desc {
    font-size: 16px;
    color: var(--gold-dark);
    font-weight: 300;
    line-height: 1.6;
}

.warning-box {
    background: var(--white);
    border: 2px solid var(--gold);
    border-left: 6px solid var(--gold);
    padding: 40px;
    margin-top: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.warning-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 24px;
}

.warning-list {
    list-style: none;
}

.warning-list li {
    font-size: 18px;
    color: var(--gold-dark);
    padding: 12px 0;
    font-weight: 400;
}

.perspective-box {
    background: var(--white);
    border: 3px solid var(--gold);
    padding: 64px;
    max-width: 1000px;
    margin: 0 auto;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--gold);
}

.support-icon {
    font-size: 32px;
}

.support-text {
    font-size: 20px;
    color: var(--gold);
    font-weight: 500;
}

.not-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.not-card {
    background: var(--white);
    padding: 40px;
    border: 2px solid var(--gold);
    text-align: center;
    transition: all 0.3s ease;
}

.not-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.not-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.not-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 12px;
}

.not-desc {
    font-size: 16px;
    color: var(--gold-dark);
    font-weight: 300;
    line-height: 1.6;
}

.summary-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.summary-text {
    font-size: 24px;
    color: var(--gold);
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 300;
}

.summary-text.final {
    font-size: 20px;
    color: var(--gold-dark);
    margin-top: 48px;
    font-style: italic;
}

.summary-text strong {
    color: var(--gold);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .reason-grid,
    .principles-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }

    .not-grid {
        grid-template-columns: 1fr;
    }
}
/* DROPDOWN FIX - Click-based instead of hover */

/* Remove hover-based dropdown */
.dropdown:hover .dropdown-menu {
    display: none !important;
}

/* Add click-based dropdown with .active class */
.dropdown.active .dropdown-menu {
    display: block !important;
}

/* Make dropdown toggle clearly clickable */
.dropdown-toggle {
    cursor: pointer !important;
    user-select: none !important;
}

/* Rotate arrow when dropdown is active */
.dropdown-toggle::after {
    transition: transform 0.3s ease !important;
    display: inline-block !important;
}

.dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg) !important;
}
