/* ===================================================
   IVOUCH — Global Styles
   Premium Light / White Theme
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&display=swap');

/* ─── CSS Variables (Light Theme) ─── */
:root {
    --black: #0a0a0a;
    /* main text / dark accents */
    --white: #ffffff;
    /* page background */
    --gray-100: #0a0a0a;
    /* darkest */
    --gray-200: #1a1a1a;
    --gray-300: #333333;
    --gray-400: #555555;
    --gray-500: #777777;
    --gray-600: #999999;
    --gray-700: #cccccc;
    --gray-800: #e5e5e5;
    /* borders */
    --gray-900: #f7f7f7;
    /* lightest bg tint */
    --nav-height: 80px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.2s ease;
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* custom cursor */
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul {
    list-style: none;
}

/* ─── Custom Cursor ─── */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, opacity 0.2s;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1px solid var(--white);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.12s ease, width 0.3s, height 0.3s;
    mix-blend-mode: difference;
}

.cursor.hovered {
    width: 6px;
    height: 6px;
}

.cursor-follower.hovered {
    width: 60px;
    height: 60px;
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--gray-900);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-700);
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

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

/* ─── Navigation ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 5%;
    transition: background var(--transition), border-bottom var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--gray-800);
    backdrop-filter: blur(20px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    transition: filter var(--transition-fast);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--black);
}

.logo-text span {
    font-style: italic;
    color: var(--gray-500);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-400);
    position: relative;
    transition: color var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--black);
    transition: width var(--transition);
}

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

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

.nav-links .nav-cta {
    padding: 10px 24px;
    border: 1px solid var(--black);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-links .nav-cta:hover {
    background: var(--black);
    color: var(--white);
}

.nav-links .nav-cta::after {
    display: none !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--black);
    transition: transform var(--transition), opacity var(--transition);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-500);
    transition: color var(--transition-fast);
    letter-spacing: -0.02em;
}

.mobile-menu a:hover {
    color: var(--black);
}

/* ─── Page Load Overlay ─── */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    overflow: hidden;
    color: var(--black);
}

.loader-text span {
    display: inline-block;
}

.loader-line {
    width: 0;
    height: 1px;
    background: var(--black);
    transition: none;
}

/* ─── Section Base ─── */
section {
    padding: 8rem 0;
    position: relative;
}

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

.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-500);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: currentColor;
    flex-shrink: 0;
}

/* Center adjustment for centered headers */
.text-center .section-eyebrow,
header.text-center .section-eyebrow {
    justify-content: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-title em {
    font-style: italic;
    color: var(--gray-400);
    font-weight: 400;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    line-height: 1.8;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: 1px solid;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast), transform 0.2s;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--black);
    transition: left 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

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

.btn svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.btn-primary {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
}

.btn-primary::before {
    background: var(--white);
}

.btn-primary:hover {
    color: var(--black);
    border-color: var(--black);
}

.btn-primary:hover::before {
    left: 0;
}

.btn-outline {
    border-color: var(--gray-300);
    background: transparent;
    color: var(--black);
}

.btn-outline::before {
    background: var(--black);
}

.btn-outline:hover {
    color: var(--white);
    border-color: var(--black);
}

.btn-outline:hover::before {
    left: 0;
}

.btn-outline:hover svg {
    transform: translateX(4px);
}

/* ─── Hero specific ─── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: 4rem;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
}

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

.hero-img-col {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
}

.hero-main-img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: cover;
}

.hero-trust {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-500);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.hero-trust-stars {
    color: var(--black);
    letter-spacing: 2px;
    font-size: 1.2rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 2rem;
    opacity: 0;
}

.hero-tag-dot {
    width: 6px;
    height: 6px;
    background: var(--black);
    border-radius: 50%;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    font-weight: 700;
    line-height: 1;
    color: var(--black);
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .line span {
    display: inline-block;
}

.hero-title em {
    font-style: italic;
    color: var(--gray-500);
    font-weight: 400;
}

.hero-desc {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--gray-600);
    max-width: 650px;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    opacity: 0;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    right: 5%;
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: rotate(90deg);
    transform-origin: right center;
    z-index: 1;
    opacity: 0;
}

.scroll-line {
    width: 60px;
    height: 1px;
    background: var(--gray-400);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    transform: translateX(-100%);
    animation: scrollLine 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollLine {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-500);
}

/* ─── Marquee Text ─── */
.marquee-wrapper {
    overflow: hidden;
    border-top: 1px solid var(--gray-800);
    border-bottom: 1px solid var(--gray-800);
    padding: 1rem 0;
    background: var(--gray-900);
}

.marquee-track {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

.marquee-item {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--gray-600);
    flex-shrink: 0;
}

.marquee-dot {
    color: var(--gray-700);
    flex-shrink: 0;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ─── Client Logos Scroller ─── */
.clients-section {
    padding: 6rem 0;
    overflow: hidden;
    background: var(--white);
    border-top: 1px solid var(--gray-800);
}

.clients-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee-logos 40s linear infinite;
}

