/* =========================================
   Photo Alfa – Custom Styles
   Dark Navy + Yellow Theme
   ========================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg-dark:    #152032;
    --bg-card:    #1a2a3e;
    --bg-nav:     #0f1c2d;
    --yellow:     #e8c83f;
    --yellow-hover: #d4b22e;
    --btn-border: rgba(255, 255, 255, 0.28);
    --white:      #ffffff;
    --gray:       #8899a6;
    --border:     rgba(255,255,255,0.08);
    --font:       'Inter', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg-dark);
    color: var(--white);
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.65;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; object-fit: cover; }
ul { list-style: none; }

/* ---------- UTILITY ---------- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-pad { padding: 90px 0; }
.yellow { color: var(--yellow); }
.text-gray { color: var(--gray); }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .3s cubic-bezier(.4,0,.2,1),
                box-shadow .3s cubic-bezier(.4,0,.2,1),
                background .3s;
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: .01em;
}

/* Yellow filled – the primary button */
.btn-yellow {
    background: var(--yellow);
    color: #0d1b2a;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 5px solid #ffffff;
    border-bottom: 5px solid #ffffff;
}
.btn-yellow:hover {
    background: var(--yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(212,168,32,.4);
}
.btn-yellow:active { transform: translateY(0); box-shadow: none; }

/* Outline variant */
.btn-outline {
    background: transparent;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 5px solid #ffffff;
    border-bottom: 5px solid #ffffff;
    color: var(--yellow);
}
.btn-outline:hover {
    background: var(--yellow);
    color: #0d1b2a;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(212,168,32,.35);
}

.arrow-icon { width: 16px; height: 16px; display: inline-flex; align-items: center; justify-content: center; }

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}
.section-header h2 { font-size: 38px; font-weight: 700; line-height: 1.25; }
.section-header-left { flex: 1; }

.learn-more {
    color: var(--yellow);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    transition: gap .2s;
}
.learn-more:hover { gap: 10px; }


/* =========================================
   ANIMATIONS
   ========================================= */

