/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #30b74b;
    --green-dark: #1db94f;
    --black: #0a0a0a;
    --gray-900: #1a1a1a;
    --gray-800: #2a2a2a;
    --gray-700: #3a3a3a;
    --gray-500: #6a6a6a;
    --gray-300: #9a9a9a;
    --gray-100: #e0e0e0;
    --white: #ffffff;
    --error: #ef4444;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family:'Gilory', sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    min-height: 100vh;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--black);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.6;
}

.back-link {
    font-size: 14px;
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--black);
}

/* ===== MAIN LAYOUT ===== */
.main {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: start;
}
/* ========================================
   NAVIGATION - COMPLETE & WORKING
   ======================================== */

/* Navbar Container */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
    background: #000000;
    color: #0a0a0a;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

/* Nav Container */
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

/* Logo */
.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 10002;
    position: relative;
    white-space: nowrap;
}

.nav-logo:hover {
    color: #30b74b;
    transform: translateY(-1px);
}

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #6a6a6a;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #30b74b, #1db94f);
    transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: #30b74b;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Desktop CTA Button */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #30b74b 0%, #1db94f 100%);
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(48, 183, 75, 0.25);
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(48, 183, 75, 0.35);
    background: linear-gradient(135deg, #1db94f 0%, #30b74b 100%);
}

.nav-cta:active {
    transform: translateY(0);
}

.nav-cta i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.nav-cta:hover i {
    transform: translateX(4px);
}

/* ========================================
   HAMBURGER MENU BUTTON
   ======================================== */
.hamburger-menu {
    display: none; /* Hidden on desktop */
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    z-index: 10002;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    background: rgba(48, 183, 75, 0.08);
}

.hamburger-menu:active {
    transform: scale(0.95);
}

.hamburger-menu i {
    font-size: 24px;
    color: #000000; /* WHITE - visible on dark navbar */
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: block;
}

.hamburger-menu:hover i {
    color: #30b74b; /* Green on hover */
}

/* Hamburger Active State (when menu is open) */
.hamburger-menu.active i::before {
    content: "\f00d"; /* Font Awesome X icon */
    color: #30b74b;
}

.hamburger-menu.active {
    background: rgba(48, 183, 75, 0.12);
}

/* ========================================
   MOBILE SIDEBAR
   ======================================== */

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
    z-index: 10001;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    right: 0;
}

/* Custom Scrollbar */
.mobile-sidebar::-webkit-scrollbar {
    width: 6px;
}

.mobile-sidebar::-webkit-scrollbar-track {
    background: #fafafa;
}

.mobile-sidebar::-webkit-scrollbar-thumb {
    background: #30b74b;
    border-radius: 3px;
}

.mobile-sidebar::-webkit-scrollbar-thumb:hover {
    background: #1db94f;
}

/* Sidebar Header */
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: sticky;
    top: 0;
    z-index: 10;
}

.sidebar-logo {
    font-weight: 800;
    font-size: 1.375rem;
    letter-spacing: -0.02em;
    color: #0a0a0a;
}

.close-sidebar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #30b74b, #1db94f);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(48, 183, 75, 0.3);
}

.close-sidebar:hover {
    background: linear-gradient(135deg, #1db94f, #30b74b);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 16px rgba(48, 183, 75, 0.4);
}

.close-sidebar:active {
    transform: rotate(90deg) scale(0.95);
}

/* Sidebar Navigation Links */
.sidebar-links {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0;
    flex: 1;
    gap: 0.25rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.125rem 1.5rem;
    text-decoration: none;
    color: #0a0a0a;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    position: relative;
    margin: 0 0.5rem;
    border-radius: 0 12px 12px 0;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(48, 183, 75, 0.1) 0%, 
        rgba(48, 183, 75, 0.05) 50%,
        transparent 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 0 12px 12px 0;
}

.sidebar-link:hover::before,
.sidebar-link.active::before {
    width: 100%;
}

.sidebar-link:hover,
.sidebar-link.active {
    color: #30b74b;
    border-left-color: #30b74b;
    padding-left: 2rem;
}

.sidebar-link i {
    font-size: 1.25rem;
    width: 24px;
    min-width: 24px;
    color: #30b74b;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sidebar-link:hover i {
    transform: scale(1.2) rotate(5deg);
}

.sidebar-link span {
    flex: 1;
}

/* Sidebar CTA */
.sidebar-cta {
    margin: 1.5rem;
    padding: 1.125rem 1.5rem;
    background: linear-gradient(135deg, #30b74b 0%, #1db94f 100%);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 8px 20px rgba(48, 183, 75, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.sidebar-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.sidebar-cta:hover::before {
    left: 100%;
}

.sidebar-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(48, 183, 75, 0.4);
}

.sidebar-cta:active {
    transform: translateY(-1px);
}

.sidebar-cta i {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.sidebar-cta:hover i {
    transform: translateX(4px);
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Tablet & Mobile (1024px and below) */
@media (max-width: 1024px) {
    .nav-menu,
    .nav-cta {
        display: none;
    }

    .hamburger-menu {
        display: flex !important; /* Show hamburger on tablet and mobile */
    }
}

/* Mobile specific (768px and below) */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex !important;
    }

    .hamburger-menu i {
        color: #ffffff !important; /* WHITE for visibility on dark navbar */
        font-size: 24px !important;
    }
    
    .back-link {
        display: none !important;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .nav-container {
        padding: 0.875rem 1rem;
    }

    .nav-logo {
        font-size: 1.25rem;
    }

    .hamburger-menu {
        width: 44px;
        height: 44px;
        display: flex !important; /* Force display */
    }

    .hamburger-menu i {
        font-size: 22px !important;
        color: #ffffff !important; /* WHITE icon */
    }
}
/* ========================================
   ACCESSIBILITY & PERFORMANCE
   ======================================== */

/* Focus States for Keyboard Navigation */
.nav-link:focus-visible,
.sidebar-link:focus-visible,
.nav-cta:focus-visible,
.sidebar-cta:focus-visible,
.hamburger-menu:focus-visible,
.close-sidebar:focus-visible {
    outline: 3px solid rgba(48, 183, 75, 0.5);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .mobile-sidebar,
    .sidebar-overlay,
    .hamburger-menu {
        display: none !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .navbar {
        border-bottom: 2px solid #0a0a0a;
    }

    .nav-link,
    .sidebar-link {
        font-weight: 700;
    }
}

/* ===== INFO SECTION ===== */
.info-section {
    position: sticky;
    top: 140px;
}

.label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 24px;
}

.title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--black);
    margin-bottom: 24px;
}

