@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ==========================================
   DESIGN TOKENS & ROOT PROPERTIES
   ========================================== */
:root {
    /* Color Palette */
    --primary: hsl(198, 100%, 45%);
    --primary-hover: hsl(198, 100%, 38%);
    --primary-light: hsl(198, 100%, 95%);
    --secondary: hsl(215, 60%, 16%);
    --secondary-light: hsl(215, 20%, 45%);
    --bg-light: hsl(210, 30%, 98%);
    --white: #ffffff;
    --success: hsl(150, 80%, 38%);
    --success-light: hsl(150, 80%, 95%);
    --error: hsl(0, 80%, 60%);
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, hsl(198, 100%, 50%) 0%, hsl(188, 100%, 40%) 100%);
    --grad-dark: linear-gradient(135deg, hsl(215, 60%, 20%) 0%, hsl(215, 60%, 10%) 100%);
    --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.7) 100%);
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-primary: 0 10px 20px -5px rgba(0, 162, 232, 0.3);
    
    /* Layout */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Fonts */
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-light);
    color: var(--secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Common */
.section {
    padding: 80px 0;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary);
}

/* Scroll Animation States */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   BUTTONS & UI ELEMENTS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -5px rgba(0, 162, 232, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

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

.btn-text {
    padding: 8px 16px;
    color: var(--primary);
    font-weight: 600;
    box-shadow: none;
}

.btn-text:hover {
    color: var(--primary-hover);
}

/* ==========================================
   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 solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.header.header-solid {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

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

.logo-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--secondary-light);
    max-width: 180px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.8vw, 32px);
    list-style: none;
}

.nav-link {
    font-weight: 500;
    color: var(--secondary);
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* Highlighted Offer/Contract Link in Header */
.nav-oferta-btn {
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    border: 1px solid rgba(0, 162, 232, 0.15);
    white-space: nowrap;
}

.nav-oferta-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 162, 232, 0.2);
}

.nav-oferta-btn i {
    font-size: 0.95rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    background: rgba(0, 0, 0, 0.05);
    padding: 4px;
    border-radius: var(--radius-full);
}

.lang-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--secondary);
    border-radius: 99px;
    transition: var(--transition);
}

/* ==========================================
   HERO BANNER
   ========================================== */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, hsl(198, 100%, 93%) 0%, var(--bg-light) 60%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: inset 0 0 0 1px rgba(0, 162, 232, 0.1);
}

.hero-tag span {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--secondary);
}

.hero-title span {
    color: var(--primary);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--secondary-light);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.stat-num span {
    color: var(--primary);
}

.stat-lbl {
    font-size: 0.85rem;
    color: var(--secondary-light);
    margin-top: 4px;
}

.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-bg {
    position: absolute;
    width: 110%;
    height: 110%;
    background: var(--grad-primary);
    opacity: 0.1;
    filter: blur(80px);
    border-radius: 50%;
    z-index: 1;
}

.hero-image {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
    transition: var(--transition-slow);
}

.hero-image:hover {
    transform: rotate(0) scale(1.02);
}

.floating-card {
    position: absolute;
    background: var(--grad-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    left: -30px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 15%;
    right: -20px;
    animation-delay: 2s;
}

.floating-card.card-3 {
    bottom: -15px;
    left: -20px;
    animation-delay: 1s;
}

.card-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.card-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
}

.card-info p {
    font-size: 0.75rem;
    color: var(--secondary-light);
}

/* ==========================================
   PROMOTIONS (PROMO SLIDER)
   ========================================== */
.promos {
    background-color: var(--white);
}

.promo-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.promo-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: var(--grad-dark);
    color: var(--white);
    overflow: hidden;
}

.promo-content {
    padding: 60px;
}

.promo-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--primary-light);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.promo-slide h3 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.promo-slide p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 30px;
}

