* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #003D5C;
    --secondary-color: #D4AF37;
    --accent-orange: #FF6B35;
    --dark-color: #1a1a1a;
    --light-color: #F8F9FA;
    --white: #ffffff;
    --gray: #5A6C7D;
    --light-blue: #E8F4F8;
    --border-radius: 12px;
    --shadow: 0 4px 20px rgba(0, 61, 92, 0.15);
    --shadow-hover: 0 8px 30px rgba(0, 61, 92, 0.25);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Noto Sans Georgian', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.75;
    color: var(--dark-color);
    background: var(--white);
}

/* Georgian text needs more line-height */
[lang="ka"], [data-lang="ka"] {
    line-height: 1.85;
    letter-spacing: 0.01em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Language Toggle */
.lang-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--white);
    border-radius: 25px;
    box-shadow: var(--shadow);
    display: flex;
    padding: 4px;
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 20px;
    font-weight: 500;
    transition: var(--transition);
    font-size: 14px;
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo svg {
    filter: drop-shadow(0 2px 4px rgba(0, 61, 92, 0.2));
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
}

.logo-subtitle {
    font-size: 12px;
    color: var(--gray);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    font-size: 15px;
}

.nav a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    /* 
    ═══════════════════════════════════════════════════════════
    КАК ДОБАВИТЬ ФОТО НА ФОН:
    ═══════════════════════════════════════════════════════════
    
    ВАРИАНТ 1: Локальное фото (рекомендуется)
    1. Создай папку images/ в корне проекта
    2. Положи фото (например: hero-background.jpg)
    3. Раскомментируй строку ниже и удали SVG url:
    */
    /* 
    ✅ АКТИВИРОВАНО: Твое фото будет использоваться как фон
    Положи файл hero-background.jpg в папку images/
    Если файл называется по-другому, измени имя ниже
    */
    background: 
        linear-gradient(135deg, rgba(0, 61, 92, 0.88) 0%, rgba(0, 42, 64, 0.92) 100%),
        url('images/hero-background.jpg'),
        /* Запасной вариант если твое фото не загрузится: */
        url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1920&q=80'),
    
    /*
    ═══════════════════════════════════════════════════════════
    АЛЬТЕРНАТИВНЫЕ ВАРИАНТЫ (если нет своего фото):
    ═══════════════════════════════════════════════════════════
    
    ВАРИАНТ 2: Фото из интернета
    Раскомментируй строку ниже и вставь свой URL:
    */
    /* url('https://your-image-url.com/batumi-port.jpg'), */
    
    /*
    ВАРИАНТ 3: Unsplash (бесплатные фото)
    Раскомментируй одну из строк:
    */
    /* url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1920'), */ /* Капитанский мостик */
    /* url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=1920'), */ /* Порт */
    /* url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?w=1920'), */ /* Море и корабль */
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="sky" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:%23b8d4e8;stop-opacity:1" /><stop offset="100%" style="stop-color:%234a90c4;stop-opacity:1" /></linearGradient><linearGradient id="sea" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:%234a90c4;stop-opacity:1" /><stop offset="100%" style="stop-color:%23003D5C;stop-opacity:1" /></linearGradient></defs><rect fill="url(%23sky)" width="1200" height="300"/><rect y="300" fill="url(%23sea)" width="1200" height="300"/><rect fill="%23333" x="0" y="0" width="200" height="600" opacity="0.3"/><rect fill="%23333" x="1000" y="0" width="200" height="600" opacity="0.3"/><rect fill="%23222" x="400" y="250" width="400" height="100" rx="5" opacity="0.4"/><circle cx="600" cy="300" r="30" fill="%23FFD700" opacity="0.6"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax эффект */
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.12) 0%, transparent 50%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.accreditation-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.25);
    padding: 12px 24px;
    border-radius: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    font-size: 15px;
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { 
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% { 
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 30px rgba(212, 175, 55, 0.5);
    }
}

