    :root {
      --bg-body: #F2F7FA;    
      --bg-white: #FFFFFF;  
      --bg-surface: #FFFFFF;
      --text-main: #1A2B3C;    
      --text-muted: #546575;   
      --accent: #CBE6A3;       
      --accent-dark: #3A5220;
      --radius: 12px;
      --shadow: 0 4px 20px rgba(0,0,0,0.06);
      
      --container: 1240px;
      --radius-md: 16px;
      --radius-lg: 24px;
      
      --font-serif: 'Fraunces', serif;
      --font-sans: 'Outfit', sans-serif;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    
    body {
      background-color: var(--bg-body);
      color: var(--text-main);
      font-family: var(--font-sans);
      line-height: 1.6;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    @media (max-width: 767px) {
      body { padding-bottom: 70px; }
    }

    h1, h2, h3 {
      font-family: var(--font-serif);
      font-weight: 400;
      line-height: 1.2;
      color: var(--text-main);
    }

    h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); letter-spacing: -0.02em; }
    h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); letter-spacing: -0.01em; margin-bottom: 1rem; }
    h3 { font-size: 1.4rem; font-weight: 500; }
    
    p { margin-bottom: 1.5rem; color: var(--text-muted); font-size: 1.05rem; }
    a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
    img { max-width: 100%; height: auto; display: block; object-fit: cover; }

    .container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
    .section { padding: 5rem 0; }
    
    .eyebrow {
      text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; font-weight: 600;
      color: var(--accent-dark); background: var(--accent);
      padding: 0.4rem 0.9rem; border-radius: 99px; display: inline-block; margin-bottom: 1rem;
    }

    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 0.85rem 1.8rem; border-radius: 99px; font-weight: 500; cursor: pointer;
      font-size: 0.95rem; transition: all 0.3s ease; white-space: nowrap;
      text-transform: uppercase; letter-spacing: 0.05em;
    }
    .btn-primary { background-color: var(--text-main); color: white; box-shadow: 0 4px 15px rgba(26,43,60,0.2); }
    .btn-primary:hover { transform: translateY(-2px); background-color: #111d29; box-shadow: 0 8px 25px rgba(26,43,60,0.3); }
    .btn-outline { border: 1px solid rgba(26,43,60,0.2); color: var(--text-main); background: transparent; }
    .btn-outline:hover { background-color: white; border-color: var(--text-main); }
    .btn-white { background-color: white; color: var(--text-main); border: 1px solid rgba(255,255,255,0.8); }
    .btn-white:hover { background-color: var(--accent); color: var(--accent-dark); border-color: var(--accent); }

    .desktop-only { display: none; }
    @media(min-width: 992px) { .desktop-only { display: flex; } }

    .site-header { background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #eee; }
    .site-header.scrolled { background: rgba(242, 247, 250, 0.95); backdrop-filter: blur(12px); box-shadow: 0 1px 0px rgba(0,0,0,0.05); padding: 0.6rem 0; }
    .header-inner { display: flex; justify-content: space-between; align-items: center; }
    
    .logo-img { height: 55px; width: auto; display: block; transition: height 0.3s ease; }
    @media(max-width: 768px) { .logo-img { height: 55px; } }

    .nav-links { display: none; gap: 2rem; }
    .nav-links a { font-weight: 500; font-size: 1rem; position: relative; color: var(--text-main); }
    .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--accent-dark); transition: width 0.3s; }
    .nav-links a:hover::after { width: 100%; }
    @media(min-width: 992px) { .nav-links { display: flex; } .mobile-toggle { display: none; } }
    .mobile-toggle { font-size: 1.6rem; background: none; border: none; cursor: pointer; color: var(--text-main); padding: 0.5rem; }

    .lang-switcher-desktop { display: none; align-items: center; gap: 0.8rem; margin-right: 1.5rem; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; color: var(--text-main); padding-right: 1.5rem; border-right: 1px solid rgba(0,0,0,0.1); height: 24px; }
    @media(min-width: 992px) { .lang-switcher-desktop { display: flex; } }
    .lang-link { cursor: pointer; opacity: 0.5; transition: opacity 0.3s; }
    .lang-link:hover, .lang-link.active { opacity: 1; }
    .lang-link.active { font-weight: 800; border-bottom: 2px solid var(--accent); }
    .lang-switcher-mobile { display: flex; gap: 1.5rem; margin-top: 1rem; margin-bottom: 2rem; font-size: 1.2rem; font-weight: 600; text-transform: uppercase; }

    .hero { padding-top: 140px; padding-bottom: 60px; position: relative; }
    .hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; min-height: 600px; }
    @media(min-width: 992px) { .hero-grid { grid-template-columns: 0.9fr 1.1fr; gap: 6rem; } }
    .hero-title span { font-style: italic; color: var(--text-muted); position: relative; display: inline-block; }
    .hero-title span::after { content: ''; position: absolute; bottom: 8px; left: 0; width: 100%; height: 12px; background: var(--accent); opacity: 0.4; z-index: -1; transform: skewX(-12deg); }
    .hero-image-container { position: relative; width: 100%; height: 550px; border-radius: var(--radius-lg); border-bottom-left-radius: 4px; box-shadow: 0 25px 50px -10px rgba(26,43,60,0.15); overflow: hidden; }
    .hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 2.5s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1; }
    .hero-slide.active { opacity: 1; z-index: 2; }
    .floating-card { position: absolute; bottom: 40px; left: 20px; z-index: 10; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); padding: 1.5rem; border-radius: var(--radius-md); box-shadow: 0 15px 50px rgba(0,0,0,0.12); max-width: 280px; border: 1px solid white; }
    .card-content-wrap { transition: opacity 1s ease-in-out; }
    .card-content-wrap.text-fade-out { opacity: 0; }

    .bento-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 4rem; }
    @media(min-width: 768px) { .bento-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(360px, auto); } .span-2 { grid-column: span 2; } .row-2 { grid-row: span 2; } }
    .img-card { position: relative; border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; text-decoration: none; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: all 0.4s ease; background: var(--text-main); }
    .img-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
    .img-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); z-index: 1; }
    .img-card:hover .img-card-bg { transform: scale(1.06); }
    .img-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26, 43, 60, 0.95) 0%, rgba(26, 43, 60, 0.6) 45%, rgba(26, 43, 60, 0) 100%); z-index: 2; opacity: 0.9; transition: opacity 0.3s ease; }
    .img-card-content { position: relative; z-index: 3; padding: 2rem; transform: translateY(6px); transition: transform 0.4s ease; }
    .img-card:hover .img-card-content { transform: translateY(0); }
    .img-card h3 { font-size: 1.5rem; margin-bottom: 0.6rem; color: white; font-family: var(--font-serif); }
    .img-card p { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.5; margin-bottom: 1.2rem; max-width: 95%; }
    .card-link { display: inline-flex; align-items: center; font-size: 0.85rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; transition: all 0.3s ease; }
    .card-link::after { content: '→'; margin-left: 8px; transition: margin 0.3s; }
    .img-card:hover .card-link { color: white; }
    .img-card:hover .card-link::after { margin-left: 12px; }
    .card-alert { border: 2px solid rgba(231, 76, 60, 0.4); }
    .card-alert::after { background: linear-gradient(to top, rgba(160, 40, 30, 0.95) 0%, rgba(160, 40, 30, 0) 100%); }

    .feature-section { position: relative; background-image: url('https://bdc.ee/wp-content/uploads/2023/02/Bliss-DC-Content-17-1.jpg'); background-attachment: fixed; background-position: center; background-size: cover; padding: 9rem 0; margin-top: 6rem; }
    .feature-overlay { position: absolute; inset: 0; background: rgba(26, 43, 60, 0.7); z-index: 1; }
    .feature-content { position: relative; z-index: 2; color: white; }
    .feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 2.5rem; margin-top: 4rem; }
    .feature-box { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.2); padding: 2.5rem; border-radius: var(--radius-md); transition: transform 0.3s; }
    .feature-box:hover { transform: translateY(-5px); background: rgba(255,255,255,0.15); }
    .feature-box h3 { font-size: 1.5rem; margin-bottom: 0.8rem; color: var(--accent); }
    .feature-box p { color: rgba(255,255,255,0.9); font-size: 1.05rem; margin: 0; }

    .financing-wrap { background: white; border-radius: var(--radius-lg); padding: 4rem 2rem; text-align: center; max-width: 900px; margin: 0 auto; }
    .financing-logos { display: flex; gap: 3rem; align-items: center; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }
    .finance-logo { transition: transform 0.3s; opacity: 0.8; }
    .finance-logo:hover { transform: scale(1.05); opacity: 1; }

    .testimonials-wrapper { position: relative; width: 100vw; margin-left: 50%; transform: translateX(-50%); overflow: hidden; }
    @media (min-width: 768px) { .testimonials-wrapper { -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%); } }
    .scroller { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; padding: 1rem 0 3rem 0; scrollbar-width: none; -ms-overflow-style: none; cursor: grab; padding-left: max(1.5rem, calc((100vw - var(--container)) / 2 + 1.5rem)); padding-right: 1.5rem; }
    .scroller::-webkit-scrollbar { display: none; }
    .scroller:active { cursor: grabbing; }
    .testimonial-card { flex: 0 0 85vw; scroll-snap-align: start; background: white; padding: 2.5rem; border-radius: var(--radius-md); box-shadow: 0 10px 30px rgba(0,0,0,0.06); position: relative; display: flex; flex-direction: column; user-select: none; transition: transform 0.3s; }
    @media(min-width: 768px) { .testimonial-card { flex: 0 0 800px; } }
    .testimonial-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
    .avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); flex-shrink: 0; }
    .avatar-placeholder { background: #E0E7EB; color: var(--text-main); font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
    .quote-icon { font-size: 3rem; color: var(--accent); opacity: 0.4; margin-left: auto; font-family: serif; line-height: 1; }

    .site-footer { background: var(--text-main); color: white; padding: 5rem 0 3rem 0; margin-top: 0rem;padding-top: 5rem; } 
    .footer-col h4 { margin-bottom: 1.5rem; font-family: var(--font-sans); font-weight: 700; opacity: 0.6; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; }
    .footer-col a { color: rgba(255,255,255,0.7); }
    .footer-col a:hover { color: var(--accent); text-decoration: underline; }

    .mobile-action-bar { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(15px); border-top: 1px solid rgba(0,0,0,0.1); z-index: 9999; box-shadow: 0 -5px 20px rgba(0,0,0,0.08); padding-bottom: env(safe-area-inset-bottom); }
    @media (max-width: 767px) { .mobile-action-bar { display: grid; grid-template-columns: 1fr 1fr 1fr; } }
    .action-item { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0.8rem 0; color: var(--text-main); font-size: 0.7rem; font-weight: 600; border-right: 1px solid rgba(0,0,0,0.05); text-transform: uppercase; letter-spacing: 0.05em; }
    .action-item:last-child { border-right: none; background: var(--text-main); color: white; }
    .action-icon { font-size: 1.4rem; margin-bottom: 4px; }

    .mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: var(--bg-body); z-index: 2000; padding: 2rem; transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1); display: flex; flex-direction: column; gap: 1.5rem; align-items: center; justify-content: center; }
    .mobile-menu.active { right: 0; }
    .mobile-close { position: absolute; top: 2rem; right: 2rem; font-size: 3rem; cursor: pointer; color: var(--text-main); border: none; background-color: transparent; }
    .mobile-link { font-size: 1.5rem; font-family: var(--font-serif); color: var(--text-main); }
    
    
    


    
    h1 { font-family: 'Fraunces', serif; font-size: 2.2rem; margin-bottom: 0.5rem; }
    .subtitle { color: var(--text-muted); margin-bottom: 2rem; }
    
    
        /* BRONEERINGU SISU */
    .main-content { padding: 3rem 0; }
    h1 { font-family: 'Fraunces', serif; font-size: 2.2rem; margin-bottom: 0.5rem; }
    .subtitle { color: var(--text-muted); margin-bottom: 2rem; }

    /* Filtrid */
    .filters-container {
      background: var(--bg-white); padding: 1.5rem; border-radius: var(--radius);
      box-shadow: var(--shadow); border: 1px solid #eef2f6;
      display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem;
    }
    .filter-group label { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; letter-spacing: 0.05em; }

    .custom-select {
      width: 100%; padding: 0.8rem 1rem; font-size: 1rem; border: 1px solid #cbd5e1;
      border-radius: 8px; background-color: #fff; color: var(--text-main); cursor: pointer;
      appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A2B3C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
      background-repeat: no-repeat; background-position: right 1rem center; background-size: 1em;
    }

    /* Custom Dropdown */
    .custom-dropdown { position: relative; width: 100%; }
    .dd-selected {
      background: #fff; border: 1px solid #cbd5e1; border-radius: 8px;
      padding: 0.6rem 1rem; cursor: pointer; display: flex; align-items: center; justify-content: space-between; min-height: 50px;
    }
    .dd-selected-content { display: flex; align-items: center; gap: 12px; font-weight: 500; }
    .dd-avatar { width: 32px; height: 32px; border-radius: 6px; object-fit: cover; background: #eee; }
    .dd-options {
      position: absolute; top: 110%; left: 0; width: 100%; background: #fff; border: 1px solid #eee; border-radius: 8px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15); z-index: 50; max-height: 300px; overflow-y: auto; display: none;
    }
    .dd-options.show { display: block; }
    .dd-option {
      padding: 0.8rem 1rem; cursor: pointer; display: flex; align-items: center; gap: 12px; transition: background 0.2s; border-bottom: 1px solid #f8f9fa;
    }
    .dd-option:hover { background: #F0F5F9; }

    /* Grid */
    .booking-grid { display: grid; grid-template-columns: 350px 1fr; gap: 2rem; align-items: start; }

    /* Kalender */
    .calendar-card { background: var(--bg-white); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); border: 1px solid #eef2f6; }
    .cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
    .cal-title { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 600; text-transform: capitalize; }
    .cal-btn { background: none; border: 1px solid #eee; border-radius: 50%; width: 32px; height: 32px; cursor: pointer; display:flex; align-items:center; justify-content:center; transition:0.2s; }
    .cal-btn:hover { background: var(--text-main); color: white; }
    .cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; margin-bottom: 0.5rem; }
    .cal-weekday { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); }
    .cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
    .cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 6px; font-size: 0.9rem; color: #cbd5e1; cursor: default; position: relative; }
    .cal-day.available { color: var(--text-main); font-weight: 600; cursor: pointer; background: #F8FAFC; }
    .cal-day.available:hover { background: #e2e8f0; }
    .cal-day.selected { background: var(--text-main); color: white; }
    .cal-day.available::after { content: ''; position: absolute; bottom: 4px; width: 4px; height: 4px; background: #4CD964; border-radius: 50%; }
    .cal-day.selected::after { display: none; }

    /* Slot Card (UUS DISAIN) */
    .slots-header-text { font-family: 'Fraunces', serif; font-size: 1.5rem; margin-bottom: 1.5rem; display:block; }
    
    .slot-card {
      background: var(--bg-white); border: 1px solid #eef2f6; border-radius: var(--radius);
      padding: 1.2rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 1.5rem;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .slot-card:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.08); border-color: var(--accent); }

    .slot-time { 
      min-width: 80px; text-align: center; border-right: 1px solid #eee; padding-right: 1.5rem; 
      display: flex; flex-direction: column; justify-content: center;
    }
    .time-large { font-size: 1.4rem; font-weight: 700; line-height: 1; color: var(--text-main); margin-bottom: 4px; }
    .duration { font-size: 0.8rem; color: var(--text-muted); background: #f1f5f9; padding: 2px 6px; border-radius: 4px; display: inline-block; }

    .slot-doctor { flex: 1; display: flex; align-items: flex-start; gap: 1rem; }
    /* Kandilisem pilt */
    .doc-img-large { width: 60px; height: 70px; border-radius: 12px; object-fit: cover; border: 1px solid #eee; }
    
    .doc-info { display: flex; flex-direction: column; justify-content: center; }
    .doc-info h4 { margin: 0; font-size: 1.05rem; font-weight: 600; color: var(--text-main); }
    .doc-job { font-size: 0.85rem; color: var(--accent-dark); font-weight: 500; margin-bottom: 2px; }
    .doc-service { font-size: 0.8rem; color: var(--text-muted); }

    .btn-book {
      background: var(--text-main); color: white; border: none; padding: 0.8rem 1.8rem;
      border-radius: 50px; font-weight: 600; cursor: pointer; transition: 0.3s; font-size: 0.9rem; white-space: nowrap;
    }
    .btn-book:hover { background: var(--accent); color: var(--accent-dark); }

    .loading-overlay { opacity: 0.5; pointer-events: none; }
    .msg-box { text-align: center; padding: 3rem; color: var(--text-muted); background: #fff; border-radius: var(--radius); border: 1px dashed #cbd5e1; }

    /* JALUS */
    .site-footer { background: var(--text-main); color: white; padding: 5rem 0 3rem 0; margin-top: 0rem; } 
    .footer-col h4 { margin-bottom: 1.5rem; font-family: var(--font-sans); font-weight: 700; opacity: 0.6; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; }
    .footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; }
    .footer-col a:hover { color: var(--accent); text-decoration: underline; }

    /* MOBIIL */
    .mobile-action-bar { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(15px); border-top: 1px solid rgba(0,0,0,0.1); z-index: 9999; padding-bottom: env(safe-area-inset-bottom); }
    @media (max-width: 767px) { .mobile-action-bar { display: grid; grid-template-columns: 1fr 1fr 1fr; } }
    .action-item { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0.8rem 0; color: var(--text-main); font-size: 0.7rem; font-weight: 600; border-right: 1px solid rgba(0,0,0,0.05); text-transform: uppercase; text-decoration: none; }
    .action-item:last-child { border-right: none; background: var(--text-main); color: white; }
    .action-icon { font-size: 1.4rem; margin-bottom: 4px; }

    .mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: var(--bg-body); z-index: 2000; padding: 2rem; transition: right 0.4s ease; display: flex; flex-direction: column; gap: 1.5rem; align-items: center; justify-content: center; }
    .mobile-menu.active { right: 0; }
    .mobile-close { position: absolute; top: 2rem; right: 2rem; font-size: 3rem; cursor: pointer; }
    .mobile-link { font-size: 1.5rem; font-family: var(--font-serif); color: var(--text-main); text-decoration: none; }

    @media (max-width: 900px) {
      .filters-container, .booking-grid { grid-template-columns: 1fr; }
      
      /* Slot card mobiilis */
      .slot-card { flex-direction: column; align-items: flex-start; gap: 1rem; position: relative;}
      .slot-time { flex-direction: row; align-items: baseline; gap: 1rem; border-right: none; padding: 0; width: 100%; border-bottom: 1px solid #f1f5f9; padding-bottom: 0.8rem;}
      .slot-doctor { width: 100%; }
      .doc-img-large { width: 50px; height: 50px; } /* Veidi väiksem mobiilis */
      .btn-book { width: 100%; margin-top: 0.5rem; padding: 0.9rem; }
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
/* --- LISATUD INFO TEKSTID (INFO SECTION) --- */
    .info-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-top: 3rem;
    }

    .info-card {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      padding: 2rem;
      box-shadow: var(--shadow);
      border: 1px solid #eef2f6;
    }

    .warning-card {
      background: #fffcfc; /* Õrn punakas taust hoiatusele */
      border-color: #ffebeb;
    }

    .info-title {
      font-family: var(--font-serif);
      font-size: 1.3rem;
      margin-bottom: 1.2rem;
      color: var(--text-main);
      border-bottom: 2px solid var(--bg-body);
      padding-bottom: 0.8rem;
    }

    .info-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .info-list li {
      margin-bottom: 1rem;
      font-size: 0.95rem;
      color: var(--text-muted);
      padding-left: 1.2rem;
      position: relative;
    }

    /* Bullet point stiil */
    .info-list li::before {
      content: '•';
      color: var(--accent);
      font-weight: bold;
      position: absolute;
      left: 0;
      font-size: 1.2rem;
      line-height: 1.4;
    }

    .info-list strong {
      color: var(--text-main);
      font-weight: 600;
    }

    .highlight-item {
      background: var(--bg-body);
      padding: 0.8rem 1rem !important; /* Overwrite padding */
      border-radius: 8px;
    }

    .info-text p {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin-bottom: 1rem;
      line-height: 1.6;
    }

    .info-divider {
      border: 0;
      height: 1px;
      background: #eee;
      margin: 1.5rem 0;
    }

    .legal-text {
      font-size: 0.9rem !important;
      color: #7f1d1d !important; /* Tume punane tekst */
      background: #fef2f2;
      padding: 1rem;
      border-radius: 8px;
      border-left: 3px solid #ef4444;
    }

    /* Mobiilivaade */
    @media (max-width: 900px) {
      .info-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .info-card {
        padding: 1.5rem;
      }
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
/* KONTAKTI SISU */
    .contact-hero { padding: 3rem 0 3rem; text-align: center; }
    h1 { font-family: 'Fraunces', serif; font-size: 2.5rem; margin-bottom: 0.5rem; }
    .subtitle { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

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

    /* INFO KAARDID */
    .info-card {
      background: var(--bg-white);
      padding: 2.5rem;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      border: 1px solid #eef2f6;
      height: 100%;
    }

    .info-block { margin-bottom: 2.5rem; }
    .info-block:last-child { margin-bottom: 0; }
    
    .info-label { 
      font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; 
      color: var(--accent-dark); font-weight: 700; margin-bottom: 0.8rem; display: block;
      opacity: 0.7;
    }
    
    .contact-link {
      font-size: 1.5rem; font-family: 'Fraunces', serif; color: var(--text-main);
      display: block; margin-bottom: 0.2rem;
    }
    .contact-link:hover { color: var(--accent-dark); }
    
    .info-text { font-size: 1rem; color: var(--text-muted); line-height: 1.6; }
    .info-text strong { color: var(--text-main); font-weight: 600; }

    /* NAVIGEERIMISE NUPUD */
    .nav-buttons { display: flex; gap: 1rem; margin-top: 1.2rem; flex-wrap: wrap; }
    .btn-nav {
      flex: 1; padding: 0.8rem; background: #F8FAFC; border-radius: 12px; border: 1px solid #e2e8f0;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      font-weight: 600; color: var(--text-main); font-size: 0.9rem; transition: 0.2s;
    }
    .btn-nav:hover { background: #eef2f6; border-color: #cbd5e1; }
    .nav-icon { font-size: 1.2rem; }

    /* LOGISTIKA RUUDUSTIK (Parkimine/Buss) */
    .logistics-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 0;
    }
    .logistics-box {
      background: #F8FAFC; padding: 1.5rem; border-radius: var(--radius); border: 1px solid #e2e8f0;
    }
    .log-icon { font-size: 1.8rem; margin-bottom: 0.8rem; display: block; }

    /* VORM */
    .form-group { margin-bottom: 1.5rem; }
    .form-label { display: block; margin-bottom: 0.5rem; font-weight: 600; font-size: 0.9rem; color: var(--text-main); }
    .form-input, .form-textarea {
      width: 100%; padding: 0.9rem 1.2rem; border: 1px solid #cbd5e1; border-radius: 8px;
      font-family: inherit; font-size: 1rem; background: #fff; transition: 0.2s;
    }
    .form-input:focus, .form-textarea:focus { outline: none; border-color: var(--text-main); box-shadow: 0 0 0 3px rgba(26,43,60,0.1); }
    .form-textarea { resize: vertical; min-height: 140px; }

    /* KAART */
    .map-section {
      height: 450px;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow);
      margin-top: 2rem;
      margin-bottom: 2rem;
      border: 1px solid #fff;
    }
    .map-frame { width: 100%; height: 100%; border: 0; filter: grayscale(10%) contrast(1.05); }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
      .logistics-grid { grid-template-columns: 1fr; }
      .contact-hero { padding: 2rem 0; }
    }
















/* --- HINNAKIRJA STILISTIKA --- */
    
    .pricing-hero {
      text-align: center;
      padding: 3rem 0;
      background: var(--bg-body);
    }

    /* Sticky Kategooria Navigatsioon */
    .sticky-nav-container {
      position: sticky;
      top: 65px; /* Arvestame headeri kõrgusega */
      z-index: 90;
      background: rgba(242, 247, 250, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(0,0,0,0.05);
      border-top: 1px solid rgba(0,0,0,0.05);
      padding: 0.5rem 0;
      margin-bottom: 3rem;
      overflow-x: auto;
      white-space: nowrap;
      -webkit-overflow-scrolling: touch;
      /* Peidab scrollbari aga laseb scrollida */
      scrollbar-width: none; 
    }
    .sticky-nav-container::-webkit-scrollbar { display: none; }

    .pricing-nav {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
    }

    .p-nav-link {
      display: inline-block;
      padding: 0.5rem 1rem;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--text-muted);
      transition: all 0.2s;
    }
    .p-nav-link:hover {
      background: #e2e8f0;
      color: var(--text-main);
    }
    
    /* Grid paigutus */
    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      max-width: 900px;
      margin: 0 auto;
    }

    /* Hinnakaart */
    .price-card {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      box-shadow: var(--shadow);
      border: 1px solid #eef2f6;
      scroll-margin-top: 140px; /* Et sticky nav ei kataks pealkirja */
    }

    .card-header {
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 2px solid var(--bg-body);
    }
    .card-header h2 {
      font-size: 1.8rem;
      margin: 0;
      color: var(--text-main);
    }
    .card-note {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-top: 0.5rem;
      margin-bottom: 0;
      font-style: italic;
    }

    /* Hinnatabel */
    .price-list {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .price-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 0.6rem 0;
      border-bottom: 1px dashed #e2e8f0;
      transition: 0.2s;
    }
    .price-row:last-child { border-bottom: none; }
    
    .price-row:hover {
      background: linear-gradient(90deg, transparent, #F8FAFC, transparent);
    }

    .service {
      font-size: 1rem;
      color: var(--text-main);
      padding-right: 1rem;
    }
    
    .price {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text-main);
      white-space: nowrap;
      font-family: var(--font-sans);
    }

    .highlight-row .service {
      color: #991b1b;
      font-weight: 500;
    }

    /* Mobiil */
    @media (max-width: 768px) {
      .pricing-nav {
        justify-content: flex-start; /* Laseb scrollida vasakule-paremale */
        padding: 0 1rem;
      }
    ÿ .p 篡翴 -card {
        padding: 1.5rem;
      }
      .card-header h2 {
        font-size: 1.5rem;
      }
      .price-row {
        align-items: flex-start;
      }
      .price {
        font-size: 1rem;
      }
    }
    
    
    
    
    
    
    
    
/* --- ERROR PAGE STILISTIKA --- */
    
    .error-page {
      padding: 6rem 0;
      min-height: 70vh; /* Et footer ei tõuseks liiga kõrgele */
      display: flex;
      align-items: center;
      background: var(--bg-body);
      overflow: hidden; /* Dekoratsioonide jaoks */
    }

    .error-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .error-content h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      margin-bottom: 1.5rem;
      line-height: 1.1;
    }

    .error-actions {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
      flex-wrap: wrap;
    }

    /* Kiirlingid all */
    .quick-links {
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(26, 43, 60, 0.1);
    }
    .quick-links p {
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--text-main);
    }
    .quick-links ul {
      list-style: none;
      padding: 0;
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }
    .quick-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.95rem;
      border-bottom: 1px solid transparent;
      transition: 0.3s;
    }
    .quick-links a:hover {
      color: var(--accent-dark);
      border-color: var(--accent);
    }

    /* Visuaalne pool */
    .error-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .big-404 {
      font-family: var(--font-serif);
      font-size: 15rem;
      line-height: 1;
      font-weight: 700;
      color: var(--text-main);
      opacity: 0.05; /* Väga õrn taustal */
      position: relative;
      z-index: 2;
      user-select: none;
    }

    /* Dekoratiivne ring/kuju */
    .visual-circle {
      position: absolute;
      width: 300px;
      height: 300px;
      background: var(--accent);
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.4;
      z-index: 1;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    /* Mobiilivaade */
    @media (max-width: 900px) {
      .error-page {
        padding: 4rem 0;
        text-align: center;
      }
      .error-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      .error-visual {
        order: -1; /* Tõstame numbri üles */
        margin-bottom: -2rem;
      }
      .big-404 {
        font-size: 8rem;
      }
      .error-actions {
        justify-content: center;
      }
      .quick-links ul {
        justify-content: center;
      }
    }
    
    
    
    
.gc-hero-section {
      text-align: center;
      padding: 4rem 0 3rem;
    }

    .gc-title {
      font-size: clamp(2.5rem, 5vw, 4rem);
      margin-bottom: 1rem;
      line-height: 1.1;
    }
    .gc-title span {
      font-style: italic;
      color: var(--accent-dark);
      position: relative;
    }
    /* Väike dekoratiivne joon pealkirjas */
    .gc-title span::after {
      content: ''; position: absolute; bottom: 5px; left: 0; width: 100%; height: 10px;
      background: var(--accent); opacity: 0.3; z-index: -1; transform: skewX(-10deg);
    }

    .gc-subtitle {
      max-width: 600px;
      margin: 0 auto;
      font-size: 1.1rem;
      color: var(--text-muted);
    }

    /* GRID PAIGUTUS */
    .gc-layout-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      padding-bottom: 4rem;
      align-items: start;
    }

    /* --- VIRTUAALNE KAART (CSS ONLY) --- */
    .gc-card-preview {
      background: linear-gradient(135deg, var(--text-main) 0%, #2a4055 100%);
      border-radius: 24px;
      padding: 2.5rem;
      color: white;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 40px -10px rgba(26, 43, 60, 0.4);
      aspect-ratio: 1.58/1; /* Krediitkaardi suhe */
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      margin-bottom: 3rem;
      transition: transform 0.3s ease;
    }
    .gc-card-preview:hover {
      transform: translateY(-5px) scale(1.02);
    }

    /* Dekoratiivne ring kaardil */
    .gc-card-deco {
      position: absolute;
      top: -50%; right: -20%;
      width: 300px; height: 300px;
      background: var(--accent);
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.2;
    }

    .gc-card-logo {
      font-family: var(--font-serif);
      font-size: 2rem;
      font-weight: 700;
      position: relative; z-index: 2;
    }

    .gc-card-label {
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-size: 0.9rem;
      opacity: 0.8;
      margin-top: auto;
      margin-bottom: 0.5rem;
      position: relative; z-index: 2;
    }
    
    .gc-card-value {
      font-family: 'Courier New', monospace;
      font-size: 1.2rem;
      letter-spacing: 0.05em;
      position: relative; z-index: 2;
      text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }

    /* --- OMADUSED --- */
    .gc-features {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    
    .gc-feature-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }
    
    .gc-icon {
      font-size: 1.5rem;
      background: #fff;
      width: 40px; height: 40px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      flex-shrink: 0;
    }

    .gc-feature-item strong {
      display: block;
      color: var(--text-main);
      margin-bottom: 0.2rem;
    }
    .gc-feature-item p {
      font-size: 0.9rem;
      margin: 0;
      line-height: 1.4;
    }

    /* --- VORM --- */
    .gc-form-card {
      background: var(--bg-white);
      padding: 2.5rem;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      border: 1px solid #eef2f6;
    }

    .gc-form-card h3 {
      font-family: var(--font-serif);
      margin-top: 0;
      margin-bottom: 0.5rem;
    }

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

    .gc-label {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-main);
      margin-bottom: 0.5rem;
    }

    .gc-input {
      width: 100%;
      padding: 0.9rem 1rem;
      border: 1px solid #cbd5e1;
      border-radius: 8px;
      font-family: inherit;
      font-size: 1rem;
      background: #F8FAFC;
      transition: 0.2s;
    }
    .gc-input:focus {
      outline: none;
      border-color: var(--text-main);
      background: #fff;
    }
    .gc-textarea {
      resize: vertical;
      min-height: 100px;
    }

    /* SUMMA VALIK (GRID) */
    .gc-amount-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 10px;
    }
    
    .gc-amount-radio {
      position: relative;
    }
    
    .gc-amount-radio input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
    }
    
    .gc-amount-radio span {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0.8rem 0;
      background: #fff;
      border: 1px solid #cbd5e1;
      border-radius: 8px;
      font-weight: 600;
      color: var(--text-main);
      cursor: pointer;
      transition: all 0.2s;
    }
    
    .gc-amount-radio input:checked + span {
      background: var(--text-main);
      color: white;
      border-color: var(--text-main);
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    .gc-amount-radio:hover span {
      border-color: var(--text-main);
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .gc-layout-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
      .gc-card-preview {
        margin-bottom: 2rem;
      }
      .gc-form-card {
        padding: 1.5rem;
      }
      .gc-amount-grid {
        grid-template-columns: 1fr 1fr; /* Mobiilis 2x2 */
      }
    }
    
    
    
    
    
    
    
    
    
    
    
    
/* --- MEESKONNA LEHT (Unikaalsed klassid) --- */
    
    .team-hero {
      text-align: center;
      padding: 4rem 0 3rem;
      background: var(--bg-body);
    }
    .team-title {
      font-size: clamp(2.5rem, 5vw, 4rem);
      margin-bottom: 1rem;
      line-height: 1.1;
    }
    .team-title span {
      color: var(--accent-dark);
      font-style: italic;
    }
    .team-subtitle {
      max-width: 600px;
      margin: 0 auto;
      font-size: 1.1rem;
      color: var(--text-muted);
    }

    /* GRID SÜSTEEM */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 2rem;
    }

    /* Vahepealkirjad (Arstid, Assistendid...) */
    .team-group-title {
      grid-column: 1 / -1; /* Võtab terve rea */
      font-family: var(--font-serif);
      font-size: 1.8rem;
      color: var(--text-main);
      margin-top: 3rem;
      margin-bottom: 1rem;
      border-bottom: 2px solid #eef2f6;
      padding-bottom: 0.5rem;
    }
    .team-group-title:first-child { margin-top: 0; }
    .partner-title { color: var(--text-muted); }

    /* Meeskonnakaart */
    .team-card {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid #eef2f6;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    
    .team-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
      border-color: var(--accent);
    }

    /* Pilt */
    .team-img-wrap {
      width: 100%;
      height: 380px; /* Fikseeritud kõrgus ühtluse tagamiseks */
      overflow: hidden;
      background: #f8fafc;
      position: relative;
    }
    
    .team-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center; /* Näod on tavaliselt üleval */
      transition: transform 0.5s ease;
    }
    
    .team-card:hover .team-img {
      transform: scale(1.03);
    }

    /* Placeholder pilt (kui päris pilti pole) */
    .placeholder-img {
      object-fit: contain;
      padding: 2rem;
      opacity: 0.3;
      filter: grayscale(100%);
    }

    /* Info */
    .team-info {
      padding: 1.5rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      text-align: center;
    }
    
    .team-info h3 {
      font-size: 1.3rem;
      margin: 0 0 0.3rem 0;
      color: var(--text-main);
    }
    
    .team-job {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--accent-dark);
      margin: 0 0 1rem 0;
      font-weight: 600;
    }
    
    .team-link {
      font-size: 0.85rem;
      color: var(--text-muted);
      text-decoration: none;
      margin-top: auto; /* Lükkab lingi alla */
      border-bottom: 1px solid transparent;
      transition: 0.2s;
    }
    .team-link:hover {
      color: var(--text-main);
      border-color: var(--accent);
    }

    /* Partner kaart (eristuv stiil) */
    .partner-card {
      border: 1px dashed #cbd5e1;
      background: #fdfdfd;
    }
    .partner-links {
      margin-top: auto;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      font-size: 0.85rem;
    }
    .partner-links a { color: var(--text-muted); }
    .partner-links a:hover { color: var(--accent-dark); text-decoration: underline; }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
      }
      .team-img-wrap { height: 300px; }
    }

    @media (max-width: 600px) {
      .team-grid {
        grid-template-columns: 1fr; /* Mobiilis üks veerg */
        gap: 2rem;
      }
      .team-img-wrap { height: 400px; } /* Suur pilt mobiilis */
      .team-info { padding: 1.5rem; }
    }
    
    
