/* Import base styles and variables */
@import url('base.css'); 

/* ================ */
/* Typography */
/* ================ */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 600;
    color: var(--rangoon-green);
}

h1 {
    font-size: 2.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

a {
    color: var(--rust);
    text-decoration: none;
    transition: var(--transition-base);
    font-weight: 500;
}

a:hover {
    color: var(--di-serrria);
    text-decoration: underline;
}

.text-accent {
    color: var(--di-serrria) !important;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

/* ================ */
/* Layout Components */
/* ================ */
.content-wrapper {
    min-height: calc(100vh - 80px);
    padding-top: 80px;
}

.container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section {
    padding: 4rem 0;
}

.section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--rust);
    border-radius: 2px;
}

/* ===================== */
/* STABLE HEADER STYLES  */
/* ===================== */

/* Navigation Container */
.navbar {
    background-color: var(--citrine-white) !important;
    border-bottom: 1px solid var(--border-color) !important;
    box-shadow: var(--shadow-sm) !important;
    padding: 0.5rem 0 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1030 !important;
    transition: var(--transition-base) !important;
}

/* Scrolled State */
.navbar.scrolled {
    box-shadow: var(--shadow-md) !important;
}

/* Brand Logo & Text */
.navbar-brand {
    font-weight: 700 !important;
    font-size: 1.5rem !important;
    color: var(--rust) !important;
    display: inline-flex !important;
    align-items: center !important;
    margin-right: 1rem !important;
    padding: 0.25rem 0 !important;
    transition: var(--transition-base) !important;
}

.navbar-brand:hover {
    color: var(--di-serrria) !important;
}

.navbar-brand img {
    height: 70px !important;
    width: auto !important;
    max-height: 100% !important;
    transition: var(--transition-base) !important;
}

/* Mobile Toggler - Fixed Contrast */
.navbar-toggler {
    padding: 0.5rem !important;
    margin-left: auto !important;
    border: none !important;
    box-shadow: none !important;
    color: var(--rangoon-green) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(21, 20, 15, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Navigation Links */
.nav-link {
    font-weight: 500 !important;
    color: var(--rangoon-green) !important;
    padding: 0.75rem 1rem !important;
    margin: 0 0.2rem !important;
    border-radius: 0.25rem !important;
    transition: var(--transition-base) !important;
    position: relative !important;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--rust) !important;
    background-color: var(--rust-light) !important;
}

.nav-link.active {
    color: var(--rust) !important;
    font-weight: 600 !important;
}

.nav-link.active::after {
    content: '' !important;
    position: absolute !important;
    bottom: -8px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 6px !important;
    height: 6px !important;
    background: var(--rust) !important;
    border-radius: 50% !important;
}

/* Dropdown Menu */
.dropdown-menu {
    background-color: var(--citrine-white) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: var(--shadow-md) !important;
}

.dropdown-item {
    color: var(--rangoon-green) !important;
    padding: 0.5rem 1.5rem !important;
    transition: var(--transition-base) !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--rust-light) !important;
    color: var(--rust) !important;
}

.dropdown-divider {
    border-color: var(--border-color) !important;
}

/* User Menu Specific Styles */
.avatar-sm {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: var(--rust-light) !important;
    color: var(--rust) !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
}

.avatar-sm img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
}

/* Community Button Styles */
.navbar .btn-accent {
    white-space: nowrap !important;
    margin-left: 0.5rem !important;
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .navbar {
        padding: 0.75rem 0 !important;
    }
    
    .content-wrapper {
        padding-top: 90px !important;
    }
    
    .navbar-collapse {
        padding: 1rem 0 !important;
        background-color: var(--citrine-white) !important;
        margin-top: 0.5rem !important;
        border-radius: 0.25rem !important;
        box-shadow: var(--shadow-md) !important;
    }
    
    .navbar-brand img {
        height: 50px !important;
    }
    
    .nav-item {
        margin-bottom: 0.5rem !important;
    }
    
    .nav-link {
        padding: 0.75rem 1.5rem !important;
        margin: 0 !important;
    }
    
    .nav-link.active::after {
        display: none !important;
    }
    
    /* Community Button Mobile Fix */
    .navbar-nav.ms-auto .nav-item:last-child {
        margin-top: 0.5rem !important;
        padding-top: 0.5rem !important;
        border-top: 1px solid var(--border-color) !important;
    }
    
    .navbar-nav.ms-auto .btn-accent {
        display: block !important;
        width: calc(100% - 3rem) !important;
        margin: 0.5rem 1.5rem !important;
        text-align: center !important;
    }
    
    /* Dropdown menu adjustments */
    .dropdown-menu {
        margin-left: 1.5rem !important;
        width: calc(100% - 3rem) !important;
        border: none !important;
        box-shadow: none !important;
        background-color: rgba(178, 61, 19, 0.05) !important;
    }
    
    .dropdown-item {
        padding-left: 1rem !important;
    }
}

