/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d4af37;
    font-weight: 600;
}

.logo-symbol {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-text {
    font-size: 1.2rem;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #d4af37;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.instagram-btn:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    height: 520px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 50%;
    z-index: 2;
    position: relative;
}

.hero-title {
    color: #333;
    margin-bottom: 2rem;
    font-size: 2.8rem;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: #d4af37;
    color: white;
}

.btn-primary:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.btn-secondary:hover {
    background: #333;
    color: white;
}

.hero-logo {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    z-index: 1;
    max-width: 50%;
    overflow: hidden;
}

.hero-logo-img {
    width: calc(100% + 20px);
    height: auto;
    margin: -10px;
    mix-blend-mode: multiply;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* ── Single doctor: editorial layout, text left / photo right ── */
.doctors-list.single .doctor-card {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 5rem;
    align-items: center;
}

.doctors-list.single .doctor-photo-wrap {
    position: sticky;
    top: 100px;
}

.doctors-list.single .doctor-photo-wrap img,
.doctors-list.single .doctor-photo-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.doctors-list.single .doctor-name {
    font-size: 2.2rem;
    margin-bottom: 0.4rem;
}

.doctors-list.single .about-section-title {
    display: none;
}

/* ── Multiple doctors: card grid ── */
.doctors-list.multi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.doctors-list.multi .doctor-card {
    background: #f8f8f8;
    border-radius: 16px;
    overflow: hidden;
}

.doctors-list.multi .doctor-photo-wrap img,
.doctors-list.multi .doctor-photo-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.doctors-list.multi .doctor-info {
    padding: 1.5rem;
}

.doctors-list.multi .doctor-name {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

/* ── Shared ── */
.doctor-photo-placeholder {
    background: #f0f0f0;
    border: 2px dashed #ddd;
}

.doctor-title {
    font-size: 0.9rem;
    color: #d4af37;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.7;
}

.about-philosophy {
    font-size: 1.15rem;
    font-style: italic;
    color: #d4af37;
    margin-bottom: 2rem;
    font-weight: 500;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.badge {
    background: #f8f8f8;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    border-left: 3px solid #d4af37;
}

.quote {
    font-size: 1.05rem;
    font-style: italic;
    color: #666;
    border-left: 4px solid #d4af37;
    padding-left: 1.5rem;
    margin: 1.5rem 0 0;
}

@media (max-width: 900px) {
    .doctors-list.single .doctor-card {
        grid-template-columns: 1fr;
    }
    .doctors-list.single .doctor-photo-wrap {
        position: static;
        max-width: 280px;
        margin: 0 auto 2rem;
    }
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background: #f8f8f8;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.card h3 {
    color: #d4af37;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-category {
    padding: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-category::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 100px;
    height: 100px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.service-category:hover::after {
    opacity: 0.45;
}

/* Cosmetologist — lotus flower */
.service-category:nth-child(1)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23d4af37' stroke-width='1.5'%3E%3Cpath d='M32 48 C32 48 28 38 28 32 C28 24 32 16 32 16 C32 16 36 24 36 32 C36 38 32 48 32 48'/%3E%3Cpath d='M32 48 C32 48 22 40 18 34 C14 28 14 20 14 20 C14 20 22 22 26 28 C30 34 32 48 32 48'/%3E%3Cpath d='M32 48 C32 48 42 40 46 34 C50 28 50 20 50 20 C50 20 42 22 38 28 C34 34 32 48 32 48'/%3E%3Cpath d='M32 48 C32 48 16 44 10 38 C6 34 6 26 6 26 C6 26 14 28 20 32 C26 36 32 48 32 48'/%3E%3Cpath d='M32 48 C32 48 48 44 54 38 C58 34 58 26 58 26 C58 26 50 28 44 32 C38 36 32 48 32 48'/%3E%3C/svg%3E");
}

/* Anti-age — hourglass */
.service-category:nth-child(2)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23d4af37' stroke-width='2'%3E%3Cline x1='16' y1='8' x2='48' y2='8'/%3E%3Cline x1='16' y1='56' x2='48' y2='56'/%3E%3Cpath d='M18 8 C18 24 32 28 32 32 C32 28 46 24 46 8'/%3E%3Cpath d='M18 56 C18 40 32 36 32 32 C32 36 46 40 46 56'/%3E%3C/svg%3E");
}

/* Injections — droplet */
.service-category:nth-child(3)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23d4af37' stroke-width='2'%3E%3Cpath d='M32 6 C32 6 12 30 12 40 C12 52 21 58 32 58 C43 58 52 52 52 40 C52 30 32 6 32 6Z'/%3E%3Cellipse cx='32' cy='42' rx='8' ry='6'/%3E%3C/svg%3E");
}

/* Hardware — fractional dot grid */
.service-category:nth-child(4)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='%23d4af37' stroke='none'%3E%3Ccircle cx='16' cy='16' r='3'/%3E%3Ccircle cx='32' cy='16' r='3'/%3E%3Ccircle cx='48' cy='16' r='3'/%3E%3Ccircle cx='16' cy='32' r='3'/%3E%3Ccircle cx='32' cy='32' r='3'/%3E%3Ccircle cx='48' cy='32' r='3'/%3E%3Ccircle cx='16' cy='48' r='3'/%3E%3Ccircle cx='32' cy='48' r='3'/%3E%3Ccircle cx='48' cy='48' r='3'/%3E%3C/svg%3E");
}

/* Treatment — medical cross with leaf */
.service-category:nth-child(5)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23d4af37' stroke-width='2'%3E%3Cpath d='M26 18 h12 v10 h10 v12 h-10 v10 h-12 v-10 h-10 v-12 h10 z'/%3E%3Cpath d='M44 10 C50 10 56 16 54 24 C52 18 46 16 44 10Z'/%3E%3Cpath d='M44 10 C44 4 50 4 52 8'/%3E%3C/svg%3E");
}