/* Keyframes */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(.88); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(var(--rot,0deg)); }
    50%       { transform: translateY(-10px) rotate(var(--rot,0deg)); }
}
@keyframes floatCircle {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-8px) scale(1.01); }
}
@keyframes shimmer {
    from { background-position: -200% center; }
    to   { background-position:  200% center; }
}
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232,200,63,.5); }
    50%       { box-shadow: 0 0 0 14px rgba(232,200,63,0); }
}
@keyframes navSlide {
    from { opacity: 0; transform: translateY(-100%); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroText {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes gearPillReveal {
    from { opacity: 0; transform: translateX(-60px) scale(.95); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes gearCircleReveal {
    from { opacity: 0; transform: translateX(50px) scale(.9); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes dotPop {
    0%   { transform: scale(0); opacity: 0; }
    70%  { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes borderGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232,200,63,0); }
    50%       { box-shadow: 0 0 20px 4px rgba(232,200,63,.25); }
}

/* Reveal system */
[data-reveal] {
    opacity: 0;
    transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
[data-reveal="up"]    { transform: translateY(40px); }
[data-reveal="left"]  { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal="scale"] { transform: scale(.9); }
[data-reveal="fade"]  { transform: none; }

[data-reveal].revealed {
    opacity: 1;
    transform: none !important;
}

/* Stagger delays */
[data-delay="100"] { transition-delay: .1s; }
[data-delay="150"] { transition-delay: .15s; }
[data-delay="200"] { transition-delay: .2s; }
[data-delay="300"] { transition-delay: .3s; }
[data-delay="400"] { transition-delay: .4s; }
[data-delay="500"] { transition-delay: .5s; }
[data-delay="600"] { transition-delay: .6s; }
[data-delay="700"] { transition-delay: .7s; }
[data-delay="800"] { transition-delay: .8s; }


/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--bg-nav);
    border-bottom: 1px solid var(--border);
    animation: navSlide .6s ease both;
    transition: box-shadow .3s, background .3s;
}
.navbar.scrolled {
    background: rgba(15,28,45,.97);
    box-shadow: 0 4px 30px rgba(0,0,0,.5);
    backdrop-filter: blur(10px);
}
.nav-inner { display: flex; align-items: center; gap: 40px; height: 70px; }
.nav-logo {
    font-size: 20px; font-weight: 800; color: var(--white);
    white-space: nowrap; margin-right: 20px;
    transition: color .2s;
}
.nav-logo:hover { color: var(--yellow); }
.nav-menu { display: flex; align-items: center; gap: 6px; flex: 1; }
.nav-menu a {
    font-size: 14px; font-weight: 500; color: var(--gray);
    padding: 8px 12px; border-radius: 4px;
    display: flex; align-items: center; gap: 4px;
    transition: color .2s, background .2s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--yellow); }
.nav-menu a svg { opacity: .6; width: 12px; height: 12px; }
.nav-cta { margin-left: auto; white-space: nowrap; }
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 4px; margin-left: auto;
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }


/* ---------- HERO ---------- */
.hero {
    padding-top: 140px;
    padding-bottom: 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(230,176,0,.08) 0%, transparent 70%);
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
    --rot: 0deg;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* Hero text staggered entrance */
.hero-content .badge      { animation: heroText .8s .2s ease both; }
.hero-content h1          { animation: heroText .8s .35s ease both; font-size: 54px; font-weight: 800; line-height: 1.12; margin-bottom: 20px; }
.hero-content p           { animation: heroText .8s .5s ease both; color: var(--gray); max-width: 420px; margin-bottom: 36px; font-size: 14px; }
.hero-actions             { animation: heroText .8s .65s ease both; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.hero-clients { display: flex; align-items: center; gap: 12px; }
.hero-avatars { display: flex; }
.hero-avatars .av {
    width: 40px; height: 40px; border-radius: 50%;
    border: 2.5px solid var(--bg-dark);
    background: var(--bg-card);
    overflow: hidden; margin-left: -10px; flex-shrink: 0;
    transition: transform .2s;
}
.hero-avatars .av:first-child { margin-left: 0; }
.hero-avatars .av:hover { transform: translateY(-4px); z-index: 1; }
.hero-avatars .av img { width: 100%; height: 100%; object-fit: cover; }
.hero-client-text { font-size: 13px; color: var(--gray); line-height: 1.4; }
.hero-client-text strong { color: var(--white); display: block; }

/* Polaroid collage */
.hero-gallery {
    position: relative; height: 480px;
    animation: fadeIn 1s .4s ease both;
}
.polaroid {
    position: absolute;
    background: #fff;
    padding: 10px 10px 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
    border-radius: 2px;
    transition: box-shadow .3s;
}
.polaroid:hover { box-shadow: 0 28px 70px rgba(0,0,0,.65); }
.polaroid img { width: 100%; height: 100%; object-fit: cover; display: block; }
.polaroid .caption {
    position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
    font-size: 11px; color: #555; font-family: 'Georgia',serif; white-space: nowrap;
}
.polaroid-main {
    width: 220px; height: 280px;
    top: 0; left: 50%; transform: translateX(-50%);
    z-index: 3;
    animation: float 7s 1s ease-in-out infinite;
    --rot: -3deg;
}
.polaroid-left {
    width: 175px; height: 230px;
    bottom: 10px; left: 0;
    transform: rotate(-6deg);
    z-index: 2;
    animation: float 8s 1.5s ease-in-out infinite;
    --rot: -6deg;
}
.polaroid-right {
    width: 175px; height: 230px;
    bottom: 10px; right: 0;
    transform: rotate(5deg);
    z-index: 2;
    animation: float 9s 2s ease-in-out infinite;
    --rot: 5deg;
}


/* ---------- STATS ---------- */
.stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item {
    text-align: center; padding: 20px 10px;
    border-right: 1px solid var(--border);
    position: relative; overflow: hidden;
}
.stat-item::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(230,176,0,0);
    transition: background .3s;
}
.stat-item:hover::before { background: rgba(230,176,0,.04); }
.stat-item:last-child { border-right: none; }
.stat-num {
    font-size: 48px; font-weight: 800; color: var(--yellow);
    line-height: 1; margin-bottom: 8px;
    display: block;
}
.stat-label { font-size: 13px; color: var(--gray); font-weight: 500; }


/* ---------- ABOUT ---------- */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; height: 440px; }
.about-img-main {
    position: absolute; top: 0; left: 0;
    width: 75%; height: 360px;
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.about-img-main:hover img { transform: scale(1.04); }
.about-img-sub {
    position: absolute; bottom: 0; right: 0;
    width: 52%; height: 220px;
    border-radius: 12px; overflow: hidden;
    border: 4px solid var(--bg-dark);
    box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.about-img-sub img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.about-img-sub:hover img { transform: scale(1.04); }
.about-img-label {
    position: absolute;
    background: rgba(15,28,45,.9);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 11px;
    color: var(--gray);
    font-weight: 500;
}
.about-dot-grid {
    position: absolute; top: 40px; right: -20px;
    width: 90px; height: 120px;
    background-image: radial-gradient(circle, rgba(230,176,0,.25) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    animation: float 6s ease-in-out infinite;
    --rot: 0deg;
}

.about-content h2 { font-size: 40px; font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.about-content p { color: var(--gray); font-size: 14px; margin-bottom: 32px; line-height: 1.75; }

.skill-bar { margin-bottom: 20px; }
.skill-info { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 13px; font-weight: 500; }
.skill-info span:last-child { color: var(--yellow); }
.skill-track { height: 3px; background: rgba(255,255,255,.1); border-radius: 10px; overflow: hidden; }
.skill-fill {
    height: 100%; width: 0;  /* starts at 0, animated via JS */
    background: linear-gradient(90deg, var(--yellow), #ffdd66);
    border-radius: 10px;
    transition: width 1.4s cubic-bezier(.4,0,.2,1);
    position: relative;
}
.skill-fill::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.4) 50%, transparent 100%);
    background-size: 200%;
    animation: shimmer 2s infinite;
}


/* ---------- SERVICES ---------- */
.services-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 1px; background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px; overflow: hidden;
}
.service-card {
    background: var(--bg-card);
    padding: 36px 28px;
    transition: background .3s, transform .3s;
    position: relative; overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform .35s ease;
    transform-origin: left;
}
.service-card:hover { background: #1f3350; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 36px; margin-bottom: 20px; display: block; transition: transform .3s; }
.service-card:hover .service-icon { transform: scale(1.15) rotate(-5deg); }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 13px; line-height: 1.7; margin-bottom: 18px; }


/* ---------- PORTFOLIO ---------- */
.portfolio-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.portfolio-card {
    position: relative; border-radius: 12px; overflow: hidden;
    height: 300px; cursor: pointer;
}
.portfolio-card .bg-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.portfolio-card:hover .bg-img { transform: scale(1.07); }
.portfolio-card .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.15) 50%, transparent 100%);
    transition: background .3s;
}
.portfolio-card:hover .overlay { background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 60%, transparent 100%); }
.portfolio-card .card-top {
    position: absolute; top: 16px; left: 16px; right: 16px;
    display: flex; justify-content: space-between; align-items: center;
}
.year-badge {
    background: rgba(0,0,0,.5); backdrop-filter: blur(4px);
    color: #fff; font-size: 13px; font-weight: 700;
    padding: 4px 10px; border-radius: 4px;
}
.card-arrow-btn {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--yellow);
    display: flex; align-items: center; justify-content: center;
    color: #0e1a28;
    transition: transform .3s, background .3s;
}
.portfolio-card:hover .card-arrow-btn { transform: scale(1.1) rotate(45deg); }
.portfolio-card .card-bottom { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px; }
.card-meta { display: flex; gap: 10px; margin-bottom: 8px; }
.meta-tag {
    background: rgba(0,0,0,.5); backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50px; padding: 3px 10px; font-size: 11px;
    display: flex; align-items: center; gap: 5px;
}
.portfolio-card h3 { font-size: 22px; font-weight: 700; color: #fff; transform: translateY(4px); transition: transform .3s; }
.portfolio-card:hover h3 { transform: translateY(0); }


/* ---------- CTA BANNER ---------- */
.cta-banner {
    position: relative; padding: 110px 0; text-align: center; overflow: hidden;
}
.cta-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .1s linear;
}
.cta-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(14,26,40,.88) 0%, rgba(14,26,40,.65) 100%);
    z-index: 1;
}
.cta-content {
    position: relative; z-index: 2;
}
.cta-content h2 { font-size: 42px; font-weight: 700; margin-bottom: 30px; }
.cta-content .btn { animation: pulse 3s 2s infinite; }