/* Tablet Adjustments */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.35rem !important;
    }
    
    .navbar-brand img {
        height: 45px !important;
    }
    
    /* Adjust community button padding */
    .navbar-nav.ms-auto .btn-accent {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
    }
}

/* Small Screen Adjustments */
@media (max-width: 576px) {
    .navbar-brand img {
        height: 40px !important;
    }
    
    .navbar-brand {
        font-size: 1.25rem !important;
    }
    
    /* Ensure all text remains visible */
    .nav-link,
    .dropdown-item {
        color: var(--rangoon-green) !important;
    }
    
    /* Community button full width */
    .navbar-nav.ms-auto .btn-accent {
        width: calc(100% - 2rem) !important;
        margin: 0.5rem 1rem !important;
    }
}

/* Extra Small Screens */
@media (max-width: 400px) {
    .navbar-brand img {
        height: 36px !important;
    }
    
    .navbar-brand {
        font-size: 1.1rem !important;
    }
    
    /* Adjust menu item padding */
    .nav-link {
        padding: 0.75rem 1rem !important;
    }
}

/* ===================== */
/* RESPONSIVE ADJUSTMENTS */
/* ===================== */
@media (max-width: 1200px) {
    .navbar-brand img {
        height: 60px !important;
    }
}

@media (max-width: 992px) {
    .navbar-brand img {
        height: 50px !important;
    }
}

/* ================ */
/* Buttons */
/* ================ */
.btn {
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--rust);
    --bs-btn-border-color: var(--rust);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--di-serrria);
    --bs-btn-hover-border-color: var(--di-serrria);
    --bs-btn-active-bg: var(--di-serrria);
    --bs-btn-active-border-color: var(--di-serrria);
}

.btn-outline-primary {
    --bs-btn-color: var(--rust);
    --bs-btn-border-color: var(--rust);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--rust);
    --bs-btn-hover-border-color: var(--rust);
}

.btn-accent {
    --bs-btn-color: var(--rangoon-green);
    --bs-btn-bg: var(--di-serrria);
    --bs-btn-border-color: var(--di-serrria);
    --bs-btn-hover-color: var(--rangoon-green);
    --bs-btn-hover-bg: rgba(220, 163, 86, 0.9);
    --bs-btn-hover-border-color: rgba(220, 163, 86, 0.9);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ================ */
/* Cards */
/* ================ */
.card {
    border: none;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    background: #fff;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-header {
    background-color: var(--rust);
    color: white;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-bottom: none;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    color: var(--rangoon-green);
    margin-bottom: 0.75rem;
}

.card-text {
    color: var(--text-secondary);
}

/* ================ */
/* Hero Section */
/* ================ */
.hero-section {
    background: linear-gradient(135deg, rgba(178, 61, 19, 0.05) 0%, var(--citrine-white) 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(220, 163, 86, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

/* ================ */
/* Features */
/* ================ */
.feature-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(178, 61, 19, 0.1);
    color: var(--rust);
    border-radius: 50%;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

/* ================ */
/* Testimonials */
/* ================ */
.testimonial-card {
    border-left: 4px solid var(--rust);
    background: #fff;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.testimonial-author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author-title {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ================ */
/* Forms */
/* ================ */
.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.25rem;
    transition: var(--transition-base);
}

.form-control:focus {
    border-color: var(--rust);
    box-shadow: 0 0 0 0.25rem rgba(178, 61, 19, 0.1);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--rangoon-green);
}

/* ================ */
/* Footer - Premium Redesign */
/* ================ */
footer {
    background-color: var(--rangoon-green);
    color: var(--citrine-white);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(circle at 20% 30%, rgba(220, 163, 86, 0.1) 0%, transparent 25%);
    margin-top: 4rem;
}

footer::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 163, 86, 0.12) 0%, transparent 65%);
    border-radius: 50%;
    z-index: 0;
}

.footer-container {
    position: relative;
    z-index: 2;
}

