/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; */
    font-family: "Lato", sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* === COLOR VARIABLES === */
:root {
    --primary: #00A79D;
    --primary-light: #E6F7F6;
    --dark-text: #333333;
    --light-text: #666666;
    --white: #FFFFFF;
    --light-bg: #F5FAFA;
    --footer-bg: #00A79D;
}

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

/* === HEADER === */
header {
    padding: 20px 0;
    background-color: var(--white);
}

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

.logo {
    height: 40px;
}

.app-links {
    display: flex;
    gap: 20px;
}

.app-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    text-decoration: none;
    color: var(--dark-text);
}

/* === HERO SECTION === */
.top-section{
    background-color: var(--primary-light);
    background-image: url(./assets/Header-BG.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 0 center;
}
.hero {
    
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
    background-size: 80px 80px;
    opacity: 0.1;
    top: 0;
    left: 0;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 30px;
}

.hero-image {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    opacity: 0.8;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #008e85;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 167, 157, 0.2);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

/* === SEARCH SECTION === */
.search-section {
    padding: 50px 0;
    text-align: center;
}

.search-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.search-section p {
    margin-bottom: 30px;
    color: var(--light-text);
}

.search-container {
    background-color: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    max-width: 700px;
    margin: 0 auto 20px;
    gap: 10px;
}

.search-dropdown {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    background: white url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23999999" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"/></svg>') no-repeat right 15px center;
    background-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    color: var(--light-text);
    cursor: pointer;
}

.btn-search {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
    cursor: pointer;
}

.no-provider {
    font-size: 14px;
    color: var(--light-text);
    margin-top: 20px;
}

/* === FEATURES SECTION === */
.features {
    padding: 80px 0;
    background-color: var(--white);
}

.features-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.features-content {
    flex: 1;
}

.features-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.features h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--dark-text);
}

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

.feature-icon {
    background-color: var(--primary-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-text);
}

.feature-text p {
    color: var(--light-text);
    font-size: 16px;
}

.features-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 15px;
    padding: 30px;
    background-color: var(--light-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-icon {
    color: var(--primary);
    font-size: 24px;
    flex-shrink: 0;
}

/* === SIGNUP SECTION === */
.signup-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    position: relative;
}

.signup-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.signup-content {
    flex: 1;
}

.signup-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.signup-content p {
    color: var(--light-text);
    margin-bottom: 20px;
}

.signup-form {
    flex: 1;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.signup-form h2 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--dark-text);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-block {
    width: 100%;
}

.login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--light-text);
}

.login-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* === FOOTER === */
footer {
    background-color: var(--footer-bg);
    color: white;
    padding: 60px 0 30px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: white;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
}

.btn-subscribe {
    background-color: var(--primary);
    color: white;
    border: 1px solid white;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links-bottom {
    margin-top: 10px;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 10px;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .features-container,
    .signup-container {
        flex-direction: column;
    }

    .features-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .search-container {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
}