/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', sans-serif;
    background: #0A1F44;
    color: #F0F4F8;
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.02em; line-height: 1.05; }
.text-mint { color: #34D4A8; }

/* ========== SECTION TAG ========== */
.section-tag {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #34D4A8;
    background: rgba(52, 212, 168, 0.1);
    border: 1px solid rgba(52, 212, 168, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #F0F4F8;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 1.1rem;
    color: rgba(240, 244, 248, 0.7);
    max-width: 560px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 12px;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.btn--primary {
    background: #34D4A8;
    color: #0A1F44;
}
.btn--primary:hover {
    background: #2BC496;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(52, 212, 168, 0.35);
}
.btn--outline {
    background: transparent;
    color: #F0F4F8;
    border: 2px solid rgba(240, 244, 248, 0.3);
}
.btn--outline:hover {
    border-color: #34D4A8;
    color: #34D4A8;
    transform: translateY(-2px);
}
.btn--white {
    background: #F0F4F8;
    color: #0A1F44;
}
.btn--white:hover {
    background: #D0D8E0;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(240, 244, 248, 0.2);
}
.btn--lg { padding: 18px 36px; font-size: 1.05rem; border-radius: 14px; }
.btn--full { width: 100%; justify-content: center; }

/* ========== NAVBAR ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 31, 68, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(52, 212, 168, 0.1);
    transition: background 0.3s ease;
}
.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    color: #F0F4F8;
}
.nav__brand-icon {
    width: 36px;
    height: 36px;
    background: #34D4A8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav__brand-accent { color: #34D4A8; }
.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav__link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(240, 244, 248, 0.7);
    border-radius: 8px;
    transition: all 0.2s ease;
}
.nav__link:hover { color: #34D4A8; background: rgba(52, 212, 168, 0.08); }
.nav__cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #34D4A8;
    background: rgba(52, 212, 168, 0.1);
    border: 1px solid rgba(52, 212, 168, 0.3);
    padding: 10px 18px;
    border-radius: 10px;
    transition: all 0.2s ease;
}
.nav__cta:hover { background: rgba(52, 212, 168, 0.2); }
.nav__menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    padding: 4px 0;
}
.nav__menu-line {
    width: 100%;
    height: 2px;
    background: #F0F4F8;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav__menu-btn.active .nav__menu-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__menu-btn.active .nav__menu-line:nth-child(2) { opacity: 0; }
.nav__menu-btn.active .nav__menu-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== MOBILE MENU ========== */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 72px 0 0 0;
    background: rgba(10, 31, 68, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.mobile-menu.active { display: flex; }
.mobile-menu__link {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    color: #F0F4F8;
    padding: 12px 24px;
    border-radius: 12px;
    transition: color 0.2s ease;
}
.mobile-menu__link:hover { color: #34D4A8; }
.mobile-menu__cta {
    margin-top: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #34D4A8;
    background: rgba(52, 212, 168, 0.15);
    border: 1px solid rgba(52, 212, 168, 0.3);
    padding: 14px 32px;
    border-radius: 12px;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    padding: 100px 24px 60px;
    position: relative;
    overflow: hidden;
    background: #0A1F44;
}
.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(52, 212, 168, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(52, 212, 168, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.hero__shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.hero__shape--1 {
    width: 600px;
    height: 600px;
    background: rgba(52, 212, 168, 0.04);
    top: -200px;
    right: -100px;
    border: 1px solid rgba(52, 212, 168, 0.06);
}
.hero__shape--2 {
    width: 300px;
    height: 300px;
    background: rgba(52, 212, 168, 0.06);
    bottom: 10%;
    left: -80px;
}
.hero__shape--3 {
    width: 120px;
    height: 120px;
    background: rgba(52, 212, 168, 0.1);
    top: 25%;
    right: 15%;
    border-radius: 24px;
    transform: rotate(45deg);
}
.hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #34D4A8;
    background: rgba(52, 212, 168, 0.1);
    border: 1px solid rgba(52, 212, 168, 0.25);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: #34D4A8;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.hero__headline {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    color: #F0F4F8;
    line-height: 1.0;
    margin-bottom: 24px;
}
.hero__headline .highlight {
    color: #34D4A8;
    position: relative;
}
.hero__sub {
    font-size: 1.1rem;
    color: rgba(240, 244, 248, 0.7);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 500px;
}
.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero__stats {
    display: flex;
    align-items: center;
    gap: 24px;
}
.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hero__stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: #34D4A8;
    letter-spacing: 0.03em;
}
.hero__stat-label {
    font-size: 0.75rem;
    color: rgba(240, 244, 248, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(52, 212, 168, 0.2);
}

/* Hero Visual */
.hero__visual { position: relative; }
.hero__photo-stack { position: relative; }
.hero__photo {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.hero__photo--main {
    width: 100%;
    aspect-ratio: 4/5;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}
.hero__photo--main img,
.hero__photo--float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__photo--float {
    position: absolute;
    bottom: -30px;
    left: -50px;
    width: 55%;
    aspect-ratio: 3/2;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid #0A1F44;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.hero__accent-block {
    position: absolute;
    top: 30px;
    right: -30px;
    background: #34D4A8;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 20px 50px rgba(52, 212, 168, 0.3);
    z-index: 2;
}
.hero__accent-inner {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero__accent-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #0A1F44;
    line-height: 1;
}
.hero__accent-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(10, 31, 68, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(240, 244, 248, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: float-down 2s ease-in-out infinite;
}
@keyframes float-down {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ========== SERVICES ========== */
.services {
    padding: 100px 24px;
    background: #071837;
    position: relative;
}
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52, 212, 168, 0.3), transparent);
}
.services__header {
    text-align: center;
    margin-bottom: 60px;
}
.services__header .section-desc { margin: 0 auto; }
.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.service-card {
    background: rgba(240, 244, 248, 0.03);
    border: 1px solid rgba(240, 244, 248, 0.06);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    background: rgba(52, 212, 168, 0.05);
    border-color: rgba(52, 212, 168, 0.2);
    transform: translateY(-4px);
}
.service-card--featured {
    background: linear-gradient(135deg, rgba(52, 212, 168, 0.12) 0%, rgba(52, 212, 168, 0.04) 100%);
    border-color: rgba(52, 212, 168, 0.25);
    grid-column: span 1;
}
.service-card--featured::before {
    content: 'Most Requested';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0A1F44;
    background: #34D4A8;
    padding: 4px 10px;
    border-radius: 50px;
}
.service-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(52, 212, 168, 0.1);
    border: 1px solid rgba(52, 212, 168, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #34D4A8;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.service-card:hover .service-card__icon {
    background: #34D4A8;
    color: #0A1F44;
}
.service-card__title {
    font-size: 1.3rem;
    color: #F0F4F8;
    margin-bottom: 10px;
}
.service-card__desc {
    font-size: 0.9rem;
    color: rgba(240, 244, 248, 0.6);
    line-height: 1.6;
}

/* ========== ABOUT ========== */
.about {
    padding: 100px 24px;
    background: #0A1F44;
    position: relative;
    overflow: hidden;
}
.about__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about__visual { position: relative; }
.about__image-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}
.about__image-main img {
    width: 100%;
    height: 640px;
    object-fit: cover;
}
.about__image-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid #0A1F44;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.about__image-accent img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.about__badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: #34D4A8;
    color: #0A1F44;
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    box-shadow: 0 16px 40px rgba(52, 212, 168, 0.3);
    z-index: 2;
}
.about__content { max-width: 520px; }
.about__text {
    font-size: 1.05rem;
    color: rgba(240, 244, 248, 0.7);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about__values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}
.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.value-item__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(52, 212, 168, 0.1);
    border: 1px solid rgba(52, 212, 168, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #34D4A8;
}
.value-item strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    color: #F0F4F8;
    letter-spacing: 0.02em;
    margin-bottom: 2px;
}
.value-item span {
    font-size: 0.875rem;
    color: rgba(240, 244, 248, 0.6);
    line-height: 1.5;
}

/* ========== GALLERY ========== */
.gallery {
    padding: 100px 24px;
    background: #071837;
    position: relative;
}
.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52, 212, 168, 0.3), transparent);
}
.gallery__header {
    text-align: center;
    margin-bottom: 60px;
}
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}
.gallery__item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 31, 68, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery__item:hover .gallery__item-overlay { opacity: 1; }
.gallery__item-overlay span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: #34D4A8;
    letter-spacing: 0.05em;
}
.gallery__item--wide {
    grid-column: span 7;
    aspect-ratio: 2/1;
}
.gallery__item:not(.gallery__item--wide) {
    aspect-ratio: 1/1;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    padding: 100px 24px;
    background: #0A1F44;
    position: relative;
    overflow: hidden;
}
.cta-banner__shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.cta-banner__shape--1 {
    width: 500px;
    height: 500px;
    background: rgba(52, 212, 168, 0.05);
    top: -200px;
    left: -100px;
}
.cta-banner__shape--2 {
    width: 300px;
    height: 300px;
    background: rgba(52, 212, 168, 0.04);
    bottom: -100px;
    right: -50px;
}
.cta-banner__inner {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(52, 212, 168, 0.12) 0%, rgba(52, 212, 168, 0.04) 100%);
    border: 1px solid rgba(52, 212, 168, 0.2);
    border-radius: 32px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-banner__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #F0F4F8;
    margin-bottom: 12px;
}
.cta-banner__text {
    font-size: 1.05rem;
    color: rgba(240, 244, 248, 0.7);
    max-width: 480px;
}
.cta-banner__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========== CONTACT ========== */
.contact {
    padding: 100px 24px;
    background: #071837;
    position: relative;
}
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52, 212, 168, 0.3), transparent);
}
.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact__desc {
    font-size: 1.05rem;
    color: rgba(240, 244, 248, 0.7);
    line-height: 1.7;
    margin-bottom: 36px;
}
.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}
.contact__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact__detail-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(52, 212, 168, 0.1);
    border: 1px solid rgba(52, 212, 168, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #34D4A8;
}
.contact__detail strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.05rem;
    color: #F0F4F8;
    margin-bottom: 4px;
}
.contact__detail span,
.contact__detail a {
    font-size: 0.9rem;
    color: rgba(240, 244, 248, 0.6);
    line-height: 1.5;
}
.contact__detail a:hover { color: #34D4A8; }
.contact__map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Contact Form */
.contact__form-wrap { position: relative; }
.contact__form-card {
    background: rgba(240, 244, 248, 0.03);
    border: 1px solid rgba(240, 244, 248, 0.08);
    border-radius: 24px;
    padding: 40px;
}
.contact__form-title {
    font-size: 1.8rem;
    color: #F0F4F8;
    margin-bottom: 8px;
}
.contact__form-sub {
    font-size: 0.9rem;
    color: rgba(240, 244, 248, 0.6);
    margin-bottom: 28px;
}
.form__group { margin-bottom: 20px; }
.form__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(240, 244, 248, 0.5);
    margin-bottom: 8px;
}
.form__input {
    width: 100%;
    background: rgba(240, 244, 248, 0.05);
    border: 1px solid rgba(240, 244, 248, 0.1);
    border-radius: 12px;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #F0F4F8;
    transition: all 0.2s ease;
    outline: none;
}
.form__input::placeholder { color: rgba(240, 244, 248, 0.3); }
.form__input:focus {
    border-color: rgba(52, 212, 168, 0.5);
    background: rgba(52, 212, 168, 0.05);
    box-shadow: 0 0 0 3px rgba(52, 212, 168, 0.1);
}
.form__select { appearance: none; cursor: pointer; }
.form__textarea { resize: vertical; min-height: 100px; }

