@font-face {
    font-family: 'Outfit';
    src: url('assets/fonts/outfit-v15-latin-regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #0066ff;
    --primary-dark: #0052cc;
    --secondary: #1a1a2e;
    --accent: #00d2ff;
    --bg-dark: #0a0a0f;
    --bg-light: #ffffff;
    --text-main: #333333;
    --text-muted: #666666;
    --text-light: #f8f9fa;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --container-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --animation-swift: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    z-index: 2000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--secondary);
    font-weight: 800;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--secondary);
    font-weight: 800;
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--secondary);
    font-weight: 800;
}

h4 {
    font-size: 1.2rem;
    color: var(--secondary);
    font-weight: 800;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.5rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--primary);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span::before {
    content: '/';
    margin-right: 0.5rem;
    color: #ccc;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 4px;
    border-radius: 8px;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

.btn-light {
    background-color: white;
    color: var(--primary);
}

.btn-full {
    width: 100%;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
}

header.scrolled {
    background: #ffffff;
    padding: 0.8rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.nav-links a:hover {
    color: #ffffff;
    opacity: 0.8;
}

header.scrolled .nav-links a {
    color: var(--secondary);
}

header.scrolled .nav-links a:hover {
    color: var(--primary);
    opacity: 1;
}

header.scrolled .logo-text {
    color: var(--secondary);
}

header .logo-text {
    color: #ffffff;
}

header .logo-text span {
    color: var(--primary);
}

header.scrolled .btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

header .btn-outline {
    border-color: rgba(255, 255, 255, 0.8);
    color: rgba(255, 255, 255, 0.9);
}

header .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
}

header.scrolled .btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 15, 0.95), rgba(10, 10, 15, 0.4));
}

