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

:root {
    --primary-charcoal: #1a1a2e;
    --secondary-charcoal: #16213e;
    --accent-cyan: #00d4ff;
    --accent-cyan-hover: #00a8cc;
    --accent-orange: #ff6b35;
    --accent-orange-hover: #e55a2b;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-text: #212529;
    --light-text: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1rem;
    color: inherit;
}

strong, b {
    color: inherit;
}

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

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

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

section {
    padding: 80px 0;
    position: relative;
}

.section-dark {
    background-color: var(--primary-charcoal);
    color: var(--light-text);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark p,
.section-dark strong {
    color: var(--light-text);
}

.section-accent {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--primary-charcoal) 100%);
    color: var(--light-text);
}

.section-accent h1,
.section-accent h2,
.section-accent h3,
.section-accent h4,
.section-accent p,
.section-accent strong {
    color: var(--light-text);
}


.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.display-1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; }
.display-2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; }
.display-3 { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 700; }

.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.py-5 { padding-top: 3rem; padding-bottom: 3rem; }


.text-primary-cyan { color: var(--accent-cyan); }
.bg-primary-cyan { background-color: var(--accent-cyan); }


.header-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all var(--transition-medium);
}

.header-main.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-orange) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--light-text);
}

.logo-text {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--light-text);
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--accent-cyan);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--light-text);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

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

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

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

.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: 3px;
    background: var(--light-text);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}


.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--primary-charcoal);
    padding: 20px;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--transition-medium);
    display: none;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    display: block;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.mobile-nav-links a {
    color: var(--light-text);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px;
    display: block;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-medium);
    white-space: nowrap;
    min-height: 50px;
}

.btn-primary {
    background: var(--accent-cyan);
    color: var(--primary-charcoal);
}

.btn-primary:hover {
    background: var(--accent-cyan-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--accent-cyan);
}

.btn-secondary:hover {
    background: var(--accent-cyan);
    color: var(--primary-charcoal);
}

.btn-accent {
    background: var(--accent-orange);
    color: var(--light-text);
}

.btn-accent:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--primary-charcoal);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../visuals/index-hero.webp') center center;
    background-size: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s both;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-features {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.hero-feature-text {
    font-weight: 500;
    font-size: 0.95rem;
}

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


.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-charcoal);
    margin-bottom: 15px;
}

.section-dark .section-title {
    color: var(--light-text);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}


.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.card-dark {
    background: var(--secondary-charcoal);
}

.card-dark h1,
.card-dark h2,
.card-dark h3,
.card-dark h4,
.card-dark p,
.card-dark strong {
    color: var(--light-text);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.card-content {
    padding: 25px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-orange) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-charcoal);
    margin-bottom: 12px;
}

.section-dark .card-title {
    color: var(--light-text);
}

.card-text {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.section-dark .card-text {
    color: rgba(255, 255, 255, 0.7);
}

.card-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-cyan);
    margin-top: 15px;
}

.card-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--medium-gray);
}

.section-dark .card-price span {
    color: rgba(255, 255, 255, 0.6);
}


.service-card {
    background: white;
    border-radius: 16px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-orange));
    transform: scaleX(0);
    transition: transform var(--transition-medium);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-charcoal) 0%, var(--secondary-charcoal) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--accent-cyan);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-charcoal);
    margin-bottom: 15px;
}

.service-description {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-cyan);
}

.service-price-label {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--medium-gray);
}


.team-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 16px;
    transition: all var(--transition-medium);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.section-dark .team-card p {
    color: var(--medium-gray);
}

.team-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid var(--accent-cyan);
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-charcoal);
    margin-bottom: 5px;
}

.team-role {
    color: var(--accent-cyan);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.team-bio {
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}


.review-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 5rem;
    font-family: 'Oswald', sans-serif;
    color: var(--accent-cyan);
    opacity: 0.3;
    line-height: 1;
}

.review-content {
    position: relative;
    z-index: 1;
    font-style: italic;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.review-name {
    font-weight: 700;
    color: var(--primary-charcoal);
    font-size: 1.1rem;
}

.review-location {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.review-stars {
    color: var(--accent-orange);
    font-size: 1rem;
    margin-top: 5px;
}


.contact-section {
    background: var(--primary-charcoal);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.contact-section .contact-info h2 {
    color: var(--light-text);
}

.contact-info p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-section .contact-info p {
    color: rgba(255, 255, 255, 0.7);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-section .contact-label {
    color: var(--accent-cyan);
}

.contact-value {
    color: var(--dark-text);
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-section .contact-value {
    color: var(--light-text);
}

.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
}

.contact-form-wrapper h3 {
    font-size: 1.75rem;
    color: var(--primary-charcoal);
    margin-bottom: 25px;
}

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

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

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

.form-control::placeholder {
    color: #adb5bd;
}

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


.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 16px;
    overflow: hidden;
}

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


.footer-main {
    background: var(--primary-charcoal);
    padding: 70px 0 30px;
    color: var(--light-text);
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: var(--light-text);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-cyan);
    padding-left: 5px;
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--accent-cyan);
}


.cookie-consent-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 420px;
    background: var(--primary-charcoal);
    border-radius: 16px;
    padding: 25px;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideInUp 0.5s ease;
}

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

.cookie-content h4 {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.cookie-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    min-height: 40px;
}


.page-hero {
    padding: 140px 0 80px;
    background: var(--primary-charcoal);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../visuals/index-hero2.webp') center center;
    background-size: cover;
    opacity: 0.2;
}

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

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--light-text);
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--accent-cyan);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}


.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-charcoal);
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent-cyan);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    transition: transform var(--transition-medium);
    flex-shrink: 0;
    margin-left: 15px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-answer-content {
    padding: 0 30px 25px;
    color: var(--medium-gray);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}


.about-section {
    overflow: hidden;
}

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

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    transition: transform var(--transition-medium);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-orange) 100%);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    min-width: 160px;
}

.about-badge-number {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-text);
    line-height: 1;
}

.about-badge-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 5px;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-charcoal);
    margin-bottom: 25px;
}

.about-content p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}


.section-dark .about-content h2 {
    color: var(--light-text);
}

.section-dark .about-content p {
    color: var(--light-gray);
}


.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-cyan);
}

.about-feature-text {
    font-weight: 600;
    color: var(--primary-charcoal);
}

.section-dark .about-feature-text {
    color: var(--light-gray);
}


@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper {
        order: -1;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-nav {
        display: none;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    section {
        padding: 60px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .cookie-consent-banner {
        left: 15px;
        right: 15px;
        max-width: none;
        bottom: 15px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn-group .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.2rem;
    }

    .service-card {
        padding: 25px 20px;
    }

    .team-card {
        padding: 20px;
    }

    .team-avatar {
        width: 110px;
        height: 110px;
    }

    .contact-item {
        flex-direction: column;
        gap: 10px;
    }
}