/* ---------- GEAR ---------- */
.gear-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ── Image column ── */
.gear-images {
    display: flex;
    gap: 16px;
    align-items: center;   /* vertically center the whole group */
}

/* Tall pill – left */
.gear-img-tall {
    flex: 0 0 55%;
    height: 440px;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0,0,0,.5);
    transition: box-shadow .4s, transform .4s;
    position: relative;
}
.gear-img-tall.revealed {
    animation: gearPillReveal .8s cubic-bezier(.4,0,.2,1) both,
               floatCircle 7s 1s ease-in-out infinite;
}
.gear-img-tall:hover {
    box-shadow: 0 32px 90px rgba(0,0,0,.65), 0 0 0 3px var(--yellow);
    transform: scale(1.02);
}
.gear-img-tall img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.gear-img-tall:hover img { transform: scale(1.07); }

/* Two circles – right column */
.gear-img-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.gear-img-round {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 14px 44px rgba(0,0,0,.45);
    transition: box-shadow .4s, transform .4s;
    position: relative;
}
/* Staggered float for each circle */
.gear-circle-top.revealed {
    animation: gearCircleReveal .8s .2s cubic-bezier(.4,0,.2,1) both,
               floatCircle 6s 1.2s ease-in-out infinite;
}
.gear-circle-bottom.revealed {
    animation: gearCircleReveal .8s .45s cubic-bezier(.4,0,.2,1) both,
               floatCircle 8s 2s ease-in-out infinite;
}
.gear-img-round:hover {
    box-shadow: 0 22px 60px rgba(0,0,0,.6), 0 0 0 3px var(--yellow);
    transform: scale(1.05);
}
.gear-img-round img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.gear-img-round:hover img { transform: scale(1.08); }

