/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0b0b0f;
    --secondary-color: #14141a;
    --accent-color: #ff2b2b;
    --dark-color: #0b0b0f;
    --light-color: #f6f7fb;
    --white: #ffffff;
    --text-dark: #0f172a;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
    --brand-red: #ff2b2b;
    --brand-red-dark: #b30000;
    --font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: "Quantico", "Quantico Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.nav-logo,
.price,
.stat-number {
    font-family: var(--font-heading);
}

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

/* Loading Screen */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #bfe6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1), visibility 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.94);
}

.loader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.loader-logo-img {
    width: min(220px, 70vw);
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 45px rgba(11, 11, 15, 0.18));
    animation: loader-float 1.9s ease-in-out infinite;
}

@keyframes loader-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.loader-status {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 0.32em;
    font-size: 0.95rem;
    text-transform: uppercase;
    opacity: 0.92;
}

.loader-status::after {
    content: '';
    display: inline-block;
    width: 1.35em;
    text-align: left;
    animation: loader-dots 1.25s steps(4, end) infinite;
}

@keyframes loader-dots {
    0% { content: ''; }
    25% { content: '.'; }
    50% { content: '..'; }
    75% { content: '...'; }
    100% { content: ''; }
}

.page-is-loading main,
.page-is-loading .hero,
.page-is-loading section,
.page-is-loading footer,
.page-is-loading nav {
    opacity: 0;
}

nav,
main,
section,
footer {
    transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: transparent;
}

.navbar.scrolled .nav-container {
    max-width: none;
    width: 100%;
    margin: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: none;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .nav-container::before,
.navbar.scrolled .nav-container::after {
    display: none;
}

.navbar.scrolled .nav-logo,
.navbar.scrolled .nav-link,
.navbar.scrolled .nav-action-link {
    color: rgba(11, 11, 15, 0.96);
    text-shadow: none;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    background: rgba(11, 11, 15, 0.92);
    color: rgba(255, 255, 255, 1);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.10) inset;
}

.navbar.scrolled .nav-action-link:hover {
    background: rgba(11, 11, 15, 0.06);
    color: rgba(11, 11, 15, 1);
}

.nav-container {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 1rem;
    align-items: center;
    padding: 0.85rem 1.25rem;
    max-width: 1180px;
    margin: 1rem auto 0;
    background: linear-gradient(90deg, rgb(255, 255, 255) 21%, rgb(255, 43, 43) 63%, rgb(179, 0, 0) 100%);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
    font-family: var(--font-heading);
    position: relative;
    overflow: hidden;
    --nav-mx: 30%;
    --nav-my: 50%;
}

.nav-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    background:
        radial-gradient(circle at var(--nav-mx) var(--nav-my), rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.18) 24%, transparent 58%),
        radial-gradient(circle at var(--nav-mx) var(--nav-my), rgba(255, 43, 43, 0.32) 0%, transparent 55%);
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.nav-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.10) 18%, transparent 52%);
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: overlay;
}

.nav-container > * {
    position: relative;
    z-index: 1;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0.04));
    border: 1px solid rgba(37, 99, 235, 0.18);
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.logo-text {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.96);
    font-weight: 800;
    transition: var(--transition);
    position: relative;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}

.nav-link::after {
    content: none;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 0;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(11, 11, 15, 0.88);
    color: rgba(255, 255, 255, 1);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.22),
        0 0 0 1px rgba(255, 255, 255, 0.10) inset;
    text-shadow: none;
}

.nav-link.active {
    background: rgba(11, 11, 15, 0.92);
    color: rgba(255, 255, 255, 1);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.22),
        0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    text-shadow: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.9rem;
}

.nav-action-link {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 0.4rem 0.6rem;
    border-radius: 999px;
    transition: var(--transition);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}

.nav-action-link:hover {
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(11, 11, 15, 0.55);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 999;
}

body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(11, 11, 15, 0.92);
    backdrop-filter: blur(14px);
    padding: 18px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms cubic-bezier(0.22, 1, 0.36, 1), transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1003;
    display: flex;
    flex-direction: column;
}

body.nav-open .mobile-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 6px 18px;
}

.mobile-nav-logo-img {
    height: 46px;
    width: auto;
    display: block;
}