.badge-icon {
    background: var(--secondary-color);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 14px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: #E55A2B;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5), 0 0 40px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-large {
    width: 100%;
    padding: 16px;
    font-size: 18px;
}

/* Quick Info */
.quick-info {
    padding: 60px 0;
    background: var(--light-blue);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-top: 3px solid var(--secondary-color);
}

.info-icon {
    margin-bottom: 15px;
    color: var(--accent-orange);
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-icon svg {
    width: 48px;
    height: 48px;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.info-card p {
    color: var(--gray);
    font-size: 15px;
}

/* Certificate Types Section */
.certificate-types {
    padding: 80px 0;
    background: var(--white);
}

.cert-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.cert-type-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-top: 4px solid;
    text-align: center;
}

.cert-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: var(--transition);
}

.cert-type-card.medical {
    border-top-color: #E74C3C;
}

.cert-type-card.drug {
    border-top-color: #3498DB;
}

.cert-type-card.vaccination {
    border-top-color: #F39C12;
}

.cert-type-card.flag {
    border-top-color: var(--secondary-color);
}

.cert-type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.cert-type-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.cert-type-card.medical:hover::before {
    background: #E74C3C;
}

.cert-type-card.drug:hover::before {
    background: #3498DB;
}

.cert-type-card.vaccination:hover::before {
    background: #F39C12;
}

.cert-type-card.flag:hover::before {
    background: var(--secondary-color);
}

.cert-type-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-blue);
    transition: var(--transition);
}

.cert-type-card.medical .cert-type-icon {
    color: #E74C3C;
}

.cert-type-card.drug .cert-type-icon {
    color: #3498DB;
}

.cert-type-card.vaccination .cert-type-icon {
    color: #F39C12;
}

.cert-type-card.flag .cert-type-icon {
    color: var(--secondary-color);
}

.cert-type-card:hover .cert-type-icon {
    transform: scale(1.1) rotate(5deg);
}

.cert-type-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1.4;
}

.cert-type-subtitle {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 15px;
    font-style: italic;
}

.cert-type-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-orange) 100%);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-card.featured {
    border: 3px solid var(--secondary-color);
    background: linear-gradient(to bottom, #FFFEF7 0%, var(--white) 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.service-icon {
    margin-bottom: 20px;
    color: var(--accent-orange);
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon svg {
    width: 64px;
    height: 64px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.service-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--gray);
}

.service-card ul li:before {
    content: "⚓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 14px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Certificates */
.certificates {
    padding: 80px 0;
    background: var(--white);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.cert-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.cert-badge {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cert-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.cert-card p {
    color: var(--gray);
    font-size: 14px;
}

/* Booking Section */
.booking {
    padding: 80px 0;
    background: var(--light-blue);
}

/* Stepper */
.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-color);
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    transition: var(--transition);
    border: 3px solid var(--light-color);
}

.step.active .step-number {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 61, 92, 0.3);
}

.step.completed .step-number {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.step-label {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
    text-align: center;
}

.step.active .step-label {
    color: var(--primary-color);
    font-weight: 700;
}

.step-line {
    flex: 1;
    height: 3px;
    background: var(--light-color);
    margin: 0 10px;
    max-width: 100px;
    transition: var(--transition);
}

.step.completed ~ .step-line {
    background: var(--secondary-color);
}

/* Smart Form */
.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.form-step {
    display: none;
    animation: slideInRight 0.4s ease;
}

.form-step.active {
    display: block;
}

.form-step.slide-out-left {
    animation: slideOutLeft 0.4s ease;
}

.form-step.slide-in-right {
    animation: slideInRight 0.4s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50px);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    height: 56px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: var(--transition);
    font-family: inherit;
    background: var(--white);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23003D5C' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 45px;
}

.form-group select:focus {
    border-color: var(--primary-color);
}

.form-group select option {
    padding: 12px;
}

.form-group textarea {
    height: auto;
    min-height: 100px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 61, 92, 0.1);
}

