/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Veith Sans';
    src: local('Aptos'), local('Segoe UI'), local('Helvetica Neue'), local('Arial');
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
}

@font-face {
    font-family: 'Veith Sans Heavy';
    src: local('Arial Black'), local('Segoe UI Black'), local('Bahnschrift SemiBold'), local('Aptos Display');
    font-style: normal;
    font-weight: 700 900;
    font-display: swap;
}

:root {
    --primary: #313131;
    --primary-light: #cf2e2e;
    --primary-dark: #212529;
    --accent: #cf2e2e;
    --accent-light: #e04444;
    --bg: #fafafa;
    --bg-dark: #212529;
    --text: #212529;
    --text-light: #5a5a5a;
    --text-lighter: #777;
    --white: #ffffff;
    --border: #dadada;
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.25);
    --red: #cf2e2e;
    --font-base: 'Veith Sans', 'Segoe UI', Arial, sans-serif;
    --font-title: 'Veith Sans Heavy', 'Arial Black', 'Segoe UI', Arial, sans-serif;
    --transition: .3s cubic-bezier(.4,0,.2,1);
    --transition-slow: .6s cubic-bezier(.4,0,.2,1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-base);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

@media (max-width: 768px) {
    body { cursor: auto; }
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

@media (max-width: 768px) {
    a { cursor: pointer; }
}

button {
    cursor: none;
    border: none;
    background: none;
    font-family: inherit;
}

@media (max-width: 768px) {
    button { cursor: pointer; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s ease, visibility .6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--accent);
    animation: loadBar 1.8s ease-in-out forwards;
}

@keyframes loadBar {
    0% { width: 0; }
    100% { width: 100%; }
}

.loader-text {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-align: center;
    font-family: var(--font-base);
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s, background .2s;
}

.cursor-follower {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .3s, height .3s, border .3s, opacity .3s;
    opacity: .5;
}

.cursor.hover {
    width: 50px;
    height: 50px;
    background: rgba(207, 46, 46, .15);
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    opacity: .2;
}

@media (max-width: 768px) {
    .cursor, .cursor-follower { display: none; }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
    font-family: var(--font-base);
    transition: color var(--transition);
}

.navbar.scrolled .nav-logo {
    color: var(--primary-dark);
}

.logo-v {
    color: var(--accent);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-link {
    color: rgba(255,255,255,.7);
    font-size: .875rem;
    font-weight: 500;
    letter-spacing: .5px;
    text-transform: uppercase;
    position: relative;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar.scrolled .nav-link {
    color: var(--text-light);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary);
}

.nav-cta {
    padding: 10px 24px;
    background: var(--accent);
    color: var(--white);
    border-radius: 100px;
    font-size: .875rem;
    font-weight: 600;
    transition: all var(--transition);
}

.nav-cta:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(207,46,46,.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
    border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
    background: var(--text);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 968px) {
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
}

.mobile-link {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 16px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all .4s ease;
    font-family: var(--font-base);
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: .1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: .15s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: .2s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: .25s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: .3s; }

.mobile-link:hover {
    color: var(--accent);
}

.mobile-info {
    margin-top: 48px;
    opacity: 0;
    transition: opacity .4s ease .4s;
}

.mobile-menu.active .mobile-info {
    opacity: 1;
}

.mobile-info p {
    color: var(--text-lighter);
    font-size: .875rem;
    margin: 4px 0;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(33, 37, 41, .85) 0%,
        rgba(49, 49, 49, .75) 50%,
        rgba(33, 37, 41, .9) 100%
    );
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 100px;
    color: rgba(255,255,255,.9);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    margin-bottom: 32px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.5); }
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-title em {
    font-style: normal;
    color: var(--accent);
    position: relative;
}

.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(207,46,46,.2);
    border-radius: 4px;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,.7);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.4);
    font-size: .75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,.2);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 3px;
    height: 8px;
    background: var(--accent);
    border-radius: 3px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(14px); opacity: 0; }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: .9rem;
    font-weight: 600;
    transition: all var(--transition);
    letter-spacing: .3px;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(207,46,46,.35);
}

.btn-outline {
    border: 2px solid rgba(255,255,255,.3);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.1);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,.3);
    color: var(--white);
}

.btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.1);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== SECTION HEADERS ===== */
.section-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--accent);
}

.section-title {
    font-family: var(--font-base);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.section-title em {
    font-style: normal;
    color: var(--accent);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-tag::before {
    display: none;
}

.section-header .section-tag {
    padding-left: 0;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    cursor: zoom-in;
}

.about-img-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform .6s ease;
}

.about-img-main:hover img {
    transform: scale(1.03);
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 6px solid var(--bg);
    box-shadow: var(--shadow-lg);
    cursor: zoom-in;
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-tertiary {
    position: absolute;
    left: -32px;
    bottom: 56px;
    width: 160px;
    height: 160px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 6px solid var(--bg);
    box-shadow: var(--shadow-lg);
    cursor: zoom-in;
}

.about-img-tertiary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 130px;
    height: 130px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(207,46,46,.4);
    z-index: 2;
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    font-family: var(--font-base);
}

.exp-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    position: absolute;
    top: 28px;
    right: 22px;
}