/* --- ARSTI CV LEHE STILISTIKA (CV) --- */

    .cv-container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 2rem 1.5rem 5rem;
    }

    /* Tagasi nupp */
    .cv-back-wrap { margin-bottom: 2rem; }
    .cv-back-link {
      color: var(--text-muted); font-size: 0.9rem; font-weight: 500; text-decoration: none;
      display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s;
    }
    .cv-back-link:hover { color: var(--text-main); }

    /* Grid Layout */
    .cv-grid {
      display: grid;
      grid-template-columns: 350px 1fr;
      gap: 4rem;
      align-items: start;
    }

    /* Vasak tulp (Pilt + Nimi) */
    .cv-sidebar {
      position: sticky;
      top: 100px; /* Jääb kerides paigale */
      text-align: center;
    }

    .cv-photo-frame {
      width: 100%;
      aspect-ratio: 3/4;
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-bottom: 1.5rem;
      box-shadow: var(--shadow);
      background: #fff;
      border: 1px solid #eef2f6;
    }

    .cv-photo {
      width: 100%; height: 100%; object-fit: cover;
    }

    .cv-name {
      font-family: var(--font-serif);
      font-size: 2rem;
      line-height: 1.1;
      margin-bottom: 0.5rem;
      color: var(--text-main);
    }

    .cv-job {
      font-size: 1rem;
      color: var(--accent-dark);
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 0.05em;
      margin-bottom: 1.5rem;
    }

    .cv-book-btn { width: 100%; }

    /* Parem tulp (Sisu) */
    .cv-content {
      background: var(--bg-white);
      padding: 3rem;
      border-radius: var(--radius-lg);
      box-shadow: 0 4px 30px rgba(0,0,0,0.03);
      border: 1px solid #f1f5f9;
    }

    .cv-section {
      margin-bottom: 3rem;
    }
    .cv-section:last-child { margin-bottom: 0; }

    .cv-heading {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      margin-bottom: 1.2rem;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid var(--bg-body);
      color: var(--text-main);
    }

    .cv-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .cv-list li {
      position: relative;
      padding-left: 1.5rem;
      margin-bottom: 0.8rem;
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* Bullet point */
    .cv-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 10px;
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 50%;
    }

    /* Eristiil koolitustele (väiksem tekst) */
    .small-text li {
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
    }

    /* Artiklid */
    .article-item {
      font-style: italic;
    }
    .article-item::before { display: none; } /* Eemalda tavaline bullet */

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .cv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      .cv-sidebar {
        position: static; /* Mobiilis ei ole sticky */
        text-align: center;
        max-width: 400px;
        margin: 0 auto;
      }
      .cv-content {
        padding: 1.5rem;
      }
    
      .hideonmobile{
          display: none;
          visibility: hidden;  
      }
    }
    
    
    
    
