/* ===== CSS Variables & Reset ===== */
:root {
    --color-primary: #8B6F7A;
    --color-primary-light: #C4A4B0;
    --color-primary-dark: #6B4F5A;
    --color-accent: #D4A8B0;
    --color-accent-light: #F5E6EA;
    --color-bg: #FDFBFC;
    --color-bg-alt: #F7F0F3;
    --color-text: #3A2D33;
    --color-text-light: #7A6B72;
    --color-white: #FFFFFF;
    --color-border: #E8D8DE;
    --shadow-sm: 0 2px 8px rgba(139, 111, 122, 0.08);
    --shadow-md: 0 4px 20px rgba(139, 111, 122, 0.12);
    --shadow-lg: 0 8px 40px rgba(139, 111, 122, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

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

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 251, 252, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.navbar.scrolled {
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 95px;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary-dark);
}

.logo-title {
    font-size: 0.75rem;
    color: var(--color-text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition);
    border-radius: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary-dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-toggle {
    background: none;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 0.8rem;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    color: var(--color-text-light);
    transition: all var(--transition);
}

.lang-toggle:hover {
    border-color: var(--color-primary-light);
    color: var(--color-primary-dark);
}

.lang-active {
    color: var(--color-primary-dark);
    font-weight: 600;
}

.lang-inactive {
    color: var(--color-text-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-bg) 50%, #E8D0D8 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 230, 234, 0.7) 0%, rgba(253, 251, 252, 0.5) 50%, rgba(232, 208, 216, 0.7) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    opacity: 0.15;
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-greeting {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 16px;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
    font-weight: 400;
}

/* ===== Page Header ===== */
.page-header {
    padding: 160px 0 60px;
    background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-bg) 100%);
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--color-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(139, 111, 122, 0.3);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(139, 111, 122, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 12px 28px;
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ===== Sections ===== */
.section {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--color-primary-dark);
    text-align: center;
    margin-bottom: 16px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-accent);
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-description {
    text-align: center;
    color: var(--color-text);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* ===== About ===== */
.about {
    background: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
}

.about-image {
    position: sticky;
    top: 100px;
}

.doctor-photo {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    text-align: center;
}

.about-signature {
    font-family: var(--font-heading);
    font-size: 1.2rem !important;
    font-weight: 500;
    color: var(--color-primary-dark) !important;
    margin-top: 32px !important;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

/* ===== Services ===== */
.services {
    background: var(--color-bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all var(--transition);
    border: 1px solid var(--color-border);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 16px;
}

/* Expandable Service Cards */
.service-card.expandable {
    cursor: pointer;
}

.service-card.expandable .service-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-card.expandable .service-header .service-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.service-card.expandable .service-header h3 {
    margin-bottom: 0;
    flex-grow: 1;
}

.expand-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.service-card.expanded .expand-icon {
    transform: rotate(45deg);
}

.service-card.expandable .service-list {
    margin-top: 16px;
}

.service-details {
    display: none;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
    margin-top: 16px;
}

.service-card.expanded .service-details {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-details p {
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-details .btn {
    margin-top: 8px;
}

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

.service-list li {
    padding: 8px 0;
    color: var(--color-text-light);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--color-accent-light);
    position: relative;
    padding-left: 16px;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    transform: translateY(-50%);
}

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

/* ===== Booking ===== */
.booking {
    background: var(--color-bg);
    text-align: center;
}

.booking-card {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-white) 100%);
    border-radius: var(--radius-lg);
    padding: 60px 48px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.booking-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: var(--color-primary);
}

.booking-icon svg {
    width: 100%;
    height: 100%;
}

.booking-card h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 16px;
}

.booking-text {
    color: var(--color-text-light);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

/* ===== Contact ===== */
.contact {
    background: var(--color-bg-alt);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-item h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 1rem;
    color: var(--color-text);
}

.contact-item a:hover {
    color: var(--color-primary);
}

.map-container {
    margin-top: 8px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 20px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
}

.map-link:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.map-link svg {
    width: 18px;
    height: 18px;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 40px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 28px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-bg);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 3px rgba(196, 164, 176, 0.2);
    background: var(--color-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== Gallery ===== */
.gallery {
    background: var(--color-bg-alt);
}

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

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--color-bg);
}

.cta-card {
    background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-white) 100%);
    border-radius: var(--radius-lg);
    padding: 60px 48px;
    text-align: center;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
}

.cta-card h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 16px;
}

.cta-card p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

/* ===== Booking Page ===== */
.booking-page {
    background: var(--color-bg);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.booking-card-large {
    background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-white) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.booking-card-large .booking-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: var(--color-primary);
}

.booking-card-large h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 16px;
}

.booking-methods {
    margin-top: 32px;
}

.booking-methods h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 24px;
}

.method-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    margin-bottom: 16px;
    transition: all var(--transition);
}

.method-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--color-primary-light);
}

.method-icon {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.method-icon svg {
    width: 100%;
    height: 100%;
}

.method-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 4px;
}

.method-card p {
    font-size: 0.95rem;
    color: var(--color-text);
}

.method-card a {
    color: var(--color-primary);
}

.method-card a:hover {
    color: var(--color-primary-dark);
}

.method-note {
    font-size: 0.85rem !important;
    color: var(--color-text-light) !important;
    margin-top: 4px;
}

/* ===== Steps Section ===== */
.steps-section {
    background: var(--color-bg-alt);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.step-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== Footer ===== */
.footer {
    background: var(--color-primary-dark);
    color: var(--color-white);
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand .logo-name {
    color: var(--color-white);
    font-size: 1.3rem;
}

.footer-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 18px;
    border-radius: 8px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-top: 4px;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 12px;
    transition: color var(--transition);
}

.footer-phone:hover {
    color: var(--color-white);
}

.footer-phone svg {
    width: 18px;
    height: 18px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color var(--transition);
}

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

.footer-social {
    text-align: right;
}

.footer-social p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-3px);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-text {
        text-align: center;
    }

    .about-text p {
        text-align: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 40px auto 0;
    }
}

@media (max-width: 768px) {
    .nav-container {
        height: 90px;
    }

    .logo-img {
        height: 85px;
    }

    .nav-links {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #FDFBFC;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 24px;
        gap: 28px;
        transform: translateX(100%);
        transition: transform var(--transition);
        border-top: 1px solid var(--color-border);
        z-index: 999;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        background: transparent !important;
        list-style: none;
    }

    .nav-links a {
        font-size: 1.1rem;
        background: #FFFFFF !important;
        padding: 12px 24px;
        border-radius: 8px;
        width: 100%;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        display: block;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a.active {
        background: #FFFFFF !important;
        color: var(--color-primary-dark);
    }

    .nav-links a:hover {
        background: #FFFFFF !important;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .lang-toggle {
        order: -1;
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

    .section {
        padding: 64px 0;
    }

    .section-title {
        text-align: center;
    }

    .page-header {
        padding: 140px 0 40px;
    }

    .booking-card {
        padding: 40px 28px;
    }

    .booking-card-large {
        padding: 28px;
    }

    .cta-card {
        padding: 40px 28px;
    }

    .gallery-item img {
        height: 200px;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-social {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-logo {
        margin: 0 auto;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav-container {
        height: 80px;
    }

    .logo-img {
        height: 70px;
    }

    .nav-links {
        top: 80px;
        background: #FDFBFC;
    }

    .nav-links a {
        padding: 10px 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-header {
        padding: 120px 0 30px;
    }

    .footer-logo {
        height: 80px;
    }

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