/* ============================================
   DOCTOR-ACASA.RO - Modern Minimalist Design
   Inspired by Tailark - Clean, Professional
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Colors - Pink & Orange Palette */
    --primary-pink: #FF6B9D;
    --primary-orange: #FF8C42;
    --accent-coral: #FF7F66;
    
    /* Neutrals */
    --background: #ffffff;
    --foreground: #0a0a0a;
    --muted: #f5f5f5;
    --muted-foreground: #737373;
    --border: #e5e5e5;
    --input-border: #e0e0e0;
    
    /* Semantic Colors */
    --card-bg: #ffffff;
    --card-hover: #fafafa;
    
    /* Spacing */
    --radius: 1rem;
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    
    /* Gradient */
    --gradient-primary: linear-gradient(135deg, #FF6B9D 0%, #FF8C42 100%);
    --gradient-hero: linear-gradient(to right, #ffffff 35%, transparent 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--foreground);
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3rem);
    letter-spacing: -0.02em;
    font-weight: 800;
}

h2 {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    letter-spacing: -0.01em;
    font-weight: 700;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

p {
    color: var(--muted-foreground);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.15s ease;
}

/* Container & Layout */
.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .section {
        padding: 7rem 0;
    }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px dashed var(--border);
}

@media (min-width: 1024px) {
    .header {
        position: relative;
        background: transparent;
        backdrop-filter: none;
        border-bottom: none;
    }
}

.header-top {
    background: linear-gradient(135deg, #fff5f8 0%, #fff8f3 100%);
    padding: 0.5rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--border);
}

.header-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: var(--muted-foreground);
}

.header-contact a {
    color: var(--primary-pink);
    font-weight: 600;
}

.header-contact a:hover {
    color: var(--primary-orange);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 1rem 0;
    }
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
        align-items: center;
    }
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.15s ease;
}

.nav-menu a:hover {
    color: var(--foreground);
}

.nav-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--foreground);
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    overflow: hidden;
    padding: 7rem 0 4rem;
}

@media (min-width: 1024px) {
    .hero {
        padding: 5rem 0;
        min-height: 600px;
        display: flex;
        align-items: center;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 40rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-content {
        max-width: 36rem;
        text-align: left;
    }
}

.hero h1 {
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: var(--muted-foreground);
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0.25rem;
    padding-right: 0.75rem;
    margin: 0 auto 2.5rem;
    background: var(--background);
}

@media (min-width: 1024px) {
    .badge {
        margin: 0 0 2.5rem 0;
    }
}

.badge-label {
    background: var(--muted);
    border-radius: calc(var(--radius) - 0.25rem);
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.badge-divider {
    width: 1px;
    height: 1rem;
    background: var(--border);
}

/* Hero Background Image */
.hero-image {
    position: absolute;
    inset: 0;
    padding: 0.75rem;
}

@media (min-width: 1024px) {
    .hero-image {
        border-radius: 1.5rem;
    }
}

.hero-image::before {
    content: '';
    position: absolute;
    z-index: 1;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--background);
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--muted);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (min-width: 1024px) {
    .cta-buttons {
        justify-content: flex-start;
    }
}

/* ============================================
   EMAIL FORM
   ============================================ */

.email-form {
    max-width: 28rem;
    margin: 2.5rem auto;
}

@media (min-width: 1024px) {
    .email-form {
        margin: 3rem 0;
    }
}

.input-group {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    background: var(--background);
    border: 1px solid var(--input-border);
    border-radius: var(--radius);
    padding-right: 0.25rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.15s ease;
}

.input-group:focus-within {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.input-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-foreground);
    pointer-events: none;
}

.input-group input {
    height: 3.5rem;
    width: 100%;
    background: transparent;
    border: none;
    padding-left: 3rem;
    font-size: 0.875rem;
    color: var(--foreground);
}

.input-group input:focus {
    outline: none;
}

.input-group input::placeholder {
    color: var(--muted-foreground);
}

/* ============================================
   CARDS & GRID
   ============================================ */

.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.card:hover {
    border-color: var(--primary-pink);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.card-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.card-price {
    font-size: 1.125rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-pink);
}

.card-link:hover {
    gap: 0.75rem;
}

/* ============================================
   FEATURES GRID
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-block {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-block h4 {
    margin-bottom: 0.5rem;
}

.feature-block p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ============================================
   LOCATION CARDS
   ============================================ */

.location-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
}

.location-card:hover {
    border-color: var(--primary-pink);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.location-card h3,
.location-card h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.location-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.location-card a {
    color: var(--primary-pink);
    font-weight: 600;
    font-size: 0.875rem;
}

/* ============================================
   SECTION UTILITIES
   ============================================ */

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.text-center {
    text-align: center;
}

.text-balance {
    text-wrap: balance;
}

.mt-2 {
    margin-top: 2rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--foreground);
}

.faq-answer {
    margin-top: 1rem;
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.faq-answer ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin: 0.25rem 0;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--muted);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.footer-section a:hover {
    color: var(--foreground);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* ============================================
   FLOATING CTA
   ============================================ */

.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 999;
}

.floating-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* ============================================
   BREADCRUMBS
   ============================================ */

.breadcrumbs {
    padding: 1rem 0;
    margin-top: 80px;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.breadcrumbs a {
    color: var(--primary-pink);
}

.breadcrumbs a:hover {
    color: var(--primary-orange);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1023px) {
    .hero {
        padding: 7rem 0 3rem;
    }
    
    .hero-image {
        display: none;
    }
}
