:root {
    --midnight-blue: #1a1a2e;
    --electric-blue: #0f4c75;
    --steel-gray: #3282b8;
    --bright-cyan: #00d9ff;
    --dark-bg: #0d0d1a;
    --light-text: #e8f4f8;
    --muted-text: #8ba3b8;
    --card-bg: rgba(15, 76, 117, 0.15);
    --glass-bg: rgba(26, 26, 46, 0.85);
    --gradient-primary: linear-gradient(135deg, #1a1a2e 0%, #0f4c75 50%, #3282b8 100%);
    --gradient-accent: linear-gradient(135deg, #00d9ff 0%, #3282b8 100%);
    --gradient-hero: linear-gradient(180deg, #0d0d1a 0%, #1a1a2e 50%, #0f4c75 100%);
    --shadow-glow: 0 0 30px rgba(0, 217, 255, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --border-glow: 1px solid rgba(0, 217, 255, 0.2);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-text);
    background: var(--dark-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--light-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

p { color: var(--muted-text); }

a {
    color: var(--bright-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover { color: var(--light-text); }

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

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

.section-header h2 {
    margin-bottom: 15px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-top: var(--border-glow);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.active { transform: translateY(0); }

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.cookie-content p { font-size: 0.9rem; }

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 26, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.cookie-modal.active { display: flex; }

.cookie-modal-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: var(--border-glow);
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
}

.cookie-modal-content h3 {
    margin-bottom: 25px;
    text-align: center;
}

.cookie-option {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.cookie-option:last-of-type { border-bottom: none; }

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cookie-option-header label {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    color: var(--light-text);
}

.cookie-required {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: var(--electric-blue);
    border-radius: 4px;
    color: var(--bright-cyan);
}

.cookie-option p {
    font-size: 0.85rem;
    margin: 0;
}

.cookie-modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--midnight-blue);
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 217, 255, 0.4);
    color: var(--midnight-blue);
}

.btn-secondary {
    background: var(--electric-blue);
    color: var(--light-text);
}

.btn-secondary:hover {
    background: var(--steel-gray);
    color: var(--light-text);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--bright-cyan);
    color: var(--bright-cyan);
}

.btn-outline:hover {
    background: var(--bright-cyan);
    color: var(--midnight-blue);
}

.btn-full { width: 100%; }

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: var(--border-glow);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--light-text);
}

.logo:hover { color: var(--light-text); }

.logo-icon {
    width: 36px;
    height: 36px;
    color: var(--bright-cyan);
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: var(--muted-text);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--bright-cyan);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--bright-cyan);
    transition: all 0.3s ease;
}

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 217, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(50, 130, 184, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--card-bg);
    border: var(--border-glow);
    border-radius: 50px;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
}

.hero-badge svg {
    width: 18px;
    height: 18px;
    color: var(--bright-cyan);
}

.hero-badge span {
    font-size: 0.85rem;
    color: var(--bright-cyan);
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 217, 255, 0.3); }
    50% { box-shadow: 0 0 0 10px rgba(0, 217, 255, 0); }
}

.hero h1 {
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero > .container > p {
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 35px;
    color: var(--muted-text);
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--card-bg);
    border: var(--border-glow);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.feature-item svg {
    width: 24px;
    height: 24px;
    color: var(--bright-cyan);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: var(--card-bg);
    border: var(--border-glow);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    max-width: 400px;
    margin: 0 auto;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--bright-cyan);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: var(--midnight-blue);
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.service-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.service-link:hover svg { transform: translateX(5px); }

.why-choose {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--midnight-blue) 100%);
}

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

.why-choose-text h2 { margin-bottom: 20px; }

.why-choose-text > p {
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.benefits-list svg {
    width: 22px;
    height: 22px;
    color: var(--bright-cyan);
    flex-shrink: 0;
    margin-top: 3px;
}

.benefits-list span {
    font-size: 0.95rem;
    color: var(--light-text);
}

.why-choose-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    border: var(--border-glow);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

.stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--muted-text);
    margin-top: 5px;
    display: block;
}

.contact-form-section {
    background: var(--gradient-hero);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: var(--border-glow);
    border-radius: 20px;
    padding: 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-header h2 { margin-bottom: 12px; }

.form-header p { font-size: 0.95rem; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group { display: flex; flex-direction: column; }

.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--light-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--card-bg);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 10px;
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted-text); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bright-cyan);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300d9ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.form-group select option {
    background: var(--midnight-blue);
    color: var(--light-text);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.consent-group { margin-top: 10px; }

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--muted-text);
}