#tagasiside{
    background-color: #D7F39E;
    --background-overlay: '';
}





    
    /* Hero sektsioon */
    .svc-hero {
      position: relative;
      height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      overflow: hidden;
      margin-bottom: 4rem;
    }
    
    .svc-hero-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      transform: scale(1.05); /* Väike zoom efekt */
    }
    
    .svc-hero-overlay {
      position: absolute; inset: 0;
      /* VANA TUME: background: rgba(26, 43, 60, 0.7); */
      
      /* UUS GRADIENT: Vasakul tume (teksti taga), paremal värske roheline */
      background: linear-gradient(
        110deg, 
        rgba(26, 43, 60, 0.9) 0%,   /* Tumesinine (Navy) */
        rgba(26, 43, 60, 0.6) 40%,  /* Hajutus */
        rgba(203, 230, 163, 0.4) 100% /* Sinu Matcha roheline (#CBE6A3) läbipaistvana */
      );
    }
    
    .svc-hero-content h1, 
    .svc-hero-content p {
      text-shadow: 0 2px 10px rgba(26, 43, 60, 0.3);
      color: white;
    }
    
    .svc-hero-content {
      position: relative; z-index: 2;
      max-width: 800px;
    }
    
    .svc-eyebrow {
      /* Teeme eyebrow sildi natuke silmapaistvamaks */
      background: #CBE6A3; /* Matcha taust */
      color: #3A5220;      /* Tume tekst */
      font-weight: 700;
      backdrop-filter: none;
    }
    
    .svc-hero h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      margin: 1rem 0;
      color: white;
    }
    
    .svc-subtitle {
      font-size: 1.2rem;
      opacity: 0.9;
    }

    /* Sisu konteiner */
    .svc-container {
      max-width: 900px; /* Kitsam kui tavaline, et oleks parem lugeda */
    }

    /* Intro tekst (suurem) */
    .svc-intro p {
      font-size: 1.4rem;
      font-family: var(--font-serif);
      color: var(--text-main);
      line-height: 1.5;
      margin-bottom: 3rem;
      border-left: 4px solid var(--accent);
      padding-left: 1.5rem;
    }

    /* Sisuplokid */
    .svc-block {
      margin-bottom: 3rem;
    }
    .svc-block h2 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      color: var(--text-main);
    }
    .svc-block p {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* Nimekiri */
    .svc-list-block ul {
      list-style: none; padding: 0; margin: 0;
    }
    .svc-list-block li {
      position: relative;
      padding-left: 2rem;
      margin-bottom: 1rem;
      font-size: 1.05rem;
      color: var(--text-muted);
    }
    .svc-list-block li::before {
      content: '✓';
      position: absolute; left: 0; top: 0;
      color: var(--accent-dark);
      font-weight: bold;
      background: var(--accent);
      width: 24px; height: 24px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.8rem;
    }

    /* Pilt + Tekst plokk */
    .svc-media-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: center;
      background: var(--bg-white);
      padding: 2rem;
      border-radius: var(--radius-lg);
      border: 1px solid #eef2f6;
    }
    .svc-img {
      width: 100%; height: auto; border-radius: var(--radius-md);
      object-fit: cover;
    }
    .svc-media-text h3 {
      font-size: 1.5rem; margin-top: 0; margin-bottom: 0.5rem;
    }

    /* Galerii */
    .svc-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }
    .svc-gallery img {
      width: 100%; height: 250px; object-fit: cover;
      border-radius: var(--radius-md);
      transition: transform 0.3s;
    }
    .svc-gallery img:hover { transform: scale(1.02); }

    /* CTA Box */
    .svc-cta-box {
      background: #F8FAFC;
      border: 1px dashed var(--accent);
      padding: 3rem;
      border-radius: var(--radius-lg);
      text-align: center;
      margin-top: 4rem;
    }
    .svc-cta-box h3 { margin-top: 0; font-family: var(--font-serif); font-size: 1.8rem; }
    .svc-cta-buttons {
      display: flex; justify-content: center; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .svc-hero { height: 300px; }
      .svc-media-block { grid-template-columns: 1fr; }
      .svc-intro p { font-size: 1.2rem; }
      .svc-cta-box { padding: 2rem 1.5rem; }
    }
    
    
    
    /* --- MEESKONNA BRONEERI NUPP --- */
    
    .btn-team-book {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.6rem 1.2rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      text-decoration: none;
      background-color: var(--bg-body); /* Hele taust */
      color: var(--text-main);
      border: 1px solid transparent;
      margin-bottom: 1rem; /* Ruum enne linki */
      transition: all 0.2s ease;
      width: 100%; /* Mobiilis ja kaardil täislaius on ilus */
    }

    .btn-team-book:hover {
      background-color: var(--accent); /* Roheline hover */
      color: var(--accent-dark);
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }
    
    /* Et link "Hariduskäik..." ei jääks liiga lähedale */
    .team-link {
      margin-top: 0.5rem;
      display: inline-block;
    }
    
    