.footer-logo {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--citrine-white);
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-base);
}

.footer-logo:hover {
    color: var(--di-serrria);
}

.footer-logo img {
    height: 48px;
    width: auto;
    transition: var(--transition-base);
}

.footer-logo:hover img {
    transform: rotate(-5deg);
}

.footer-about {
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 2rem;
}

.footer-description {
    color: rgba(251, 243, 226, 0.95);
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 0;
    position: relative;
}

.footer-description::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5em;
    height: calc(100% - 1em);
    width: 4px;
    background: linear-gradient(to bottom, var(--di-serrria), var(--rust));
    border-radius: 4px;
}

.footer-links h5 {
    color: var(--citrine-white);
    margin-bottom: 2rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--di-serrria);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.footer-links h5:hover::after {
    width: 80px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(251, 243, 226, 0.95);
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-weight: 400;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--di-serrria);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--di-serrria);
    text-decoration: none;
    transform: translateX(10px);
}

.footer-links a:hover::before {
    width: 20px;
}

.footer-links a i {
    font-size: 0.8em;
    color: var(--di-serrria);
    transition: var(--transition-base);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.social-link {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(251, 243, 226, 0.1);
    color: var(--citrine-white);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(220, 163, 86, 0.3);
}

.social-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--di-serrria) 0%, var(--rust) 100%);
    opacity: 0;
    transition: var(--transition-base);
    z-index: -1;
}

.social-link:hover {
    color: var(--rangoon-green);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(220, 163, 86, 0.4);
    border-color: transparent;
}

.social-link:hover::after {
    opacity: 1;
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--di-serrria);
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.contact-text {
    color: rgba(251, 243, 226, 0.95);
    line-height: 1.7;
    transition: var(--transition-base);
}

.contact-item:hover .contact-text {
    color: var(--di-serrria);
    transform: translateX(5px);
}

.subscribe-form {
    margin-top: 2.5rem;
}

.subscribe-form .form-control {
    background: rgba(251, 243, 226, 0.08);
    border: 1px solid rgba(251, 243, 226, 0.25);
    color: var(--citrine-white);
    padding: 1rem 1.5rem;
    margin-bottom: 1.25rem;
    transition: var(--transition-base);
}

.subscribe-form .form-control:focus {
    background: rgba(251, 243, 226, 0.15);
    border-color: var(--di-serrria);
    box-shadow: 0 0 0 0.25rem rgba(220, 163, 86, 0.15);
}

.subscribe-form .form-control::placeholder {
    color: rgba(251, 243, 226, 0.6);
    font-weight: 300;
}

.subscribe-form .btn {
    width: 100%;
    padding: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.subscribe-form .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--di-serrria), var(--rust));
    z-index: -1;
    transition: var(--transition-base);
}

.footer-bottom {
    border-top: 1px solid rgba(251, 243, 226, 0.25);
    padding-top: 3rem;
    margin-top: 4rem;
    color: rgba(251, 243, 226, 0.9);
    font-size: 1rem;
}

.footer-bottom a {
    color: var(--citrine-white);
    font-weight: 500;
    transition: var(--transition-base);
    margin: 0 1rem;
    position: relative;
}

.footer-bottom a:hover {
    color: var(--di-serrria);
    text-decoration: none;
}

.footer-bottom a::after {
    content: '•';
    position: absolute;
    right: -1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(251, 243, 226, 0.6);
}

.footer-bottom a:last-child::after {
    display: none;
}

.footer-copyright {
    background-color: rgba(21, 20, 15, 0.95);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(220, 163, 86, 0.15);
}

.copyright-text {
    color: rgba(251, 243, 226, 0.85);
    font-size: 0.95rem;
    margin: 0;
    letter-spacing: 0.3px;
}

.current-year {
    color: var(--di-serrria);
    font-weight: 600;
}

.legal-links {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.legal-link {
    color: rgba(251, 243, 226, 0.85);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
}

.legal-link:hover {
    color: var(--di-serrria);
    text-decoration: none;
}

.legal-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--di-serrria);
    transition: width 0.3s ease;
}

.legal-link:hover::after {
    width: 100%;
}

.link-divider {
    color: rgba(251, 243, 226, 0.4);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .footer-copyright {
        padding: 1.25rem 0;
    }
    
    .copyright-text,
    .legal-link {
        font-size: 0.9rem;
    }
    
    .legal-links {
        gap: 0.75rem;
    }
}