.mobile-nav-close {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.96);
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 28px;
    line-height: 1;
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 10px 6px 0;
    display: grid;
    gap: 10px;
    flex: 1;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.96);
    padding: 16px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
}

.mobile-nav-link:active {
    transform: scale(0.99);
}

.mobile-nav-actions {
    padding: 16px 6px 6px;
}

.mobile-nav-actions .btn {
    width: 100%;
    max-width: none;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

.navbar:not(.scrolled) .nav-toggle span {
    background: rgba(255, 255, 255, 0.98);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 110px;
}

.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    background-color: #0b1220;
    background-image: url('images/imagefallback.png');
    background-size: cover;
    background-position: center;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
    display: block;
    pointer-events: none;
    filter: saturate(0.95) contrast(1.05) brightness(0.95);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(11, 18, 32, 0.35) 0%, rgba(11, 18, 32, 0.55) 60%, rgba(11, 18, 32, 0.80) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 5.5rem 20px 4.5rem;
}

.hero-content--center {
    display: flex;
    justify-content: center;
    text-align: center;
}

.hero-text {
    color: var(--white);
}

.hero-text--center {
    max-width: 820px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.02;
    margin-bottom: 1.25rem;
    text-transform: none;
    letter-spacing: -1.4px;
}

.hero-title--serif {
    font-family: var(--font-heading);
    font-weight: 700;
}

.hero-title--serif .title-line {
    transform: translateY(24px);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
    opacity: 0.9;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons--center {
    justify-content: center;
}

.hero-buttons .btn {
    opacity: 1;
    transform: none;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
    color: var(--white);
    border: 1px solid rgba(255, 43, 43, 0.55);
    border-radius: 999px;
    padding: 0.95rem 1.35rem;
    box-shadow:
        0 18px 46px rgba(15, 23, 42, 0.32),
        0 0 0 1px rgba(255, 43, 43, 0.22) inset,
        0 0 30px rgba(255, 43, 43, 0.35);
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #ff4d4d, var(--brand-red-dark));
    transform: translateY(-1px);
}

.btn-hero-secondary {
    background: rgba(11, 11, 15, 0.45);
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 0.95rem 1.35rem;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--white);
    border-bottom: 3px solid var(--white);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(-10px); }
    60% { transform: rotate(45deg) translateY(-5px); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: none;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn-primary,
.btn-hero-primary {
    letter-spacing: 0.2px;
}

.btn::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -40%;
    width: 60%;
    height: 140%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-18deg);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: 0;
}

.btn {
    z-index: 0;
}

.btn > * {
    position: relative;
    z-index: 1;
}

.btn i {
    font-size: 1.1em;
    margin-left: 0.55rem;
    vertical-align: -0.12em;
}

.btn:hover::before {
    opacity: 1;
    animation: btn-sheen 1.1s ease forwards;
}

@keyframes btn-sheen {
    0% { left: -40%; }
    100% { left: 120%; }
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
    color: var(--white);
    border: 1px solid rgba(255, 43, 43, 0.55);
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.18),
        0 0 0 1px rgba(255, 43, 43, 0.22) inset,
        0 0 24px rgba(255, 43, 43, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff4d4d, var(--brand-red-dark));
    transform: translateY(-1px);
    box-shadow:
        0 22px 60px rgba(15, 23, 42, 0.22),
        0 0 0 1px rgba(255, 43, 43, 0.26) inset,
        0 0 34px rgba(255, 43, 43, 0.32);
}

.btn-secondary {
    background: rgba(11, 11, 15, 0.55);
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(11, 11, 15, 0.7);
    color: rgba(255, 255, 255, 1);
}