.hero-content {
    max-width: 700px;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 4.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.services {
    padding: 100px 0;
    background-color: #fcfcfd;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.services-grid .service-card {
    flex: 0 1 calc(33.333% - 1.34rem);
    min-width: 280px;
    max-width: 400px;
}

.service-card {
    display: block;
    color: inherit;
    background: white;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-header-image {
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.service-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-header-image img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 2rem;
    text-align: center;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 2rem auto 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-list {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    list-style: none;
    padding-left: 0;
    text-align: center;
}

.service-list li {
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--text-muted);
}

.about {
    padding: 100px 0;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 150px;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    cursor: zoom-in;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #f5f5f5;
}

.gallery-item.is-hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.btn-show-more {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-show-more:hover {
    background-color: var(--primary);
    color: white;
}

.btn-show-more i, .btn-show-more svg {
    transition: transform 0.3s ease;
}

.btn-show-more.active i, .btn-show-more.active svg {
    transform: rotate(180deg);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.sub-title {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.check-list i,
.check-list svg {
    color: var(--primary);
    flex-shrink: 0;
}

.process {
    padding: 100px 0;
    background-color: var(--secondary);
    color: white;
}

.process h2 {
    color: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
}

.step {
    position: relative;
}

.step-num {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -20px;
    left: -10px;
}

.step h4 {
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.step p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact {
    padding: 120px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-map {
    margin-top: 2rem;
    flex-grow: 1;
    border-radius: 20px;
    overflow: hidden;
    min-height: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-form-wrapper {
    background: white;
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 2px solid #f0f0f0;
}

.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

.form-required-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.form-required-note span {
    color: #c0392b;
    font-weight: 700;
}

.form-error {
    display: block;
    min-height: 1.2em;
    font-size: 0.85rem;
    color: #c0392b;
    font-weight: 600;
    margin-top: 0.4rem;
}

.form-error:empty {
    display: none;
}

.form-error--global {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    background: #fdf0ef;
    border: 1px solid #f5c6c2;
    margin-bottom: 1rem;
}

.form-error--global:empty {
    display: none;
    padding: 0;
    border: none;
    margin: 0;
}

.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.2rem;
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox-group label {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    cursor: pointer;
    margin-bottom: 0;
}

.checkbox-group label a {
    color: var(--primary);
    font-weight: 600;
}

.checkbox-group label a:hover {
    text-decoration: underline;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    transition: var(--transition);
    background-color: white;
    color: var(--text-main);
}

.form-group select:invalid {
    color: var(--text-muted);
}

.form-group option {
    color: var(--text-main);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid transparent;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.2);
}

footer {
    padding: 80px 0 30px;
    background-color: #050505;
    color: white;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact {
    margin-top: 1.2rem;
    font-style: normal;
}

.footer-contact p {
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-links h4,
.footer-legal h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary);
}

.partners {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.partner-item {
    flex: 0 1 150px;
    filter: grayscale(1);
    opacity: 0.6;
    transition: var(--transition);
    display: flex;
    justify-content: center;
}

/* Lightbox Style - Consolidated */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.show {
    display: flex;
    opacity: 1;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox.show .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    z-index: 2100;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 20px 15px;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
    z-index: 2100;
    border-radius: 5px;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        padding: 15px 10px;
        font-size: 2rem;
    }
}

/* Cursor for clickable images */
.gallery-item img, .content-image-zoom {
    cursor: zoom-in;
}

/* Image Gallery for Subpages (New unique classes) */
.sub-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.sub-gallery-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    display: block;
}

.sub-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.sub-gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.sub-gallery-item:hover img {
    transform: scale(1.08);
}

.sub-gallery-caption {
    padding: 1.2rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    background: #ffffff;
    border-top: 1px solid #f5f5f5;
}

.partner-item:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

.partner-item img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

/* Removing duplicate Lightbox block */

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    animation: zoom 0.3s ease-out;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    background: none;
    border: none;
    font-family: inherit;
}

.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 4px;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: var(--transition);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

@keyframes zoom {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.subpage-main {
    padding-top: 120px;
    min-height: 100vh;
}

.subpage-content {
    padding: 3rem 0;
}

.subpage-content .badge {
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary);
    border-color: rgba(0, 102, 255, 0.2);
}

.subpage-content h1 {
    font-size: 3rem;
    margin: 1.5rem 0;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.main-text h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--secondary);
}

.main-text h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--secondary);
}

.main-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.main-text ul {
    margin: 1.5rem 0;
}

.content-image-zoom {
    width: 100%;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-image-zoom:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-section {
    margin: 3rem 0;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    background: #f1f3f5;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.faq-question h3,
.faq-question-text {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0;
    color: var(--secondary);
    pointer-events: none;
    text-align: left;
}

.faq-answer-wrapper[hidden] {
    display: grid !important;
}

.faq-icon {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: var(--primary);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease, visibility 0.4s;
    opacity: 0;
    visibility: hidden;
}

.faq-item.active .faq-answer-wrapper {
    grid-template-rows: 1fr;
    opacity: 1;
    visibility: visible;
}

.faq-answer {
    overflow: hidden;
    min-height: 0;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0;
}

.faq-item a {
    color: var(--primary);
    font-weight: 600;
}

.faq-item a:hover {
    text-decoration: underline;
}

.content-cta {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 4rem 0;
}

.content-cta h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.content-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.sidebar {
    position: relative;
}

.sticky-sidebar {
    position: sticky;
    top: 140px;
    margin-bottom: 2rem;
}

.sidebar .service-card {
    margin-bottom: 2rem;
}

.sidebar .service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.sidebar .service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.sidebar .service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-links {
    list-style: none;
    padding: 0;
}

.service-links li {
    margin-bottom: 0.8rem;
}

.service-links a {
    display: block;
    padding: 0.8rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: var(--text-main);
    transition: var(--transition);
}

.service-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

.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;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.5);
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links.active a {
        color: var(--secondary) !important;
    }

    .mobile-menu-btn {
        display: block;
        color: white;
        transition: var(--transition);
    }

    header.scrolled .mobile-menu-btn {
        color: var(--secondary);
    }

    .hero h1 {
        font-size: 3rem;
    }

    .about-wrapper,
    .contact-grid,
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 0.5rem;
    }

    .gallery-item {
        height: 150px;
    }

    .gallery-item.large {
        grid-column: span 2;
        height: 250px;
    }

    .subpage-main {
        padding-top: 100px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sticky-sidebar {
        position: static;
    }

    .subpage-content h1 {
        font-size: 2.5rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .main-text h2 {
        font-size: 1.6rem;
    }

    .content-cta {
        padding: 2rem;
    }

    .content-cta h2 {
        font-size: 1.6rem;
    }
}



@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .subpage-main {
        padding-top: 80px;
    }

    .subpage-content {
        padding: 2rem 0;
    }

    .subpage-content h1 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .content-cta {
        padding: 1.5rem;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    html {
        scroll-behavior: auto;
    }

    .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .lightbox-content {
        animation: none;
    }

    .skip-link {
        transition: none;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -150px;
    left: 0;
    width: 100%;
    background: var(--secondary);
    color: white;
    padding: 1.5rem 5%;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: bottom 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 0.95rem;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    flex-grow: 1;
    margin-right: 2rem;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-content a:hover {
    text-decoration: none;
}

.cookie-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 2.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.3s;
    white-space: nowrap;
}

.cookie-btn:hover {
    background: var(--accent);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    .cookie-content {
        margin-right: 0;
    }
    .cookie-btn {
        width: 100%;
    }
}