.clients-track:hover {
    animation-play-state: paused;
}

.clients-scroller {
    display: flex;
    align-items: center;
    gap: 5rem;
    padding-right: 5rem;
}

.clients-scroller img {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: invert(1) opacity(0.5);
    transition: filter var(--transition-fast), transform var(--transition-fast);
}

.clients-scroller img:hover {
    filter: invert(1) opacity(1);
    transform: scale(1.05);
}

@keyframes marquee-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ─── About Preview ─── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    aspect-ratio: 4/5;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
}

.about-img-frame {
    position: absolute;
    inset: -20px;
    border: 1px solid var(--gray-800);
    z-index: -1;
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 160px;
    height: 160px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    animation: rotate 20s linear infinite;
}

.badge-num {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 5px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-800);
}

.about-stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 300;
    color: var(--black);
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* ─── Services ─── */
.services-section {
    background: var(--gray-900);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2px;
    /* border hack */
    background: var(--gray-800);
    margin-top: 4rem;
    border: 1px solid var(--gray-800);
}

.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    position: relative;
    transition: background var(--transition);
}

.service-card:hover {
    background: var(--gray-900);
}

.service-num {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.service-icon {
    width: 60px;
    height: 60px;
    stroke: var(--black);
    stroke-width: 1px;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.service-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--black);
    letter-spacing: -0.01em;
}

.service-desc {
    color: var(--gray-500);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-list li {
    font-size: 0.9rem;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--black);
    border-radius: 50%;
}

.service-arrow {
    position: absolute;
    top: 3rem;
    right: 2.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transition: all var(--transition);
}

.service-card:hover .service-arrow {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: rotate(45deg);
}

/* ─── Cards Overview (Portfolio, Why Us, etc) ─── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.why-feature {
    display: flex;
    gap: 1.5rem;
}

.why-feat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    opacity: 0.3;
}

.why-feat-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.why-feat-desc {
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* ─── Portfolio Section ─── */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition);
}

.portfolio-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.portfolio-cat {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ccc;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Testimonials ─── */
.testimonials-section {
    background: var(--gray-900);
    overflow: hidden;
}

.slider-controls {
    display: flex;
    gap: 1rem;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--gray-700);
    background: transparent;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-btn:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    min-width: 450px;
    background: var(--white);
    padding: 3.5rem;
    border: 1px solid var(--gray-800);
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    line-height: 0.5;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.testimonial-stars {
    color: var(--black);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--black);
    text-transform: uppercase;
}

/* ─── CTA Section ─── */
.cta-section {
    padding: 8rem 0;
    text-align: center;
    background: var(--black);
}

.cta-section .section-eyebrow {
    color: var(--gray-400);
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cta-title em {
    font-style: italic;
    color: var(--gray-400);
    font-weight: 400;
}

.cta-sub {
    font-size: 1.125rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.cta-section .btn-primary {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
}

.cta-section .btn-primary::before {
    background: var(--gray-300);
}

.cta-section .btn-primary:hover {
    color: var(--white);
}

/* ─── Footer ─── */
.footer {
    padding: 6rem 0 2rem;
    background: var(--gray-900);
    border-top: 1px solid var(--gray-800);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.footer-tagline {
    color: var(--gray-500);
    font-size: 0.95rem;
    max-width: 300px;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--black);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.footer-col-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--gray-500);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--black);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    font-size: 0.85rem;
    color: var(--gray-500);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

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

/* ─── Animations Helpers ─── */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
}

/* ─── Subpage Headers ─── */
.page-header {
    padding: 12rem 0 6rem;
    text-align: center;
    background: var(--white);
    border-bottom: 1px solid var(--gray-800);
}

/* ─── Contact Form ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-input {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid var(--gray-800);
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    color: var(--black);
}

.form-input:focus {
    outline: none;
    border-color: var(--black);
}

/* ─── Responsive ─── */
@media (max-width: 1200px) {
    .hero-title {
        font-size: clamp(3rem, 6vw, 5rem);
    }
}

@media (max-width: 1024px) {

    .about-grid,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-main-img {
        height: 50vh;
    }

    .hero-trust {
        left: 0;
        bottom: -1rem;
        width: 100%;
        max-width: 300px;
        padding: 1rem 1.5rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .testimonial-card {
        min-width: 350px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 5rem 0;
    }

    .nav-links,
    .nav-links .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .section-title {
        font-size: clamp(2.25rem, 8vw, 2.75rem);
    }

    .hero-scroll {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--nav-height) + 2rem);
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .page-header {
        padding: 8rem 0 4rem;
    }

    .contact-grid {
        gap: 3rem;
    }

    .testimonial-card {
        min-width: 280px;
        padding: 2rem;
    }

    .testimonial-quote {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }
}