@media (max-width: 576px) {
    .footer-copyright {
        text-align: center;
    }
    
    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    footer {
        padding: 5rem 0 3.5rem;
    }
    
    .footer-logo {
        font-size: 1.75rem;
    }
    
    .footer-logo img {
        height: 44px;
    }
}

@media (max-width: 992px) {
    footer {
        padding: 4.5rem 0 3rem;
        background-image: none;
    }
    
    footer::before {
        width: 300px;
        height: 300px;
    }
    
    .footer-about {
        padding-left: 1.5rem;
    }
    
    .footer-description::before {
        left: -1.5rem;
        width: 3px;
    }
    
    .footer-links h5 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 4rem 0 2.5rem;
    }
    
    .footer-logo {
        font-size: 1.65rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-logo img {
        height: 40px;
    }
    
    .footer-description {
        font-size: 1.05rem;
    }
    
    .footer-links h5 {
        margin-bottom: 1.5rem;
        font-size: 1.15rem;
    }
    
    .footer-bottom {
        padding-top: 2.5rem;
        margin-top: 3rem;
        text-align: center;
    }
    
    .footer-bottom a {
        display: block;
        margin: 0.5rem 0;
    }
    
    .footer-bottom a::after {
        display: none;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 3.5rem 0 2rem;
    }
    
    .footer-logo {
        font-size: 1.5rem;
        gap: 0.75rem;
    }
    
    .footer-logo img {
        height: 36px;
    }
    
    .social-links {
        gap: 1.25rem;
        margin-top: 2rem;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .contact-item {
        gap: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .contact-item i {
        font-size: 1.2rem;
    }
}

/* ================ */
/* Utility Classes */
/* ================ */
.bg-accent {
    background-color: var(--di-serrria) !important;
}

.bg-accent-light {
    background-color: var(--di-serrria-light) !important;
}

.text-accent {
    color: var(--di-serrria) !important;
}

.border-accent {
    border-color: var(--di-serrria) !important;
}

.rounded-lg {
    border-radius: 0.75rem !important;
}

.shadow-hover:hover {
    box-shadow: var(--shadow-lg) !important;
}

/* ================ */
/* Animations */
/* ================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* ================ */
/* Responsive Adjustments */
/* ================ */
@media (max-width: 1200px) {
    .navbar-brand img {
        height: 60px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .navbar-brand img {
        height: 55px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .content-wrapper {
        padding-top: 90px;
    }
    
    .navbar-collapse {
        padding: 1rem 0;
        background-color: var(--citrine-white);
        margin-top: 0.5rem;
        border-radius: 0.25rem;
        box-shadow: var(--shadow-md);
    }
    
    .navbar-brand img {
        height: 50px;
    }
    
    .nav-item {
        margin-bottom: 0.25rem;
    }
    
    .nav-link {
        padding: 0.75rem 1.5rem;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .footer-links {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .hero-section {
        padding: 4rem 0 2rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .navbar-brand img {
        height: 45px;
    }
    
    .footer-about,
    .footer-links a {
        font-size: 0.95rem;
    }
}

@media (max-width: 400px) {
    .navbar-brand img {
        height: 40px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}


/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--rangoon-green);
    color: var(--citrine-white);
    padding: 1rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1050;
}

.cookie-banner a {
    color: var(--di-serrria);
    text-decoration: underline;
}

.cookie-banner .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Modal Styles */
#cookieSettingsModal .modal-header {
    border-bottom: 1px solid var(--border-color);
}

#cookieSettingsModal .modal-footer {
    border-top: 1px solid var(--border-color);
}

.custom-switch {
    padding-left: 2.5rem;
}



.auth-container {
    max-width: 500px;
    margin: 2rem auto;
    padding: 0 15px;
}

.auth-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 2rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-header h2 {
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: #7F8C8D;
}

.form-group {
    margin-bottom: 1.25rem;
}

.btn-block {
    width: 100%;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: #7F8C8D;
}

.auth-footer a {
    color: #3498DB;
}

.icon-success {
    font-size: 3rem;
    color: #2ECC71;
    margin: 1rem 0;
}

.verification-message {
    margin: 1.5rem 0;
    text-align: center;
}

.resend-link {
    margin-top: 1.5rem;
}

/* Mobile hero section adjustment */
@media (max-width: 992px) {
    .hero-section {
        margin-top: -70px !important;
        padding-top: 140px !important;
    }
}