/* ── Content column ── */
.gear-content h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.22;
    margin-bottom: 28px;
}

/* Thin divider between heading and list */
.gear-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin-bottom: 28px;
}

/* Gear list – 2-column grid */
.gear-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 32px;
    margin-bottom: 40px;
}
.gear-list li {
    font-size: 14px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color .2s;
    cursor: default;
    white-space: nowrap;
}
.gear-list li:hover { color: var(--white); }
.gear-icon {
    width: 18px; height: 18px;
    flex-shrink: 0;
    color: var(--gray);
    transition: color .25s, transform .25s;
}
.gear-list li:hover .gear-icon {
    color: var(--yellow);
    transform: scale(1.2);
}


/* ---------- TEAM ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.team-card {
    background: var(--yellow);
    border-radius: 12px; overflow: hidden;
    position: relative;
    transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s;
}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,.45); }
.team-card .member-img { width: 100%; height: 270px; object-fit: cover; object-position: top; display: block; transition: transform .4s; }
.team-card:hover .member-img { transform: scale(1.04); }
.team-card .socials {
    position: absolute; top: 12px; right: 12px;
    display: flex; flex-direction: column; gap: 6px;
    opacity: 0; transform: translateX(10px);
    transition: opacity .3s, transform .3s;
}
.team-card:hover .socials { opacity: 1; transform: translateX(0); }
.team-card .socials a {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(255,255,255,.9);
    display: flex; align-items: center; justify-content: center;
    color: #0e1a28; font-size: 10px; font-weight: 700;
    transition: background .2s, transform .2s;
}
.team-card .socials a:hover { background: #fff; transform: scale(1.1); }
.team-card .member-info { background: #fff; padding: 14px 16px; }
.team-card .member-info h4 { font-size: 15px; font-weight: 700; color: #0e1a28; margin-bottom: 2px; }
.team-card .member-info p { font-size: 12px; color: #666; }


/* ---------- PRICING ---------- */
.pricing-intro { text-align: center; margin-bottom: 50px; }
.pricing-intro .badge { margin: 0 auto 16px; }
.pricing-intro h2 { font-size: 40px; font-weight: 700; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px; padding: 36px 28px;
    transition: transform .3s, border-color .3s, box-shadow .3s;
    position: relative; overflow: hidden;
}
.pricing-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform .4s ease;
}
.pricing-card:hover { transform: translateY(-6px); border-color: rgba(230,176,0,.3); box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.pricing-card:hover::before { transform: scaleX(1); }
.pricing-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.pricing-card .desc { color: var(--gray); font-size: 13px; margin-bottom: 24px; line-height: 1.7; }
.pricing-card .price { font-size: 46px; font-weight: 800; margin-bottom: 24px; }
.pricing-card .price span { font-size: 22px; vertical-align: super; font-weight: 600; }
.pricing-card .btn { width: 100%; justify-content: center; margin-bottom: 28px; }
.pricing-card .features li {
    font-size: 13px; color: var(--gray);
    padding: 6px 0; display: flex; align-items: center; gap: 10px;
    border-bottom: 1px solid var(--border);
    transition: color .2s;
}
.pricing-card .features li:last-child { border-bottom: none; }
.pricing-card:hover .features li { color: rgba(255,255,255,.75); }
.pricing-card .features li::before { content: '↗'; color: var(--yellow); font-size: 12px; flex-shrink: 0; }


/* ---------- BRANDS ---------- */
.brands { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 50px 0; }
.brands-row {
    display: flex; align-items: center;
    justify-content: space-around; gap: 30px; flex-wrap: wrap;
}
.brand-logo {
    opacity: .25; transition: opacity .35s, transform .35s; text-align: center; color: var(--white);
}
.brand-logo:hover { opacity: .7; transform: scale(1.08); }
.brand-logo .bl-icon { font-size: 44px; line-height: 1; margin: 0 auto 8px; }
.brand-logo strong { font-size: 13px; letter-spacing: .08em; display: block; }
.brand-logo p { font-size: 10px; }


/* ---------- TESTIMONIALS ---------- */
.testimonial-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.testi-image {
    height: 440px; border-radius: 12px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.testi-image img { width: 100%; height: 100%; object-fit: cover; }
.testi-content h2 { font-size: 38px; font-weight: 700; line-height: 1.2; margin-bottom: 40px; }
.testi-card {
    background: #fff; border-radius: 12px; padding: 28px;
    color: #0e1a28;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,.15);
    transition: transform .3s, box-shadow .3s;
}
.testi-card:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(0,0,0,.2); }
.testi-card p { font-size: 13px; line-height: 1.75; color: #444; margin-bottom: 20px; transition: all .4s; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; background: var(--yellow); flex-shrink: 0; }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-author-info h5 { font-size: 15px; font-weight: 700; color: #0e1a28; }
.testi-author-info p { font-size: 12px; color: #888; margin: 0; }
.testi-quote { color: var(--yellow); font-size: 42px; font-family: serif; line-height: 1; margin-left: auto; opacity: .4; }
.testi-nav { display: flex; gap: 12px; }
.testi-btn {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--yellow); color: #0e1a28;
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center; font-size: 18px;
    transition: background .2s, transform .2s;
}
.testi-btn:hover { background: var(--yellow-hover); transform: scale(1.08); }


/* ---------- BLOG ---------- */
.blog-intro { text-align: center; margin-bottom: 50px; }
.blog-intro .badge { margin: 0 auto 16px; }
.blog-intro h2 { font-size: 38px; font-weight: 700; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card {
    background: var(--bg-card); border-radius: 12px; overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    border: 1px solid transparent;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.35); border-color: var(--border); }
.blog-thumb { height: 200px; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.blog-card:hover .blog-thumb img { transform: scale(1.07); }
.blog-body { padding: 22px; }
.blog-date { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray); margin-bottom: 12px; }
.blog-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-body p { color: var(--gray); font-size: 13px; margin-bottom: 16px; line-height: 1.65; }
.learn-more { color: var(--yellow); font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.learn-more:hover { gap: 10px; }


/* ---------- FOOTER ---------- */
.footer { background: var(--bg-dark); border-top: 1px solid var(--border); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.4fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-logo { font-size: 22px; font-weight: 800; margin-bottom: 14px; }
.footer-about p { color: var(--gray); font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 34px; height: 34px; border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--gray); font-size: 13px;
    transition: all .25s;
}
.social-links a:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-3px); }
.footer-col h4 { font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
    color: var(--gray); font-size: 13px;
    display: flex; align-items: center; gap: 8px;
    transition: color .2s, gap .2s;
}
.footer-links li a:hover { color: var(--yellow); gap: 12px; }
.footer-links li a::before { content: '↗'; color: var(--yellow); font-size: 11px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.gallery-thumb { height: 64px; border-radius: 6px; overflow: hidden; background: var(--bg-card); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.gallery-thumb:hover img { transform: scale(1.12); }
.contact-info li {
    display: flex; align-items: flex-start; gap: 10px;
    color: var(--gray); font-size: 13px;
    margin-bottom: 14px; padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.contact-info li:last-child { border-bottom: none; }
.ci-icon { color: var(--yellow); font-size: 14px; margin-top: 2px; }
.footer-bottom { border-top: 1px solid var(--border); text-align: center; padding: 18px 0; font-size: 12px; color: var(--gray); background: #0e1a28; }


/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 40px; }
    .team-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .section-header h2 { font-size: 32px; }
}
@media (max-width: 768px) {
    .nav-menu, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .nav-menu.open {
        display: flex; flex-direction: column;
        position: fixed; top: 70px; left: 0; right: 0;
        background: var(--bg-nav); padding: 20px;
        border-bottom: 1px solid var(--border); gap: 4px;
    }
    .hero-inner, .about-inner, .gear-inner, .testimonial-inner { grid-template-columns: 1fr; }
    .hero-gallery { height: 320px; margin-top: 40px; }
    .polaroid-main { width: 160px; height: 200px; }
    .polaroid-left, .polaroid-right { width: 130px; height: 170px; }
    .hero-content h1 { font-size: 32px; }
    .services-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .section-pad { padding: 60px 0; }
    .cta-content h2, .about-content h2, .pricing-intro h2, .testi-content h2 { font-size: 30px; }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 26px; }
    .stat-num { font-size: 36px; }
    .team-grid { grid-template-columns: 1fr; }
}