/* Vascular — capillary network from center */
.service-category:nth-child(6)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23d4af37' stroke-width='1.5'%3E%3Ccircle cx='32' cy='32' r='4' stroke-width='2'/%3E%3Cpath d='M32 28 C30 20 24 14 18 8'/%3E%3Cpath d='M32 28 C34 20 40 14 46 8'/%3E%3Cpath d='M36 32 C42 30 50 28 58 24'/%3E%3Cpath d='M36 32 C42 36 50 40 58 44'/%3E%3Cpath d='M32 36 C30 42 26 50 22 56'/%3E%3Cpath d='M32 36 C36 42 40 50 44 56'/%3E%3Cpath d='M28 32 C22 28 14 24 8 20'/%3E%3Cpath d='M28 32 C22 36 14 42 8 48'/%3E%3C/svg%3E");
}

.service-category:hover {
    border-color: #d4af37;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.service-category h3 {
    color: #333;
    margin-bottom: 1rem;
}

.services-note {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
}

.services-note a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
}

/* Prices Section */
.prices {
    padding: 80px 0;
    background: #f8f8f8;
    text-align: center;
}


.price-ranges {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.price-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
}

.price-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    text-align: left;
}

.price-item-header span:first-child {
    text-align: left;
}

.price-item-header span:last-child {
    margin-left: auto;
    text-align: right;
    white-space: nowrap;
}

.price-item-header::after {
    content: '+';
    font-size: 1.2rem;
    color: #d4af37;
    margin-left: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.price-item.open .price-item-header::after {
    content: '−';
}

.price-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.price-item.open .price-item-body {
    max-height: 2000px;
    padding: 0 1.5rem 1.5rem;
}

.price-item-body p {
    color: #666;
    line-height: 1.6;
    text-align: left;
}

.price-list {
    width: 100%;
    text-align: left;
}

.price-list-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.5rem 0;
    border-bottom: 1px dotted #e0e0e0;
}

.price-list-row:last-child {
    border-bottom: 1px dotted #e0e0e0;
}

.price-list-row span:first-child {
    color: #333;
    text-align: left;
    flex: 1;
}

.price-list-row span:last-child {
    color: #d4af37;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 1rem;
}

.price-item span:last-child {
    font-weight: 600;
    color: #d4af37;
    font-size: 1.1rem;
}

.price-note, .price-instagram {
    color: #666;
    margin-bottom: 1rem;
}

/* Contact Form Section */
.contact-form {
    padding: 80px 0;
    background: white;
    text-align: center;
}

/* Offers Section */
.offers {
    padding: 80px 0;
    background: white;
}

.offers h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.offers-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.offers-track {
    display: flex;
    transition: transform 0.4s ease;
    gap: 2rem;
}

.offer-card {
    background: #f8f8f8;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    border: 1px solid #e0e0e0;
    flex: 0 0 calc(50% - 1rem);
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.offer-card:only-child {
    flex: 0 0 100%;
}

.offer-card:hover {
    border-color: #d4af37;
}

.offer-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #d4af37;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.offer-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
    margin-top: 2rem;
}

.offer-card p {
    color: #666;
    margin-bottom: 1rem;
}

.offer-services {
    list-style: none;
    margin-bottom: 1.5rem;
}

.offer-services li {
    padding: 0.3rem 0;
    color: #555;
    border-bottom: 1px dotted #e0e0e0;
}

.offer-services li::before {
    content: '✓ ';
    color: #d4af37;
    font-weight: 600;
}

