/* =================================
   COSMIC CONSTRUCTIVISM THEME
   MedicoSpace - Medical Clinic
   ================================= */

:root {
    /* Cosmic Color Palette */
    --primary-color: #00f5ff;        /* Cyber Cyan */
    --secondary-color: #ff6b35;      /* Cosmic Orange */
    --accent-color: #ffd23f;         /* Space Gold */
    --background-dark: #0a0a0f;      /* Deep Space */
    --background-light: #1a1a2e;     /* Space Station */
    --text-light: #ffffff;
    --text-medium: #b8c5d6;
    --text-dark: #7a8ca8;
    --surface-1: #16213e;
    --surface-2: #1e2749;
    --surface-3: #2a3454;
    --gradient-cosmic: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --gradient-space: linear-gradient(180deg, var(--background-dark), var(--background-light));
    --shadow-cosmic: 0 10px 30px rgba(0, 245, 255, 0.3);
    --shadow-glow: 0 0 20px rgba(0, 245, 255, 0.5);
    
    /* Typography */
    --font-heading: 'Orbitron', 'Courier New', monospace;
    --font-body: 'Space Mono', 'Courier New', monospace;
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 120px 0;
    --grid-gap: 30px;
    
    /* Animations */
    --transition-cosmic: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --animation-float: float 6s ease-in-out infinite;
}

/* =================================
   RESET & BASE STYLES
   ================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* =================================
   TYPOGRAPHY
   ================================= */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-cosmic);
}

a:hover {
    color: var(--accent-color);
    text-shadow: var(--shadow-glow);
}

/* =================================
   COSMIC ELEMENTS
   ================================= */

.cosmic-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}

.cosmic-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 245, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: var(--animation-float);
    box-shadow: var(--shadow-glow);
}

.floating-particles::before {
    top: 20%;
    left: 20%;
    animation-delay: -2s;
}

.floating-particles::after {
    top: 60%;
    right: 30%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* =================================
   BUTTONS
   ================================= */

.btn-cosmic {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-cosmic);
    position: relative;
    overflow: hidden;
}

.btn-cosmic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-cosmic:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-cosmic);
    color: var(--background-dark);
    box-shadow: var(--shadow-cosmic);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--background-dark);
    box-shadow: var(--shadow-glow);
}

/* =================================
   COOKIE CONSENT
   ================================= */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface-2);
    border-top: 2px solid var(--primary-color);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition-cosmic);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.cookie-text i {
    font-size: 24px;
    color: var(--accent-color);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

/* =================================
   NAVIGATION
   ================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--primary-color);
    z-index: 1000;
    transition: var(--transition-cosmic);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-brand i {
    font-size: 32px;
    color: var(--primary-color);
    animation: var(--animation-float);
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    color: var(--text-light);
}

.brand-tagline {
    font-size: 10px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: 10px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    color: var(--text-medium);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    transition: var(--transition-cosmic);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-cosmic);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: var(--shadow-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition-cosmic);
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* =================================
   HERO SECTION
   ================================= */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 50px;
    background: var(--gradient-space);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.hero-title {
    margin-bottom: 30px;
}

.title-line {
    display: block;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--text-light);
}

.title-highlight {
    display: block;
    font-size: clamp(3rem, 6vw, 5rem);
    background: var(--gradient-cosmic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    margin: 10px 0;
}

.title-subtitle {
    display: block;
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--accent-color);
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--text-medium);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 245, 255, 0.1), rgba(255, 210, 63, 0.1));
    pointer-events: none;
}

.tech-elements {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tech-circle,
.tech-line,
.tech-dot {
    position: absolute;
    border: 2px solid var(--primary-color);
    animation: var(--animation-float);
}

.tech-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    top: -50px;
    left: -50px;
}

.tech-line {
    width: 150px;
    height: 2px;
    top: -1px;
    left: -75px;
    animation-delay: -2s;
}

.tech-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: -5px;
    right: -80px;
    animation-delay: -4s;
}

/* =================================
   SECTIONS
   ================================= */

section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--secondary-color);
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.section-title {
    color: var(--text-light);
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
}

/* =================================
   SERVICES SECTION
   ================================= */

.services {
    background: var(--surface-1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--grid-gap);
    margin-bottom: 60px;
}

.service-card {
    background: var(--surface-2);
    border: 1px solid var(--surface-3);
    border-radius: 15px;
    padding: 40px 30px;
    transition: var(--transition-cosmic);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-cosmic);
    transform: scaleX(0);
    transition: var(--transition-cosmic);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.2);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-cosmic);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: var(--background-dark);
}

.service-card h3 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 20px;
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--primary-color);
}

.service-features i {
    font-size: 12px;
}

.services-image {
    text-align: center;
    margin-top: 60px;
}

.services-image img {
    max-width: 800px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =================================
   SPECIALTIES SECTION
   ================================= */

.specialties {
    background: var(--background-dark);
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.specialty-card {
    background: var(--surface-1);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-cosmic);
    position: relative;
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.specialty-header {
    padding: 30px;
    background: var(--surface-2);
    border-bottom: 2px solid var(--primary-color);
}

.specialty-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-cosmic);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--background-dark);
}

.specialty-card h3 {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 22px;
}

.specialty-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.specialty-content {
    padding: 30px;
}

.specialty-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.specialty-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.specialty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-cosmic);
}

.specialty-card:hover .specialty-image img {
    transform: scale(1.05);
}

/* =================================
   FACILITIES SECTION
   ================================= */

.facilities {
    background: var(--surface-1);
}