/* Form Success */
.form__success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form__success.active { display: block; }
.form__success-icon { margin-bottom: 16px; }
.form__success-title {
    font-size: 1.6rem;
    color: #34D4A8;
    margin-bottom: 8px;
}
.form__success-text {
    font-size: 0.95rem;
    color: rgba(240, 244, 248, 0.7);
    line-height: 1.6;
}
.form__success-text a { color: #34D4A8; text-decoration: underline; }

/* ========== FOOTER ========== */
.footer {
    padding: 60px 24px 30px;
    background: #061430;
    border-top: 1px solid rgba(52, 212, 168, 0.08);
}
.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: #F0F4F8;
    margin-bottom: 12px;
}
.footer__logo-icon {
    width: 36px;
    height: 36px;
    background: #34D4A8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer__logo-accent { color: #34D4A8; }
.footer__tagline {
    font-size: 0.9rem;
    color: rgba(240, 244, 248, 0.5);
    line-height: 1.6;
    max-width: 300px;
}
.footer__heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: #34D4A8;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}
.footer__links ul,
.footer__contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__links a,
.footer__contact a,
.footer__contact span {
    font-size: 0.9rem;
    color: rgba(240, 244, 248, 0.6);
    transition: color 0.2s ease;
}
.footer__links a:hover,
.footer__contact a:hover { color: #34D4A8; }
.footer__bottom {
    border-top: 1px solid rgba(240, 244, 248, 0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(240, 244, 248, 0.4);
}

/* ========== SCROLL REVEAL ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero__grid { gap: 40px; }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .about__layout { gap: 60px; }
    .gallery__item--wide { grid-column: span 8; }
    .gallery__item:not(.gallery__item--wide) { grid-column: span 4; }
}

@media (max-width: 768px) {
    .nav__links, .nav__cta { display: none; }
    .nav__menu-btn { display: flex; }

    .hero { padding: 100px 24px 80px; }
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero__visual { order: -1; }
    .hero__photo--float { left: -10px; bottom: -20px; width: 50%; }
    .hero__accent-block { right: -10px; top: 10px; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { justify-content: center; }
    .hero__stats { flex-wrap: wrap; }
    .hero__stat-divider { display: none; }

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

    .about__layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about__image-main img { height: 400px; }
    .about__image-accent { right: -10px; bottom: -20px; }

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery__item--wide { grid-column: span 2; }
    .gallery__item:not(.gallery__item--wide) { grid-column: span 1; }

    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }

    .contact__layout { grid-template-columns: 1fr; }
    .contact__form-card { padding: 28px; }

    .footer__top { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero__photo--float { display: none; }
    .hero__accent-block { position: relative; top: auto; right: auto; margin-top: 16px; display: inline-block; }
    .gallery__grid { grid-template-columns: 1fr; }
    .gallery__item--wide { grid-column: span 1; }
}