.offer-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-top: auto;
    padding-top: 1rem;
}

.offer-old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.offer-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #d4af37;
}

.offers-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.offers-nav button {
    background: none;
    border: 2px solid #d4af37;
    color: #d4af37;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.offers-nav button:hover {
    background: #d4af37;
    color: white;
}

.offers-nav button:disabled {
    opacity: 0.3;
    cursor: default;
    background: none;
    color: #d4af37;
}

.offers-dots {
    display: flex;
    gap: 0.4rem;
}

.offers-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    transition: background 0.3s;
}

.offers-dot.active {
    background: #d4af37;
}

@media (max-width: 768px) {
    .offer-card {
        flex: 0 0 100%;
    }
}

.form {
    max-width: 500px;
    margin: 1rem auto 0;
}

.form .btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 1.1rem 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form input, .form select, .form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form input:focus, .form select:focus, .form textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.form textarea {
    resize: vertical;
    font-family: inherit;
}

.contact-instagram {
    margin-top: 2rem;
    color: #666;
}

.contact-instagram a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
}

/* Contact Info Section */
.contact-info {
    padding: 80px 0;
    background: #f8f8f8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding-left: 2rem;
}

.contact-item {
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
}

.contact-item strong {
    color: #d4af37;
    flex-shrink: 0;
    min-width: 120px;
}

.contact-item a {
    color: #333;
    text-decoration: none;
}

.contact-item a:hover {
    color: #d4af37;
}

.map-placeholder {
    height: 500px;
    min-height: 400px;
}

.map-box {
    background: #e0e0e0;
    height: 100%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #666;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo .logo-symbol, .footer-logo .logo-text {
    color: #d4af37;
}

.footer-tagline {
    color: #ccc;
    margin-top: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: #ccc;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #d4af37;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: #d4af37;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.3rem;
    margin-left: 1rem;
}
.lang-sw-btn {
    padding: 0.3rem 0.6rem;
    background: transparent;
    border: 1px solid #555;
    color: #ccc;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}
.lang-sw-btn.active {
    background: #d4af37;
    color: white;
    border-color: #d4af37;
}
.lang-sw-btn:hover {
    border-color: #d4af37;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    color: #333;
    padding: 2.5rem 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    text-align: center;
    max-width: 420px;
    width: 90%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.toast.success {
    border-top: 4px solid #d4af37;
}

.toast.error {
    border-top: 4px solid #e74c3c;
}

.toast-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.toast-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.toast-message {
    color: #666;
    line-height: 1.5;
}

.toast-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.toast-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Legal Modal */
.legal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.legal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.legal-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background: white;
    border-radius: 15px;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 2002;
    padding: 2.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.legal-modal.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.legal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.legal-close:hover {
    color: #333;
}

.legal-body h2 {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 1.5rem;
    color: #333;
}

.legal-body h3 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem;
    color: #d4af37;
}

.legal-body p {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.7;
}

.legal-body ul {
    margin: 0.5rem 0 1rem 1.5rem;
    color: #555;
}

.legal-body li {
    margin-bottom: 0.3rem;
}

/* Mobile navigation CSS */
.nav-divider, .nav-bottom-row {
    display: none;
}
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    order: 99;
}
.nav-phone {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.8rem;
        overflow: hidden;
    }

    .header-contact .phone {
        display: none;
    }

    .header-contact {
        display: none;
    }

    .lang-switcher {
        margin-left: auto;
        flex-shrink: 0;
    }

    .logo {
        white-space: nowrap;
        flex-shrink: 1;
        overflow: hidden;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.5rem;
        display: flex;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav.mobile-nav-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav .instagram-btn {
        align-self: flex-start;
    }

    .mobile-menu-toggle {
        display: block !important;
    }

    .nav-divider {
        display: block;
        width: 100%;
        height: 1px;
        background: rgba(255,255,255,0.3);
        margin-top: 0.5rem;
    }

    .nav-bottom-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        margin-top: 0.8rem;
    }
    
    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .hero-logo {
        display: none;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-left: 0;
    }

    .map-placeholder {
        margin: 0 -20px;
        width: calc(100% + 40px);
        border-radius: 0;
    }

    .map-placeholder iframe {
        border-radius: 0 !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .badges {
        grid-template-columns: 1fr;
    }
}

/* Intake widget */
.intake-widget {
    margin-bottom: 1.5rem;
}

.intake-question {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 0.75rem;
}

.intake-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.intake-chip {
    padding: 0.5rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    background: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.intake-chip:hover {
    border-color: #d4af37;
    background: #fffdf5;
}

.intake-chip:active {
    background: #d4af37;
    color: #fff;
    border-color: #d4af37;
}