.exp-text {
    font-size: .7rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.about-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.value-item:hover {
    background: rgba(37, 99, 235, .04);
}

.value-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(207,46,46,.1), rgba(207,46,46,.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.value-item h4 {
    font-size: .9rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.value-item p {
    font-size: .8rem;
    color: var(--text-light);
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-img-tertiary {
        left: 10px;
        bottom: 36px;
        width: 130px;
        height: 130px;
    }
    .about-img-secondary {
        right: 10px;
        bottom: -20px;
        width: 160px;
        height: 160px;
    }
    .about-experience {
        right: auto;
        left: -10px;
        top: -10px;
        width: 110px;
        height: 110px;
    }
    .exp-number { font-size: 2rem; }
}

@media (max-width: 540px) {
    .about-values {
        grid-template-columns: 1fr;
    }
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all .4s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-img {
    height: 200px;
    overflow: hidden;
    cursor: zoom-in;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.08);
}

.service-content {
    padding: 28px;
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 16px;
    margin-top: -44px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(207,46,46,.3);
}

.service-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.service-content p {
    font-size: .875rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== STATS BANNER ===== */
.stats-banner {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
}

.stats-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(33,37,41,.93), rgba(49,49,49,.9));
}

.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-base);
    line-height: 1;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-base);
}

.stat-label {
    display: block;
    color: rgba(255,255,255,.7);
    font-size: .875rem;
    margin-top: 8px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .stat-number { font-size: 2.2rem; }
}

@media (max-width: 400px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: zoom-in;
}

.gallery-item-lg {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity .4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent);
    color: var(--white);
    border-radius: 100px;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    width: fit-content;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }
    .gallery-item-lg {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .gallery-item-lg {
        grid-column: span 1;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 0 0 120px;
}

.cta-card {
    position: relative;
    background: linear-gradient(135deg, #212529, #cf2e2e);
    border-radius: var(--radius-lg);
    padding: 80px;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.cta-content h2 {
    font-family: var(--font-base);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-content em {
    font-style: normal;
    color: var(--accent);
}

.cta-content p {
    color: rgba(255,255,255,.7);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
}

.cta-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.08);
    position: absolute;
    top: 0;
    right: 0;
}

.cta-circle-2 {
    width: 400px;
    height: 400px;
    top: -50px;
    right: -50px;
}

@media (max-width: 768px) {
    .cta-card { padding: 48px 32px; }
    .cta-section { padding: 0 0 80px; }
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(207,46,46,.1), rgba(207,46,46,.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.detail-label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-lighter);
    margin-bottom: 4px;
}

.contact-detail a,
.contact-detail span {
    display: block;
    font-size: .95rem;
    color: var(--text);
    transition: color var(--transition);
    line-height: 1.5;
}

.contact-detail a:hover {
    color: var(--primary-light);
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-family: var(--font-base);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .95rem;
    font-family: inherit;
    color: var(--text);
    background: transparent;
    transition: all var(--transition);
    outline: none;
    resize: vertical;
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 16px;
    font-size: .95rem;
    color: var(--text-lighter);
    pointer-events: none;
    transition: all .25s ease;
    background: var(--white);
    padding: 0;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(37,99,235,.1);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 14px;
    font-size: .75rem;
    color: var(--primary-light);
    padding: 0 6px;
    font-weight: 500;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 540px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 32px 24px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 4px;
    font-family: var(--font-base);
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-lighter);
    font-size: .9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4 {
    color: var(--white);
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-links a,
.footer-links span {
    display: block;
    color: var(--text-lighter);
    font-size: .875rem;
    margin-bottom: 10px;
    transition: color var(--transition);
    line-height: 1.5;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--text-lighter);
    font-size: .8rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-lighter);
    font-size: .8rem;
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-brand {
        grid-column: span 2;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        grid-column: span 1;
    }
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transform: scale(.9);
    transition: transform .4s ease;
    box-shadow: var(--shadow-xl);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: var(--white);
    font-size: 2.5rem;
    transition: all var(--transition);
    line-height: 1;
    padding: 8px;
}

.lightbox-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up,
.reveal-left,
.reveal-scale {
    opacity: 0;
    transition: all .8s cubic-bezier(.4,0,.2,1);
    transition-delay: var(--delay, 0s);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-scale {
    transform: scale(.8);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-scale.visible {
    opacity: 1;
    transform: none;
}

/* ===== SMOOTH SECTION TRANSITIONS ===== */
.services {
    background: linear-gradient(180deg, var(--bg) 0%, #f7f8f9 100%);
}

.gallery {
    background: var(--bg);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--text-lighter);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

/* ===== SELECTION ===== */
::selection {
    background: var(--accent);
    color: var(--white);
}
