* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Top Menu */
.top-menu {
    background: #000;
    padding: 8px 0;
    position: relative;
    z-index: 1000;
}

.top-menu-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 24px;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: #F4B942;
}

/* Header */
.header {
    background: linear-gradient(135deg, #F4B942 0%, #F7D154 100%);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
    color: #F7D154;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F4B942 0%, #F7D154 100%);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #F4B942;
    color: #000;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Business Types Section */
.business-types {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 60px;
}

.business-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.business-card:hover {
    transform: translateY(-5px);
}

.business-card h3 {
    font-size: 2rem;
    color: #F4B942;
    margin-bottom: 20px;
}

.business-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

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

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F4B942;
    font-weight: bold;
    font-size: 1.2rem;
}

.features-list li:last-child {
    border-bottom: none;
}

.learn-more {
    display: inline-block;
    color: #F4B942;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.advantage-item {
    text-align: center;
    padding: 30px 20px;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: #F4B942;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.advantage-item h4 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 10px;
}

.advantage-item p {
    color: #666;
}

/* Special Offer */
.special-offer {
    background: linear-gradient(135deg, #F4B942 0%, #F7D154 100%);
    padding: 60px 0;
    text-align: center;
    margin: 40px 0;
}

.special-offer h3 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 20px;
}

.special-offer p {
    font-size: 1.2rem;
    color: #333;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

.contact-link {
    display: inline-block;
    background: #F4B942;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s;
}

.contact-link:hover {
    transform: translateY(-2px);
}

/* App Showcase */
.app-showcase {
    padding: 80px 0;
    background: white;
}

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

.showcase-text h3 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 20px;
}

.showcase-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.app-image {
    width: 100%;
    height: 400px;
    background: #f0f0f0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.2rem;
    border: 2px dashed #ddd;
}

/* Footer */
.footer {
    background: #000;
    color: #F4B942;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    color: #ccc;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 18px;
}

.close-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.close-button:hover {
    background: #f0f0f0;
}

/* Modal Tabs */
.modal-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
}

.tab-button {
    flex: 1;
    padding: 15px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.tab-button:hover {
    background: #f8f9fa;
    color: #333;
}

.tab-button.active {
    color: #F4B942;
    border-bottom-color: #F4B942;
}

/* Tab Content */
.tab-content {
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

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

/* Search Box */
.search-box {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.search-box input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background: #f8f9fa;
}

.search-box input:focus {
    outline: none;
    border-color: #F4B942;
    background: white;
}

/* Items List */
.items-list {
    padding: 0;
}

.item {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.item:hover {
    background: #f8f9fa;
}

.item.selected {
    background: #F4B942;
    color: #000;
}

.item .flag {
    font-size: 20px;
}

.item .name {
    flex: 1;
}

.item .native-name {
    color: #999;
    font-size: 12px;
}

.item .currency {
    color: #F4B942;
    font-weight: bold;
    font-size: 12px;
}

.item.selected .currency {
    color: #000;
}

/* Selectors Container */
.selectors-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

.selector-item {
    position: relative;
    display: inline-block;
}

.selector-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 6px;
    color: #F4B942;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    /* min-width: 120px; */
}

.selector-button:hover {
    background: #333;
}

.selector-button.active .arrow {
    transform: rotate(180deg);
}

.arrow {
    font-size: 10px;
    transition: transform 0.3s;
}

/* Dropdowns */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000;
    border: 1px solid #333;
    border-radius: 8px;
    min-width: 200px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 1001;
    margin-top: 4px;
}

.dropdown.show {
    display: block;
}

.dropdown-item {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.3s;
    border-bottom: 1px solid #222;
}

.dropdown-item:hover {
    background: #333;
}

.dropdown-item.selected {
    background: #F4B942;
    color: #000;
}

.dropdown-item .flag {
    font-size: 18px;
}

.dropdown-item .name {
    flex: 1;
}

.dropdown-item .native-name {
    color: #999;
    font-size: 12px;
}

.dropdown-item .currency {
    color: #F4B942;
    font-weight: bold;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .logo-text {
        font-size: 18px;
    }

    .showcase-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-links {
        flex-direction: column;
        align-items: center;
    }

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

    .top-menu-content {
        flex-direction: row;
        gap: 10px;
    }

    .selectors-container {
        flex-direction: row;
        gap: 8px;
        
    }
    
    .selector-item {
        /* padding: 5px 10px; */
    }
    
    .selector-button {
        justify-content: center;
        padding: 5px 10px;
       
    }
} 