.form-group input.warning {
    border-color: #F39C12;
    background: #FFF9E6;
    animation: shake 0.5s ease;
}

.form-group input.error {
    border-color: #E74C3C;
    animation: shake 0.5s ease;
}

.form-group input.success {
    border-color: var(--secondary-color);
}

.field-hint {
    display: block;
    font-size: 13px;
    color: var(--gray);
    margin-top: 5px;
}

.form-group input.warning ~ .field-hint {
    color: #F39C12;
}

.form-group input[type="date"] ~ .field-hint {
    display: block;
    color: var(--gray);
}

.field-error {
    display: none;
    font-size: 13px;
    color: #E74C3C;
    margin-top: 5px;
    font-weight: 500;
}

.form-group input.error ~ .field-error,
.input-with-counter input.error ~ .char-counter ~ .field-error {
    display: block;
}

/* Input with counter */
.input-with-counter {
    position: relative;
}

.input-with-counter input {
    padding-right: 60px;
}

.char-counter {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: var(--gray);
    font-weight: 600;
    pointer-events: none;
}

.input-with-counter input.success ~ .char-counter {
    color: var(--secondary-color);
}

.input-with-counter input.warning ~ .char-counter {
    color: #F39C12;
}

.input-with-counter input.error ~ .char-counter {
    color: #E74C3C;
}

/* Service Options */
.service-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-option {
    cursor: pointer;
}

.service-option input[type="radio"] {
    display: none;
}

.service-option-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: var(--transition);
    background: var(--white);
}

.service-option:hover .service-option-content {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 61, 92, 0.1);
}

.service-option input[type="radio"]:checked ~ .service-option-content {
    border-color: var(--primary-color);
    background: var(--light-blue);
    box-shadow: 0 4px 15px rgba(0, 61, 92, 0.15);
}

.service-option-icon {
    font-size: 36px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-blue);
    border-radius: 12px;
}

.service-option input[type="radio"]:checked ~ .service-option-content .service-option-icon {
    background: var(--primary-color);
    color: var(--white);
}

.service-option-text h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.service-option-text p {
    font-size: 16px;
    color: var(--gray);
    font-weight: 600;
}

/* Custom Checkbox */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 16px;
    background: var(--light-blue);
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.checkbox-label:hover {
    background: #D8EBF5;
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid var(--gray);
    border-radius: 6px;
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-weight: bold;
    font-size: 16px;
}

