/* ============================================
   CSS VARIABLES - SMARTMARKET BRAND
============================================ */
:root {
    --primary-blue: #0057A4;
    --primary-blue-dark: #003d73;
    --primary-green: #6BBE45;
    --primary-green-dark: #5ca83c;
    --primary-red: #E02222;
    --primary-orange: #FF6B00;
    --black: #000000;
    --white: #FFFFFF;
    --gray-bg: #F8FAFC;
    --gray-light: #F1F5F9;
    --gray-border: #E5E7EB;
    --gray-text: #6B7280;
    --dark-text: #1F2937;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   REMOVE ANY TOP BARS (Login/Sign Up bars)
============================================ */
.top-bar,
.header-top,
.utility-bar,
.user-bar,
.login-bar,
.pre-header,
.site-topbar,
.top-navbar,
.announcement-bar,
.site-promo,
.notification-bar,
.alert-bar,
.info-bar,
.top-announcement,
.site-announcement,
div[class*="top"][class*="bar"],
div[class*="announcement"],
div[class*="notification"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    width: 0 !important;
}

/* ============================================
   BASE STYLES & RESETS
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

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

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   BUTTON STYLES
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 87, 164, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 87, 164, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(107, 190, 69, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 190, 69, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #1DA851);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #1DA851, #25D366);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* ============================================
   HEADER - CLEAN DESIGN
============================================ */
.site-header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--gray-border);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    position: relative;
}

/* Logo Section - LEFT */
.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

.logo-main {
    height: 70px;
    width: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    font-weight: 800;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 87, 164, 0.15);
}

.logo-main::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
}

.logo-link:hover .logo-main::before {
    animation: logoShine 1.5s ease;
}

@keyframes logoShine {
    100% { transform: translateX(100%); }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
    letter-spacing: -0.5px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.logo-domain {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    background: rgba(107, 190, 69, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 5px;
}

/* Navigation Section - RIGHT */
.nav-section {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav {
    display: flex;
    gap: 35px;
}

.nav-link {
    font-weight: 600;
    font-size: 16px;
    color: var(--dark-text);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
    border-radius: 3px;
    transition: var(--transition);
}

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

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

.nav-link.active {
    color: var(--primary-blue);
    font-weight: 700;
}

.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-signin {
    padding: 10px 24px;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    font-weight: 600;
}

.btn-signin:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-signup {
    padding: 10px 24px;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary-blue);
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    border-radius: var(--radius-sm);
}

.mobile-toggle:hover {
    background-color: var(--gray-light);
}

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue), #0078D7);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.property-type-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.type-tab {
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: var(--radius);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-blue);
    min-width: 180px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.type-tab.active {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.type-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* ============================================
   PROPERTY LISTINGS
============================================ */
.section-properties {
    padding: 100px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-text);
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.7;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.property-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-border);
}

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

.property-image {
    height: 240px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.5s ease;
}

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

.property-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-green);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.property-type-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.property-content {
    padding: 25px;
}

.property-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.property-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
    line-height: 1.3;
}

.property-location {
    font-size: 15px;
    color: var(--gray-text);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.property-features {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
    margin-bottom: 20px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.feature-text {
    font-size: 13px;
    color: var(--gray-text);
    font-weight: 500;
}

/* ============================================
   ADVANCED SEARCH
============================================ */
.search-section {
    background: var(--gray-bg);
    padding: 100px 0;
}

.search-container {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    max-width: 1000px;
    margin: 0 auto;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 10px;
    font-size: 15px;
}

.form-select, .form-input {
    padding: 15px;
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: var(--white);
}

.form-select:focus, .form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 87, 164, 0.1);
}

.search-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

/* ============================================
   FEATURED PROPERTIES
============================================ */
.featured-section {
    padding: 100px 0;
    background: var(--white);
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 0 50px;
}

.category-tab {
    padding: 12px 28px;
    background: var(--white);
    border: 2px solid var(--gray-border);
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

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

.category-tab:hover:not(.active) {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* ============================================
   ABOUT SECTION
============================================ */
.about-section {
    padding: 100px 0;
    background: var(--gray-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    height: 500px;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-image:hover {
    transform: scale(1.02);
}

.about-text h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--dark-text);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-green);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

/* ============================================
   CONTACT SECTION
============================================ */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-size: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    color: var(--primary-blue);
    font-size: 20px;
    margin-top: 3px;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.contact-value {
    color: var(--gray-text);
}

.business-hours {
    margin-top: 40px;
}

.contact-form-container h3 {
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-size: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.footer-domain {
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 600;
}

.footer-contact {
    margin-top: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-icon {
    color: var(--primary-green);
    font-size: 16px;
    width: 20px;
}

.footer-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-green);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.tiktok-link {
    background: #000000;
}

.tiktok-link:hover {
    background: #25F4EE;
}

.referral-card {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    padding: 25px;
    border-radius: var(--radius);
    margin-top: 25px;
}

.referral-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.referral-text {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links-bottom {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-link-bottom {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-link-bottom:hover {
    color: var(--primary-green);
}

/* ============================================
   MODALS (Sign Up / Sign In)
============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background: var(--white);
    margin: 50px auto;
    width: 90%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    padding: 40px;
    text-align: center;
    color: var(--white);
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.modal-subtitle {
    opacity: 0.9;
    font-size: 16px;
}

.modal-body {
    padding: 40px;
}

.user-role-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.user-role-card {
    border: 2px solid var(--gray-border);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.user-role-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.user-role-card.selected {
    border-color: var(--primary-green);
    background: rgba(107, 190, 69, 0.05);
}

.user-role-icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.user-role-card.selected .user-role-icon {
    color: var(--primary-green);
}

.user-role-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-text);
}

.user-role-desc {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.4;
}

.form-input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 87, 164, 0.1);
}

.form-checkbox {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    margin-top: 3px;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--gray-text);
}

.form-link {
    color: var(--primary-blue);
    font-weight: 600;
    cursor: pointer;
}

.form-link:hover {
    text-decoration: underline;
}

/* ============================================
   WHATSAPP FLOAT BUTTON
============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366, #1DA851);
    color: var(--white);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* ============================================
   MOBILE NAVIGATION
============================================ */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 999;
    padding: 100px 30px 30px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.mobile-nav-link {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-text);
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-border);
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

/* ============================================
   DOMAIN-SPECIFIC STYLES
============================================ */
.domain-highlight {
    color: var(--primary-green);
    font-weight: 700;
}

.domain-link {
    color: var(--primary-green);
    text-decoration: underline;
}

.domain-link:hover {
    color: var(--primary-green-dark);
}

.domain-badge {
    display: inline-block;
    background: rgba(107, 190, 69, 0.1);
    color: var(--primary-green);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-left: 5px;
}

/* ============================================
   LOADING ANIMATION
============================================ */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--gray-light);
    border-top: 4px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}