.promo-image {
    height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.promo-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, hsl(215, 60%, 15%) 0%, transparent 100%);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--white);
    color: var(--secondary);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================
   SERVICES SECTION (index.html)
   ========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--secondary);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--secondary-light);
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.service-link i {
    transition: var(--transition);
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* ==========================================
   WHY CHOOSE US (PRE优势)
   ========================================== */
.why-us {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-feature-item {
    display: flex;
    gap: 20px;
}

.why-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.why-feature-info h4 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.why-feature-info p {
    font-size: 0.95rem;
    color: var(--secondary-light);
}

.why-image-wrap {
    position: relative;
}

.why-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.why-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--grad-primary);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.why-badge-num {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-heading);
}

.why-badge-lbl {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ==========================================
   DOCTORS SECTION
   ========================================== */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.doctor-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.doctor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.doctor-img-box {
    position: relative;
    overflow: hidden;
    height: 320px;
    background-color: var(--primary-light);
}

.doctor-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.doctor-card:hover .doctor-img-box img {
    transform: scale(1.08);
}

.doctor-info {
    padding: 24px;
    text-align: center;
}

.doctor-name {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.doctor-spec {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.doctor-exp {
    font-size: 0.85rem;
    color: var(--secondary-light);
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq {
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-header {
    padding: 20px 24px;
    background: var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
}

.faq-item.active .faq-header {
    background: var(--white);
}

.faq-question {
    font-weight: 600;
    font-size: 1.1rem;
    padding-right: 16px;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

.faq-content {
    padding: 0 24px 24px 24px;
    color: var(--secondary-light);
    font-size: 0.95rem;
}

/* ==========================================
   PRICES PAGE (prices.html)
   ========================================== */
.prices-header {
    background: var(--grad-dark);
    color: var(--white);
    padding: 120px 0 60px 0;
    text-align: center;
    position: relative;
}

.prices-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.search-box {
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-full);
}

.search-input {
    width: 100%;
    background: var(--white);
    padding: 16px 24px 16px 50px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    color: var(--secondary);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-light);
    font-size: 1.1rem;
}

.price-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.price-tab {
    padding: 10px 24px;
    background: var(--white);
    color: var(--secondary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.price-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
}

.price-table-wrapper {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-top: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.price-table th {
    background: var(--bg-light);
    padding: 18px 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary);
    border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}

.price-table td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    vertical-align: middle;
}

.price-table tr:hover {
    background: var(--primary-light);
}

.price-num-col {
    width: 60px;
    color: var(--secondary-light);
    font-size: 0.9rem;
}

.price-name-col {
    font-weight: 500;
}

.price-kk-sub {
    display: block;
    font-size: 0.85rem;
    color: var(--secondary-light);
    margin-top: 4px;
    font-style: italic;
}

.price-val-col {
    text-align: right;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
    white-space: nowrap;
    width: 180px;
    font-size: 1.1rem;
}

.no-results {
    padding: 40px;
    text-align: center;
    color: var(--secondary-light);
    display: none;
}

/* ==========================================
   ABOUT PAGE (about.html)
   ========================================== */
.about-header {
    background: var(--grad-dark);
    color: var(--white);
    padding: 120px 0 60px 0;
    text-align: center;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--secondary-light);
    margin-bottom: 20px;
}

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

.equipment-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.equipment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.eq-img-box {
    height: 240px;
    background: var(--primary-light);
}

.eq-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eq-info {
    padding: 24px;
}

.eq-info h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.eq-info p {
    font-size: 0.9rem;
    color: var(--secondary-light);
}

/* Gallery / License Certs */
.certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.cert-card {
    background: var(--white);
    padding: 16px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.cert-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.cert-img-box {
    height: 240px;
    background: #eaeaea;
    margin-bottom: 12px;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-img-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.cert-card span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* ==========================================
   CONTACTS PAGE (contacts.html)
   ========================================== */
.contacts-header {
    background: var(--grad-dark);
    color: var(--white);
    padding: 120px 0 60px 0;
    text-align: center;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-panel {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.contact-info-text p {
    font-size: 0.95rem;
    color: var(--secondary-light);
    white-space: pre-line;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-btn.wa { background: #25d366; }
.social-btn.tg { background: #0088cc; }
.social-btn.ig { background: #e1306c; }
.social-btn.dg { background: #2ebb5a; }
.social-btn.ym { background: #ff3e30; }

.social-btn:hover {
    transform: translateY(-3px);
    filter: brightness(0.9);
}

/* Map & Form Panel */
.contacts-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-container {
    height: 350px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form-panel {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form-panel h3 {
    margin-bottom: 24px;
    font-size: 1.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-light);
}

.form-input {
    width: 100%;
    padding: 14px 20px;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--primary-light);
}

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

/* ==========================================
   BOOKING MODAL
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-window {
    background: var(--white);
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: scale(0.9);
    transition: var(--transition-slow);
    position: relative;
}

.modal-overlay.open .modal-window {
    transform: scale(1);
}

.modal-header {
    background: var(--grad-dark);
    padding: 24px 30px;
    color: var(--white);
    position: relative;
}

.modal-header h3 {
    font-size: 1.5rem;
}

.modal-header p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 4px;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--white);
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
}

/* Success / Status Message */
.status-msg {
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    display: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.status-msg.success {
    background-color: var(--success-light);
    color: var(--success);
    border: 1px solid var(--success);
    display: block;
}

.status-msg.error {
    background-color: hsl(0, 80%, 95%);
    color: var(--error);
    border: 1px solid var(--error);
    display: block;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 20px;
}

/* ==========================================
   ANIMATIONS & RESPONSIVE
   ========================================== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-wrap {
        order: -1;
    }
    
    .floating-card.card-1 {
        left: 20px;
    }
    
    .floating-card.card-2 {
        right: 20px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .why-badge {
        bottom: -20px;
        left: 20px;
        right: 20px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Menu Breakpoint at 1024px */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 40px 24px;
        gap: 24px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-slow);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .header-actions .btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .promo-slide {
        grid-template-columns: 1fr;
    }
    
    .promo-image {
        height: 250px;
    }
    
    .promo-content {
        padding: 30px;
    }
    
    .slider-controls {
        left: 30px;
        bottom: 20px;
    }
    
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Price Table Responsive Cards on Mobile */
    .price-table-wrapper {
        overflow: visible;
        box-shadow: none;
        border: none;
        background: transparent;
    }
    .price-table, .price-table tbody, .price-table tr {
        display: block;
    }
    .price-table thead {
        display: none;
    }
    .price-table tr {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        padding: 16px;
        background: var(--white);
        border-radius: var(--radius-md);
        margin-bottom: 12px;
        box-shadow: var(--shadow-sm);
        border: 1px solid rgba(0, 0, 0, 0.03);
    }
    .price-table tr:hover {
        background: var(--primary-light);
    }
    .price-num-col {
        display: none !important;
    }
    .price-table td {
        padding: 0 !important;
        border: none !important;
    }
    .price-name-col {
        font-size: 0.95rem;
        flex: 1;
        padding-right: 12px;
    }
    .price-val-col {
        font-size: 1.1rem;
        color: var(--primary);
        font-weight: 700;
        text-align: right !important;
        width: auto !important;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .promo-slide h3 {
        font-size: 1.8rem;
    }
    
    .price-tab {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-header {
        padding: 20px;
    }

    .hero-call-center {
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 8px 16px;
        font-size: 0.95rem;
        border-radius: var(--radius-md);
        gap: 6px 10px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==========================================
   CALL CENTER HIGHLIGHTED STYLES
   ========================================== */
.hero-call-center {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    background: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    border: 1.5px solid rgba(0, 162, 232, 0.15);
    width: fit-content;
}

.hero-call-center i {
    color: var(--primary);
    font-size: 1.25rem;
    animation: pulse 2s infinite;
}

.hero-call-center .highlight-phone {
    color: var(--primary);
    font-weight: 800;
    transition: var(--transition);
    white-space: nowrap;
}

.hero-call-center .highlight-phone:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.contact-info-item.highlight-card {
    background: var(--white);
    border: 2px solid var(--primary) !important;
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-info-item.highlight-card:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-lg);
}

.contact-info-item.highlight-card h4 {
    color: var(--primary);
    font-weight: 700;
}

.contact-info-item.highlight-card p {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--secondary);
    margin-top: 4px;
}

.contact-info-item.highlight-card p a {
    transition: var(--transition);
}

.contact-info-item.highlight-card p a:hover {
    color: var(--primary);
}