.btn-sm {
    padding: 0.65rem 1rem;
    border-radius: 999px;
    font-size: 0.95rem;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid rgba(11, 11, 15, 0.9);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.full-width {
    width: 100%;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

section[id] {
    scroll-margin-top: 120px;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    --title-fill: 0%;
    color: var(--brand-red);
    background: linear-gradient(90deg, rgba(11, 11, 15, 1) 0 var(--title-fill), rgba(255, 43, 43, 1) var(--title-fill) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.no-title-fill {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: currentColor;
    color: rgba(255, 255, 255, 0.96);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    position: relative;
    /* background-image: url('images/aboutimage2.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background: linear-gradient(90deg, rgba(255, 43, 43, 1) 0%, rgba(179, 0, 0, 1) 40%, rgba(11, 11, 15, 1) 100%);
}

.services .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    background: rgba(11, 11, 15, 0.92);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1);
    min-height: 520px;
    display: flex;
    align-items: flex-end;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 11, 15, 0.18) 0%, rgba(11, 11, 15, 0.78) 70%, rgba(11, 11, 15, 0.92) 100%);
    z-index: 1;
    pointer-events: none;
}

/* .service-card::after {
    content: '';
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.28), transparent 55%),
        linear-gradient(135deg, rgba(255, 43, 43, 0.92), rgba(179, 0, 0, 0.92));
    box-shadow: 0 16px 40px rgba(255, 43, 43, 0.22);
    opacity: 0.85;
    z-index: 2;
} */

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.service-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
    filter: saturate(0.95) contrast(1.05) brightness(0.88);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    position: relative;
    z-index: 2;
    padding: 2.2rem 2.2rem 2.1rem;
    width: 100%;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.96);
    font-weight: 800;
}

.service-content p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.72);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgba(255, 43, 43, 0.95);
    font-weight: bold;
}

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

.price {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.96);
}

/* Gallery Section */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background: var(--white);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

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

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.9);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
}