.checkbox-text {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Company Details */
.company-details {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Buttons */
.form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.form-buttons .btn {
    flex: 1;
}

.btn-submit.success {
    background: var(--secondary-color);
    animation: successPulse 0.6s ease;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Confirmation Box */
.confirmation-box {
    background: var(--light-blue);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.confirmation-box h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.confirmation-data {
    display: grid;
    gap: 15px;
}

.confirmation-item {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: var(--white);
    border-radius: 8px;
}

.confirmation-label {
    font-weight: 600;
    color: var(--gray);
}

.confirmation-value {
    color: var(--primary-color);
    font-weight: 600;
}

/* Required Documents Section */
.required-docs {
    padding: 80px 0;
    background: #F5F5F5;
}

.docs-header {
    text-align: center;
    margin-bottom: 50px;
}

.docs-icon {
    margin-bottom: 20px;
    color: var(--accent-orange);
    display: flex;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.docs-icon svg {
    width: 64px;
    height: 64px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.docs-checklist {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.checklist-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.checklist-item[data-delay="0"].visible {
    transition-delay: 0s;
}

.checklist-item[data-delay="1"].visible {
    transition-delay: 0.15s;
}

.checklist-item[data-delay="2"].visible {
    transition-delay: 0.3s;
}

.checklist-item[data-delay="3"].visible {
    transition-delay: 0.45s;
}

.checklist-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--secondary-color);
}

.checklist-icon svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.3));
}

.checklist-content h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.checklist-content p {
    font-size: 14px;
    color: var(--gray);
}

.docs-note {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #FFF9E6;
    padding: 20px 25px;
    border-radius: var(--border-radius);
    border-left: 4px solid #F39C12;
}

.note-icon {
    flex-shrink: 0;
    color: var(--accent-orange);
    display: flex;
    align-items: center;
}

.note-icon svg {
    width: 32px;
    height: 32px;
}

.docs-note p {
    font-size: 15px;
    color: var(--dark-color);
    margin: 0;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--light-blue);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    margin-bottom: 50px;
}

.about-text .section-title {
    margin-bottom: 25px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin: 0 auto 40px;
    max-width: 800px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 700px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 48px;
    color: var(--accent-orange);
    margin-bottom: 10px;
    font-weight: 700;
}

.stat p {
    color: var(--gray);
    font-size: 16px;
    font-weight: 500;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Section - HIDDEN (info in footer) */
.contact {
    display: none;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-card-single {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-card-single h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 15px;
    display: inline-block;
}

.contact-info {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.contact-info p {
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--accent-orange);
}

/* Footer with Map */
.footer {
    position: relative;
    background: var(--primary-color);
}

.footer-map-container {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    filter: grayscale(20%) brightness(0.9);
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(0, 61, 92, 0.85) 0%, rgba(0, 42, 64, 0.9) 100%);
}

.footer-contact-card {
    max-width: 500px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-blue);
}

.contact-logo {
    color: var(--primary-color);
}

.contact-header h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.accreditation-text {
    font-size: 13px;
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-details {
    display: grid;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-item p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

.contact-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding-top: 20px;
    border-top: 2px solid var(--light-blue);
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    background: var(--primary-color);
    padding: 30px 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer-company {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-address {
    font-size: 14px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-registration {
    font-size: 13px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Courier New', monospace;
}

.footer-accreditation {
    font-size: 13px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Success Modal */
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.success-modal.show {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.success-modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    margin: 0 auto 25px;
    animation: scaleIn 0.5s ease 0.2s both;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-modal-content h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.success-message {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 10px;
    line-height: 1.6;
}

.success-submessage {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 30px;
}

.success-modal-content .btn {
    min-width: 200px;
}

/* Error Alert */
.error-alert {
    background: #FEE;
    border: 2px solid #E74C3C;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    display: none;
    align-items: center;
    gap: 12px;
    animation: shake 0.5s ease;
}

.error-alert.show {
    display: flex;
}

.error-alert-icon {
    font-size: 24px;
    color: #E74C3C;
}

.error-alert-text {
    color: #E74C3C;
    font-weight: 600;
    font-size: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 60px 0;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .accreditation-badge {
        font-size: 13px;
        padding: 10px 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cert-types-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat h3 {
        font-size: 36px;
    }
    
    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .stat h3 {
        font-size: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .lang-toggle {
        top: 10px;
        right: 10px;
    }
    
    .booking-form {
        padding: 25px;
    }
    
    .stepper {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .step-line {
        display: none;
    }
    
    .step-label {
        font-size: 11px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .service-option-content {
        flex-direction: column;
        text-align: center;
    }
    
    .success-modal-content {
        padding: 30px 20px;
        width: 95%;
    }
    
    .success-modal-content h2 {
        font-size: 22px;
    }
    
    .success-message {
        font-size: 16px;
    }
    
    .success-icon {
        width: 70px;
        height: 70px;
        font-size: 40px;
    }
    
    .docs-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .checklist-item {
        padding: 20px;
        gap: 15px;
    }
    
    .checklist-icon {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .checklist-content h3 {
        font-size: 16px;
    }
    
    .docs-note {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .footer-map-container {
        height: auto;
        min-height: 500px;
    }
    
    .footer-overlay {
        position: relative;
        background: var(--primary-color);
    }
    
    .map-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100%;
    }
    
    .footer-contact-card {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .contact-header {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}
