/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation Bar */
.navbar {
    background: transparent;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.hero .nav-container {
    display: block;
    padding: 0 2rem;
    width: 100%;
}

/* Left Side - Logo and Brand */
.nav-left {
    flex: 0 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
    transition: opacity 0.3s ease;
}

.brand:hover {
    opacity: 0.8;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    letter-spacing: -0.5px;
}

/* Middle - Navigation Menu */
.nav-middle {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    list-style: none;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background: #eff6ff;
    color: #2563eb;
    padding-left: 1.5rem;
}

/* Right Side - Language and Login */
.nav-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    color: #4b5563;
    font-weight: 500;
}

.language-selector:hover {
    color: #2563eb;
}

.language-selector i {
    font-size: 1.25rem;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #4b5563;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.login-btn:hover {
    color: #2563eb;
}

.login-btn i {
    font-size: 1.25rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #4b5563;
    padding: 0.5rem;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 80px);
}

.hero {
    background: #ffffff;
    padding: 3rem 0;
    text-align: center;
    min-height: calc(100vh - 80px);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    min-width: 170px;
    height: 48px;
}

.hero-btn.primary {
    background: #1170F8;
    color: white;
    border: 2px solid #1170F8;
}

.hero-btn.primary:hover {
    background: #0d5dd7;
    border-color: #0d5dd7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 112, 248, 0.3);
}

.hero-btn.outline {
    background: transparent;
    color: #4b5563;
    border: 2px solid #4b5563;
}

.hero-btn.outline:hover {
    color: #111827;
    border-color: #111827;
    background: #f9fafb;
}

.hero-image {
    margin-top: -60px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    user-select: none;
}

.trustpilot-badge {
    position: absolute;
    bottom: 20px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.trustpilot-badge span {
    font-size: 1.1rem;
    font-weight: 400;
    color: #333;
    white-space: nowrap;
}

.trustpilot-badge span strong {
    font-weight: 700;
}

.trustpilot-badge img {
    height: 28px;
    width: auto;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-middle {
        display: none;
    }

    .nav-right {
        gap: 1rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .login-btn span {
        display: none;
    }

    .language-selector span {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .brand-name {
        font-size: 1.25rem;
    }

    .logo {
        height: 35px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}