/* Video Section */
.video-section {
    background: var(--white);
    color: var(--text-dark);
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.video-text p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.video-placeholder {
    position: relative;
}

.video-thumbnail {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.video-embed {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    background: rgba(11, 11, 15, 0.92);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.play-button:hover {
    background: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-left: 5px;
}

/* About Section */
.about {
    background: rgba(255, 255, 255, 0.6);
}

.about-mosaic {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
    gap: 4.5rem;
    align-items: start;
}

.about-title {
    font-size: clamp(1.9rem, 3.2vw, 3.1rem);
    font-weight: 800;
    line-height: 1.1;
    --title-fill: 0%;
    color: var(--brand-red);
    background: linear-gradient(90deg, rgba(11, 11, 15, 1) 0 var(--title-fill), rgba(255, 43, 43, 1) var(--title-fill) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 38ch;
    margin-bottom: 2.25rem;
}

.about-left {
    display: grid;
    gap: 2.25rem;
    align-content: start;
}

.about-right {
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 2.6rem;
    align-content: start;
}

.about-tile {
    border-radius: 28px;
    overflow: hidden;
    background: rgba(11, 11, 15, 0.06);
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

.about-tile--lg {
    aspect-ratio: 4 / 3;
}

.about-tile--sm {
    aspect-ratio: 16 / 10;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-tile--video {
    position: relative;
}

.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-video-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.about-video-play::before {
    content: '';
    width: 72px;
    height: 72px;
    border-radius: 999px;
    background: rgba(11, 11, 15, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 43, 43, 0.25) inset,
        0 0 34px rgba(255, 43, 43, 0.25);
    backdrop-filter: blur(10px);
    transform: scale(1);
    transition: var(--transition);
}

.about-video-play:hover::before {
    transform: scale(1.06);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 43, 43, 0.28) inset,
        0 0 44px rgba(255, 43, 43, 0.32);
}

.about-video-play-icon {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid rgba(255, 255, 255, 0.95);
    transform: translateX(2px);
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
}

.about-tile--video.is-playing .about-video-play {
    opacity: 0;
    pointer-events: none;
}

.about-note {
    text-align: center;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.98rem;
    padding: 3rem 3rem;
}

/* Contact Section */
.contact {
    background: transparent;
    padding: 5rem 0;
}

.contact-panel {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 26px;
    padding: clamp(1.4rem, 3vw, 2.6rem);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.14);
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(1.5rem, 3vw, 3.2rem);
    align-items: start;
}

.contact-title {
    font-size: clamp(2.2rem, 4.2vw, 3.4rem);
    line-height: 1.02;
    margin-bottom: 1.75rem;
    color: rgba(15, 15, 18, 0.96);
    letter-spacing: -0.02em;
}

.contact-block {
    margin-bottom: 1.1rem;
}

.contact-label {
    font-size: 0.95rem;
    color: rgba(15, 15, 18, 0.52);
    margin-bottom: 0.35rem;
    font-weight: 700;
}

.contact-label i {
    margin-right: 0.45rem;
    font-size: 1.05em;
    vertical-align: -0.12em;
    color: rgba(15, 15, 18, 0.7);
}

.contact-value {
    color: rgba(15, 15, 18, 0.88);
    line-height: 1.55;
    font-weight: 600;
}

.contact-value a {
    color: inherit;
    text-decoration: none;
}

.contact-value a:hover {
    text-decoration: underline;
}

.contact-follow {
    margin-top: 1.8rem;
}

.contact-socials {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.contact-social {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.85rem;
    color: rgba(15, 15, 18, 0.86);
    background: rgba(15, 15, 18, 0.06);
    border: 1px solid rgba(15, 15, 18, 0.08);
    transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), background 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-social i {
    font-size: 1.1rem;
}

.contact-social:hover {
    transform: translateY(-2px);
    background: rgba(15, 15, 18, 0.10);
}

.contact-form-modern {
    display: grid;
    gap: 1.1rem;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-field {
    display: grid;
    gap: 0.5rem;
}

.contact-field-label {
    font-size: 0.85rem;
    font-weight: 800;
    color: rgba(15, 15, 18, 0.62);
}

.contact-form-modern input,
.contact-form-modern textarea {
    width: 100%;
    border: 0;
    background: rgba(15, 15, 18, 0.06);
    border-radius: 999px;
    padding: 0.95rem 1.15rem;
    font-size: 1rem;
    transition: box-shadow 200ms cubic-bezier(0.22, 1, 0.36, 1), background 200ms cubic-bezier(0.22, 1, 0.36, 1);
    outline: none;
}

.contact-form-modern textarea {
    border-radius: 22px;
    min-height: 200px;
    resize: vertical;
    padding-top: 1rem;
}

.contact-form-modern input:focus,
.contact-form-modern textarea:focus {
    background: rgba(15, 15, 18, 0.08);
    box-shadow: 0 0 0 4px rgba(255, 43, 43, 0.20);
}

.contact-send {
    margin-top: 0.25rem;
    width: 100%;
}

.map-section {
    background: rgba(11, 11, 15, 1);
    color: rgba(255, 255, 255, 0.92);
    padding: 5rem 0;
}

.map-section .section-subtitle {
    color: rgba(255, 255, 255, 0.68);
}

.map-header {
    text-align: left;
    margin-bottom: 1.75rem;
}

.map-frame-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
}

.map-embed {
    width: 100%;
    height: 460px;
    border: 0;
    display: block;
    filter: saturate(0.95) contrast(1.08) brightness(0.95);
}

.map-actions {
    margin-top: 1.25rem;
}

.map-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    background: rgba(255, 43, 43, 1);
    box-shadow: 0 0 0 6px rgba(255, 43, 43, 0.18), 0 18px 55px rgba(255, 43, 43, 0.35);
    z-index: 3;
}

.map-marker::before {
    content: '';
    position: absolute;
    inset: -26px;
    border-radius: 999px;
    border: 2px solid rgba(255, 43, 43, 0.45);
    opacity: 0;
    animation: map-pulse 1.35s ease-out infinite;
}

.map-marker::after {
    content: '';
    position: absolute;
    inset: -48px;
    border-radius: 999px;
    border: 1px solid rgba(255, 43, 43, 0.22);
    box-shadow: 0 0 42px rgba(255, 43, 43, 0.12);
    animation: map-spiral 3.2s linear infinite;
}

@keyframes map-pulse {
    0% { transform: scale(0.35); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: scale(1.05); opacity: 0; }
}

@keyframes map-spiral {
    0% { transform: rotate(0deg); opacity: 0.65; }
    100% { transform: rotate(360deg); opacity: 0.65; }
}

/* Footer */
.footer {
    background: transparent;
    color: var(--white);
    padding: 0;
}

.footer-inner {
    background: rgba(11, 11, 15, 1);
    padding: 3.5rem 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 3.5rem;
    padding-bottom: 2.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta h2 {
    font-size: clamp(2.1rem, 3.6vw, 1rem);
    line-height: 1.05;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.96);
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    background: linear-gradient(135deg, rgba(255, 43, 43, 0.18), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 43, 43, 0.22);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
    transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1), background 250ms cubic-bezier(0.22, 1, 0.36, 1), border-color 250ms cubic-bezier(0.22, 1, 0.36, 1);
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(255, 43, 43, 0.26), rgba(255, 255, 255, 0.10));
    border-color: rgba(255, 43, 43, 0.36);
}

.footer-cta-btn::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -20%;
    width: 70%;
    height: 220%;
    background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.28), transparent 58%);
    transform: rotate(18deg) translateX(-12%);
    opacity: 0.65;
    pointer-events: none;
}

