/* Base styles */
body {
    font-family: 'Segoe UI', 'Inter', 'Roboto', Arial, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #f3f4f6 100%);
    color: #222;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    font-size: 1.08rem;
}

a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #bfa100;
    text-decoration: underline;
}

header.elite-header {
    background: linear-gradient(90deg, #fffbe6 0%, #f7f7fa 100%);
    box-shadow: 0 2px 12px rgba(34,34,34,0.07);
    border-bottom: 2px solid #FFD700;
    padding-bottom: 1.5em;
}

.logo-header {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(34,34,34,0.08);
    background: #fff;
    padding: 0.3em;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5em;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2em 0 0.5em 0;
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 2em;
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 500;
}

.nav-menu li a {
    color: #222;
    padding: 0.4em 0.8em;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.nav-menu li a:hover, .nav-menu li a:focus {
    background: #FFD700;
    color: #222;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    margin-left: 1em;
    cursor: pointer;
}

@media (max-width: 900px) {
    .nav-menu {
        flex-direction: column;
        background: #fffbe6;
        position: absolute;
        top: 70px;
        right: 1.5em;
        min-width: 180px;
        box-shadow: 0 4px 16px rgba(34,34,34,0.13);
        border-radius: 10px;
        z-index: 100;
        padding: 1em 0.5em;
    }
    .menu-toggle {
        display: flex;
        align-items: center;
    }
}

.welcome-banner {
    text-align: center;
    margin: 2.5em 0 2em 0;
    padding: 2.5em 1em;
    background: linear-gradient(90deg, #fffbe6 0%, #f7f7fa 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(34,34,34,0.08);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s, transform 0.8s;
}
.welcome-banner.show {
    opacity: 1;
    transform: translateY(0);
}
.welcome-title {
    font-size: 2.3em;
    color: #222;
    margin-bottom: 0.3em;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.welcome-desc {
    color: #444;
    font-size: 1.15em;
    margin-bottom: 1.5em;
}
.find-us-btn {
    display: inline-block;
    background: linear-gradient(90deg, #FFD700 60%, #ffe066 100%);
    color: #222;
    font-weight: 600;
    padding: 0.8em 2.2em;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(34,34,34,0.10);
    font-size: 1.1em;
    border: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.find-us-btn:hover, .find-us-btn:focus {
    background: #ffe066;
    color: #bfa100;
    box-shadow: 0 4px 16px rgba(34,34,34,0.13);
}

section {
    background: #fff;
    margin: 2.5em auto;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(34,34,34,0.06);
    padding: 2.2em 1.5em;
    max-width: 950px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s, transform 0.8s;
}
section.animate {
    opacity: 1;
    transform: translateY(0);
}

h2 {
    color: #FFD700;
    font-size: 1.7em;
    margin-bottom: 0.7em;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.company-info strong, .gold {
    color: #FFD700;
    font-weight: 600;
}

.why-choose {
    list-style: disc inside;
    padding-left: 1.2em;
    color: #444;
    font-size: 1.08em;
}
.why-choose li {
    margin-bottom: 0.5em;
}

.implants-list ul {
    columns: 2 300px;
    column-gap: 2em;
    list-style: square inside;
    color: #333;
    font-size: 1.08em;
    padding-left: 1.2em;
}
@media (max-width: 700px) {
    .implants-list ul {
        columns: 1;
    }
}

.contact-details {
    margin-top: 1.5em;
    font-size: 1.08em;
    color: #333;
}

.contact-form {
    background: #f7f7fa;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(34,34,34,0.07);
    padding: 1.5em 1em;
    margin-bottom: 2em;
    max-width: 420px;
}
.contact-form label {
    display: block;
    margin-bottom: 0.3em;
    color: #222;
    font-weight: 500;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.7em;
    margin-bottom: 1em;
    border: 1.5px solid #FFD700;
    border-radius: 6px;
    font-size: 1em;
    background: #fff;
    color: #222;
    transition: border 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
    border-color: #bfa100;
    outline: none;
}
.contact-form button {
    background: linear-gradient(90deg, #FFD700 60%, #ffe066 100%);
    color: #222;
    font-weight: 600;
    padding: 0.7em 2em;
    border-radius: 8px;
    border: none;
    font-size: 1.08em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.contact-form button:hover, .contact-form button:focus {
    background: #ffe066;
    color: #bfa100;
}

.location-card {
    border: 1.5px solid #FFD700;
    background: #fffbe6;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(34,34,34,0.07);
    margin-bottom: 1.5em;
}

.elite-footer {
    background: #222;
    color: #FFD700;
    text-align: center;
    padding: 1.5em 0;
    font-size: 1.08em;
    border-top: 2px solid #FFD700;
    margin-top: 3em;
    letter-spacing: 0.01em;
    font-weight: 500;
}

::-webkit-scrollbar {
    width: 10px;
    background: #fffbe6;
}
::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 8px;
}