/* --- UUS MODERN HERO SEKTSIOON --- */

/* --- MODERN HERO 2.0 (Premium & Glassmorphism) --- */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.hero-modern-section {
  position: relative;
  /* Rohkem ruumi ja pehme üleminekuga taust */
  padding: 20px 0 120px 0; 
  background: 
    radial-gradient(circle at 15% 25%, rgba(76, 217, 100, 0.08) 0%, rgba(255,255,255,0) 45%),
    linear-gradient(180deg, #F5F9FA 0%, #FFFFFF 100%);
  overflow: hidden;
}

/* Dekoratiivne "Bliss" element taustal */
.hero-modern-section::after {
  content: '';
  position: absolute;
  right: -5%;
  top: 10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(203, 230, 163, 0.1) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-modern-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media(min-width: 992px) {
  .hero-modern-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

/* --- SISU POOL --- */
.hero-modern-content {
  text-align: left;
  animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-modern-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  color: var(--accent-dark);
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--accent); /* Roheline joon vasakul */
}

.hero-modern-title {
  font-family: var(--font-serif);
  /* Väga suur ja õhuline pealkiri */
  font-size: clamp(3.5rem, 6.5vw, 4.5rem); 
  line-height: 1.05;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

/* Pealkirja rõhutatud osa */
.hero-modern-title span {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: #5d737e; /* Veidi pehmem hallikas-sinine */
}

.hero-modern-desc {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
  color: #555;
  margin-bottom: 3rem;
  max-width: 480px;
}

.hero-modern-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Nupud modernsemaks */
.btn-modern-primary {
  background-color: var(--text-main);
  color: #fff;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px -5px rgba(26, 43, 60, 0.3);
}
.btn-modern-primary:hover {
  background-color: var(--accent); /* Roheline hover */
  transform: translateY(-2px);
  color: #fff;
}

.btn-modern-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(26, 43, 60, 0.2);
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-modern-outline:hover {
  border-color: var(--text-main);
  background: #fff;
}

/* --- PILDI POOL --- */
.hero-modern-visual {
  position: relative;
  height: 550px;
  width: 100%;
  animation: scaleIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.2s;
  opacity: 0; /* Alguses peidus */
}

@media(min-width: 992px) {
  .hero-modern-visual { height: 700px; }
}

.hero-modern-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  /* Asümmeetriline ümarus teeb asja huvitavamaks */
  border-radius: 40px 40px 40px 40px; 
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.15);
  background: #f0f0f0;
}

.hero-modern-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease;
}
.hero-modern-img.active {
  transform: scale(1.08);
}

/* KLAASIST HÕLJUV KAART */
.hero-modern-float {
  position: absolute;
  bottom: 50px;
  left: -40px;
  /* Glassmorphism */
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  
  border: 1px solid rgba(255,255,255, 0.6);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  max-width: 280px;
  z-index: 10;
  
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  
  /* Väike hõljumise animatsioon */
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media(max-width: 1200px) {
  .hero-modern-float { left: -20px; }
}
@media(max-width: 768px) {
  .hero-modern-float { left: 20px; right: 20px; bottom: 20px; max-width: none; }
  .hero-modern-title { font-size: 3rem; }
}

.hero-modern-float-rating {
  display: flex;
  gap: 4px;
  color: #FFB800; /* Kuldne täht */
  font-size: 1.1rem;
}