.footer-cta-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 43, 43, 1), rgba(179, 0, 0, 1));
    box-shadow: 0 0 0 1px rgba(255, 43, 43, 0.25), 0 0 18px rgba(255, 43, 43, 0.4);
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.2rem 3.2rem;
    align-content: start;
}

.footer-col h4 {
    margin-bottom: 0.9rem;
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

.footer-col p {
color: rgba(255, 255, 255, 0.66);
line-height: 1.7;
}

.footer-links a {
color: rgba(255, 255, 255, 0.85);
text-decoration: none;
transition: var(--transition);
}

.footer-links a i {
margin-right: 0.5rem;
font-size: 1.05em;
vertical-align: -0.12em;
}

.footer-col a:hover {
color: rgba(255, 255, 255, 0.98);
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.footer-meta {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1.4rem 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
}

.footer-meta-center {
    justify-self: center;
}

.footer-meta-right {
    justify-self: end;
}

.footer-wordmark {
    background: linear-gradient(90deg, rgba(255, 43, 43, 1) 0%, rgba(179, 0, 0, 1) 40%, rgba(11, 11, 15, 1) 100%);
    padding: 2.2rem 0 3.25rem;
    overflow: hidden;
}

.footer-wordmark-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.04em;
    font-size: clamp(4.5rem, 12vw, 9.5rem);
    line-height: 0.9;
    color: rgba(0, 0, 0, 0.35);
    text-transform: uppercase;
    user-select: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle {
        margin-left: auto;
        flex: 0 0 auto;
        z-index: 1001;
    }

    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
    }

    .nav-logo {
        flex: 0 0 auto;
    }

    .nav-logo-img {
        height: 46px;
    }

    .nav-actions {
        display: none;
    }

    body.nav-open {
        overflow: hidden;
    }

    .nav-menu .nav-link {
        color: rgba(11, 11, 15, 0.92);
        text-shadow: none;
        padding: 0.85rem 0.95rem;
        border-radius: 14px;
    }

    .nav-menu li + li {
        margin-top: 0.25rem;
    }

    .hero-content {
        padding: 4.25rem 1.1rem;
        text-align: center;
    }

    .hero-title {
        line-height: 0.95;
    }

    section {
        padding: 4rem 0;
    }

    .hero-content--center {
        text-align: center;
    }

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

    .services-grid {
        gap: 1.4rem;
    }

    .service-card {
        min-height: auto;
    }

    .service-card {
        border-radius: 22px;
    }

    .video-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-mosaic {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-note {
        padding: 2rem 1.5rem;
    }

    .about-right {
        grid-template-rows: auto auto auto;
        gap: 1.75rem;
    }

    .about-title {
        margin-bottom: 1.5rem;
    }

    .contact-panel {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-title {
        text-align: center;
    }

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

    .contact-socials {
        justify-content: center;
    }

    .contact-row {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .footer-cta-btn {
        width: 100%;
        justify-content: center;
        max-width: 360px;
    }

    .footer-cols {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-meta {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.6rem;
    }

    .footer-meta-right {
        justify-self: center;
    }

    .map-embed {
        height: 360px;
    }

    .map-frame-wrap {
        border-radius: 22px;
    }

    .map-header {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-content {
        padding: 3.75rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-panel {
        padding: 1.25rem;
        border-radius: 22px;
    }

    .contact-form-modern textarea {
        min-height: 170px;
    }

    .map-embed {
        height: 300px;
    }

    .footer-wordmark-inner {
        font-size: clamp(3.4rem, 14vw, 5.6rem);
    }

    .footer-wordmark {
        padding: 1.6rem 0 2.4rem;
    }

    .service-price {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.opacity-0 {
    opacity: 0;
}

.transform-y-30 {
    transform: translateY(30px);
}

.transform-y-50 {
    transform: translateY(50px);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

img,
video,
iframe {
    max-width: 100%;
}

/* Selection color */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

/* Focus styles */
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