.checkbox-label input { display: none; }

.checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--bright-cyan);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-label input:checked + .checkmark {
    background: var(--bright-cyan);
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    color: var(--midnight-blue);
    font-size: 12px;
    font-weight: bold;
}

.btn-submit {
    margin-top: 10px;
    padding: 16px 32px;
}

.footer {
    background: var(--dark-bg);
    border-top: var(--border-glow);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-logo svg {
    width: 32px;
    height: 32px;
    color: var(--bright-cyan);
}

.footer-logo span {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--light-text);
}

.footer-info address {
    font-style: normal;
    line-height: 2;
}

.footer-info address p { margin: 0; }

.footer-info a { color: var(--muted-text); }
.footer-info a:hover { color: var(--bright-cyan); }

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--bright-cyan);
}

.footer-links ul { list-style: none; }

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: var(--muted-text);
    font-size: 0.9rem;
}

.footer-links a:hover { color: var(--light-text); }

.footer-bottom {
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p { font-size: 0.85rem; }

.disclaimer { margin-bottom: 10px; }

.copyright { color: var(--bright-cyan); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: var(--border-glow);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-glow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header {
    background: var(--gradient-hero);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 15px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.about-text p { margin-bottom: 20px; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.value-card {
    background: var(--card-bg);
    border: var(--border-glow);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    color: var(--midnight-blue);
}

.value-card h3 { margin-bottom: 12px; }

.services-detail {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: var(--card-bg);
    border: var(--border-glow);
    border-radius: 20px;
}

.service-detail:nth-child(even) {
    direction: rtl;
}

.service-detail:nth-child(even) > * {
    direction: ltr;
}

.service-detail-content h2 {
    margin-bottom: 15px;
    font-size: 1.75rem;
}

.service-detail-content p { margin-bottom: 20px; }

.service-detail-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail-content li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.service-detail-content li svg {
    width: 18px;
    height: 18px;
    color: var(--bright-cyan);
}

.service-detail-image {
    border-radius: 12px;
    overflow: hidden;
    border: var(--border-glow);
}

.service-detail-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.contact-info-section {
    background: var(--midnight-blue);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-details h2 { margin-bottom: 25px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--bright-cyan);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-item p, .contact-item a {
    font-size: 0.95rem;
    color: var(--muted-text);
}

.contact-item a:hover { color: var(--bright-cyan); }

.business-hours {
    background: var(--card-bg);
    border: var(--border-glow);
    border-radius: 16px;
    padding: 25px;
    margin-top: 30px;
}

.business-hours h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.business-hours p {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.business-hours span { color: var(--light-text); }

.map-container {
    border-radius: 16px;
    overflow: hidden;
    border: var(--border-glow);
    height: 100%;
    min-height: 400px;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.legal-content h1 {
    margin-bottom: 30px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin: 35px 0 15px;
    color: var(--bright-cyan);
}

.legal-content p, .legal-content li {
    font-size: 0.95rem;
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 25px 25px;
}

.legal-content li { margin-bottom: 10px; }

.legal-content a { color: var(--bright-cyan); }

.legal-content a:hover { text-decoration: underline; }

@media (max-width: 992px) {
    .why-choose-content,
    .about-content,
    .contact-grid,
    .service-detail {
        grid-template-columns: 1fr;
    }
    
    .service-detail:nth-child(even) {
        direction: ltr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        border-bottom: var(--border-glow);
    }
    
    .nav-links.active { transform: translateY(0); }
    
    .mobile-menu-btn { display: flex; }
    
    .form-row { grid-template-columns: 1fr; }
    
    .form-wrapper { padding: 25px; }
    
    .footer-content { grid-template-columns: 1fr; gap: 30px; }
    
    .hero { min-height: 70vh; }
    
    .section { padding: 60px 0; }
    
    .why-choose-stats { grid-template-columns: 1fr; }
    
    .stat-item { padding: 25px; }
    
    .stat-number { font-size: 2rem; }
}

@media (max-width: 480px) {
    .hero-cta { flex-direction: column; align-items: center; }
    
    .btn { width: 100%; max-width: 280px; }
    
    .cookie-buttons { flex-direction: column; width: 100%; }
    
    .cookie-buttons button { width: 100%; }
}