.description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 64px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-300);
}

.contact-value {
    font-size: 16px;
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--green);
}

/* ===== FORM SECTION ===== */
.form-section {
    background: var(--white);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-field-group {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
}

.field-country {
    grid-column: 1;
}

.field-phone {
    grid-column: 2;
}

.field-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: 0.3px;
}

.optional {
    font-weight: 400;
    color: var(--gray-300);
}

.field-input,
.field-select,
.field-textarea {
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
    font-family: inherit;
    color: var(--black);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-100);
    outline: none;
    transition: border-color 0.3s ease;
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
    border-bottom-color: var(--green);
}

.field-input.error,
.field-select.error,
.field-textarea.error {
    border-bottom-color: var(--error);
}

.field-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236a6a6a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 12px;
    padding-right: 20px;
}

.field-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.field-error {
    font-size: 12px;
    color: var(--error);
    min-height: 16px;
}

/* Radio Buttons */
.radio-group {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    border: 1px solid var(--gray-100);
    cursor: pointer;
    accent-color: var(--green);
}

.radio-text {
    font-size: 15px;
    color: var(--black);
}

/* Submit Button */
.submit-button {
    width: 100%;
    padding: 18px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--white);
    background: var(--green);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
    position: relative;
}

.submit-button:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.submit-button.loading .button-text {
    opacity: 0;
}

.submit-button.loading .button-loader {
    display: block;
}

.button-loader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== SUCCESS MODAL ===== */
.success-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.success-modal.show {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.success-content {
    background: var(--white);
    border-radius: 8px;
    padding: 48px;
    max-width: 440px;
    text-align: center;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-check {
    width: 64px;
    height: 64px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 600;
    margin: 0 auto 24px;
}

.success-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
}

.success-text {
    font-size: 16px;
    color: var(--gray-500);
    margin-bottom: 32px;
}

.success-button {
    width: 100%;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    background: var(--black);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-button:hover {
    background: var(--gray-900);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .info-section {
        position: static;
    }

    .title {
        font-size: 40px;
    }

    .form-field-group {
        grid-template-columns: 120px 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 20px 24px;
    }

    .main {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .container {
        padding: 0 24px;
        gap: 48px;
    }

    .title {
        font-size: 32px;
    }

    .description {
        font-size: 16px;
        margin-bottom: 48px;
    }

    .form-field-group {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .field-country,
    .field-phone {
        grid-column: 1;
    }

    .radio-group {
        flex-direction: column;
        gap: 16px;
    }

    .success-content {
        margin: 24px;
        padding: 32px;
    }

    .success-title {
        font-size: 20px;
    }
}

/* ===== SEARCHABLE COUNTRY SELECTOR ===== */
.country-selector {
    position: relative;
    width: 100%;
}

.country-selector-btn {
    width: 100%;
    height: 56px;
    padding: 0 16px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.country-selector-btn:hover {
    border-color: var(--gray-300);
}

.country-selector-btn:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(48, 183, 75, 0.1);
}

.selected-country {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--black);
}

.country-flag {
    font-size: 24px;
    line-height: 1;
}

.country-code {
    font-weight: 500;
}

.dropdown-arrow {
    font-size: 10px;
    color: var(--gray-500);
    transition: transform 0.3s ease;
}

.country-selector-btn.open .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.country-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 320px;
    display: flex;
    flex-direction: column;
}

.country-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.country-search-wrapper {
    padding: 12px;
    border-bottom: 1px solid var(--gray-100);
}

.country-search {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.country-search:focus {
    outline: none;
    border-color: var(--green);
}

.country-list {
    overflow-y: auto;
    max-height: 250px;
}

.country-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.country-option:hover,
.country-option.highlighted {
    background: var(--gray-100);
}

.country-option.selected {
    background: rgba(48, 183, 75, 0.1);
    color: var(--green);
}

.country-option-flag {
    font-size: 20px;
    flex-shrink: 0;
}

.country-option-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.country-option-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
}

.country-option-code {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
}

.country-option.selected .country-option-name,
.country-option.selected .country-option-code {
    color: var(--green);
}

/* No results */
.country-no-results {
    padding: 24px;
    text-align: center;
    color: var(--gray-500);
    font-size: 14px;
}

/* Scrollbar */
.country-list::-webkit-scrollbar {
    width: 6px;
}

.country-list::-webkit-scrollbar-track {
    background: transparent;
}

.country-list::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 3px;
}

.country-list::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .country-dropdown {
        max-height: 280px;
    }
    
    .country-list {
        max-height: 210px;
    }
    
    .country-option {
        padding: 14px 16px;
    }
}