.facilities-content {
    margin-bottom: 80px;
}

.facility-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.facility-block.reverse {
    direction: rtl;
}

.facility-block.reverse > * {
    direction: ltr;
}

.facility-text h3 {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 24px;
}

.facility-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.facility-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.facility-image img {
    width: 100%;
    height: auto;
    display: block;
}

.facility-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.facilities-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--surface-2);
    border: 1px solid var(--surface-3);
    border-radius: 15px;
    transition: var(--transition-cosmic);
}

.stat-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 245, 255, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-cosmic);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--background-dark);
}

.stat-info h4 {
    color: var(--text-light);
    margin-bottom: 5px;
    font-size: 16px;
}

.stat-info p {
    color: var(--text-dark);
    font-size: 12px;
    margin-bottom: 8px;
}

.stat-value {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
}

/* =================================
   EXPERIENCE SECTION
   ================================= */

.experience {
    background: var(--background-dark);
}

.experience-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.experience-block.reverse {
    direction: rtl;
}

.experience-block.reverse > * {
    direction: ltr;
}

.experience-text h3 {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 24px;
}

.experience-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.experience-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.experience-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-cosmic);
}

.experience-block:hover .experience-image img {
    transform: scale(1.02);
}

/* =================================
   CONTACT SECTION
   ================================= */

.contact {
    background: var(--surface-1);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-form {
    background: var(--surface-2);
    border: 1px solid var(--surface-3);
    border-radius: 20px;
    padding: 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 22px;
}

.form-header p {
    color: var(--text-medium);
    font-size: 14px;
}

.cosmic-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group label i {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 1px solid var(--surface-3);
    border-radius: 8px;
    background: var(--background-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-cosmic);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 15px !important;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    cursor: pointer;
    font-size: 13px !important;
    line-height: 1.4 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--surface-3);
    border-radius: 4px;
    background: var(--background-dark);
    position: relative;
    transition: var(--transition-cosmic);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--background-dark);
    font-size: 12px;
    font-weight: bold;
}

.form-submit {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: var(--transition-cosmic);
}

.form-submit.loading .btn-loading {
    opacity: 1;
}

.form-submit.loading span {
    opacity: 0;
}

.form-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 8px;
    font-size: 12px;
    color: var(--text-medium);
}

.form-note i {
    color: var(--primary-color);
    margin-top: 2px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--surface-2);
    border: 1px solid var(--surface-3);
    border-radius: 15px;
    padding: 25px;
    transition: var(--transition-cosmic);
}

.info-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 245, 255, 0.1);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.info-header i {
    width: 40px;
    height: 40px;
    background: var(--gradient-cosmic);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--background-dark);
}

.info-header h4 {
    color: var(--text-light);
    margin: 0;
    font-size: 16px;
}

.info-content p {
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 14px;
}

.info-content strong {
    color: var(--text-light);
}

.info-content a {
    color: var(--primary-color);
}

.info-content a:hover {
    color: var(--accent-color);
}

/* =================================
   FOOTER
   ================================= */

.footer {
    background: var(--background-dark);
    border-top: 2px solid var(--primary-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section h4 i {
    color: var(--primary-color);
}

.footer-brand {
    grid-column: span 2;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.brand-logo i {
    font-size: 32px;
    color: var(--primary-color);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    color: var(--text-light);
}

.brand-description {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-certifications {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-certifications span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-medium);
    font-size: 14px;
    transition: var(--transition-cosmic);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--surface-2);
    border: 1px solid var(--surface-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition-cosmic);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--background-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-bottom {
    border-top: 1px solid var(--surface-3);
    padding-top: 30px;
}

.footer-bottom-content {
    text-align: center;
}

.footer-copyright {
    margin-bottom: 15px;
}

.footer-copyright p {
    color: var(--text-medium);
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-disclaimer {
    color: var(--text-dark);
    font-size: 12px;
    line-height: 1.4;
}

/* =================================
   RESPONSIVE DESIGN
   ================================= */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
        --grid-gap: 25px;
    }
    
    .hero-container,
    .facility-block,
    .experience-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        transform: translateX(-100%);
        transition: var(--transition-cosmic);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        padding: 15px;
        border-bottom: 1px solid var(--surface-3);
        justify-content: center;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .brand-tagline {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .facilities-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 10px 15px;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .btn-cosmic {
        padding: 12px 20px;
        font-size: 12px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card,
    .contact-form,
    .info-card {
        padding: 25px 20px;
    }
    
    .facility-text h3,
    .experience-text h3 {
        font-size: 20px;
    }
}

/* =================================
   ANIMATIONS
   ================================= */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-left {
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease-out forwards;
}

/* =================================
   UTILITY CLASSES
   ================================= */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none !important; }
.visible { display: block !important; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* =================================
   ACCESSIBILITY
   ================================= */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #00ffff;
        --background-dark: #000000;
        --text-light: #ffffff;
    }
}

/* === COOKIE CONSENT === */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--surface-1) 0%, var(--surface-2) 100%);
    border-top: 2px solid var(--primary-color);
    padding: 25px;
    z-index: 10000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-consent.show {
    bottom: 0;
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    color: var(--primary-color);
    margin: 0 0 10px 0;
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
}

.cookie-text p {
    color: var(--text-medium);
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.cookie-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.cookie-links a:hover {
    border-bottom-color: var(--primary-color);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-accept {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 245, 255, 0.3);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-icon {
        font-size: 2rem;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .btn-accept {
        width: 100%;
        justify-content: center;
    }
} 