/* ================================================================
   STUDIOC77 — style.css  v6.0

   RULE: Only write CSS Bootstrap 5 CANNOT do.
   RULE: No inline styles needed in HTML — use classes below.

   HOW TO USE ON OTHER PAGES:
   • Copy header.php + footer.php — no changes needed
   • Update <title>, meta, active nav link only
   • Use the classes below for ALL content

   ── QUICK CLASS REFERENCE ───────────────────────────────────
   HEADINGS:   .h-display  .h-section  .h-card  .h-small
   HEAD COLOR: .h-white  .h-navy  .h-amber
   PARAGRAPHS: .p-lead  .p-body  .p-muted  .p-small  .p-xs
   DARK BG P:  .p-light  .p-light-muted  .p-light-dim
   GOLD TEXT:  .txt-gold
   LABELS:     .eyebrow  .eyebrow.light
   BUTTONS:    .btn-primary  .btn-secondary  .btn-outline
               .btn-gold  .btn-ghost  .btn-whatsapp  .btn-book
   SECTIONS:   .py-section  .bg-soft
   CARDS:      .brand-card  .brand-card.dark  .brand-card.active
               .svc-card  .svc-card.featured
               .glass-card  .milestone-card  .process-card
               .testi-card  .testi-card.dark-card  .port-card
   ────────────────────────────────────────────────────────────

   CONTENTS:
   01. Google Fonts
   02. CSS Variables  ← EDIT HERE TO REBRAND
   03. Base Resets
   04. Typography System
   05. Button System
   06. Section Helpers
   07. Preloader
   08. Header / Navbar
   09. Hero Section
   10. Marquee Strip
   11. Brand Cards
   12. Service Cards
   13. Glass Cards
   14. Milestone / Counter Cards
   15. Video Box
   16. Portfolio Cards + Filter
   17. Process Cards
   18. Testimonial Cards
   19. CTA Section
   20. About Image Block
   21. Footer
   22. Floating Buttons
   23. Scroll Reveal
   24. Lightbox
   25. Accordion (FAQ)
   26. Reduced Motion / WCAG
================================================================ */


/* ─────────────────────────────────────────────────────
   01. GOOGLE FONTS
───────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&display=swap');


/* ─────────────────────────────────────────────────────
   02. CSS VARIABLES  ★ EDIT HERE TO REBRAND
───────────────────────────────────────────────────── */

* {
  margin:0;
  padding:0;
}

:root {
	/* Brand Colors */
	--navy: #0A1F3D;
	--navy-dark: #050F1F;
	--navy-mid: #0d2a52;
	--amber: #FFB324;
	--gold: #D4A94F;
	--gold-light: #FAE7B0;
	--gold-dark: #A87C2A;

	/* Gradients */
	--g-gold: linear-gradient(135deg, #ffbe00 0%, #D4A94F 50%, #A87C2A 100%);
	--g-navy: linear-gradient(135deg, #050F1F 0%, #0A1F3D 60%, #0d2a52 100%);

	/* Backgrounds */
	--bg-soft: #eee;
	--bg-dark: #050F1F;

	/* Text */
	--txt-dark: #0A1F3D;
	--txt-muted: #5A6A7E;

	/* Borders */
	--bdr: rgba(10, 31, 61, 0.12);
	--bdr-light: rgba(255, 255, 255, 0.10);
	--bdr-gold: rgba(212, 169, 79, 0.26);

	/* Shadows */
	--sh-sm: 0 4px 16px rgba(10, 31, 61, 0.08);
	--sh-md: 0 8px 32px rgba(10, 31, 61, 0.12);
	--sh-lg: 0 20px 56px rgba(10, 31, 61, 0.16);
	--sh-gold: 0 0 28px rgba(212, 169, 79, 0.30);

	/* Fonts — change here to swap typefaces globally */
	--f-head: 'Geist', system-ui, sans-serif;
	--f-body: 'Geist', system-ui, sans-serif;

	/* Typography Scale — change once, updates everywhere */
	--fs-display: clamp(2.4rem, 5.5vw, 4.2rem);
	--fs-h2: clamp(1.9rem, 4vw, 2.9rem);
	--fs-h3: 1.32rem;
	--fs-h4: 1.08rem;
	--fs-lead: clamp(1rem, 2vw, 1.12rem);
	--fs-body: 0.99rem;
	--fs-small: 0.875rem;
	--fs-xs: 0.78rem;

	/* Line Heights */
	--lh-tight: 1.2;
	--lh-normal: 1.72;
	--lh-loose: 1.88;

	/* Border Radius */
	--r-sm: 8px;
	--r-md: 16px;
	--r-lg: 24px;
	--r-xl: 32px;

	/* Transitions */
	--ease: cubic-bezier(0.4, 0, 0.2, 1);
	--t: all 0.35s var(--ease);
	--t-fast: all 0.20s ease;

	/* Section Padding — change ONE value, all sections update */
	--py: 6rem;
}


/* ─────────────────────────────────────────────────────
   03. BASE RESETS
───────────────────────────────────────────────────── */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 78px;
	margin:0;
}

body {
	font-family: var(--f-body);
	font-size: var(--fs-body);
	line-height: var(--lh-normal);
	color: var(--txt-dark);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: var(--f-head);
	line-height: var(--lh-tight);
	color: var(--txt-dark);
	margin-bottom: 0;
}

p {
	margin-bottom: 0;
}

a {
	transition: var(--t-fast);
}

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

::-webkit-scrollbar {
	width: 5px;
}

::-webkit-scrollbar-thumb {
	background: var(--gold);
	border-radius: 10px;
}

::selection {
	background: var(--gold);
	color: #000;
}

:focus-visible {
	outline: 3px solid var(--gold) !important;
	outline-offset: 3px;
	border-radius: 4px;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: 16px;
	background: var(--amber);
	color: #000;
	font-weight: 600;
	padding: 8px 18px;
	border-radius: 0 0 10px 10px;
	z-index: 99999;
	transition: top 0.2s;
}

.skip-link:focus {
	top: 0;
}

.logo-header {
	height: 46px;
	width: auto;
}


/* ─────────────────────────────────────────────────────
   04. TYPOGRAPHY SYSTEM
   Use these classes instead of inline font styles.

   HEADINGS
   .h-display  Hero h1          ~4rem  700
   .h-section  Section h2       ~2.9rem 700
   .h-card     Card h3          1.32rem 600
   .h-small    Sub heading      1.08rem 600

   HEADING COLOR MODIFIERS
   .h-white  .h-navy  .h-amber

   PARAGRAPHS — light backgrounds
   .p-lead     Large intro      ~1.1rem muted
   .p-body     Standard         0.97rem muted
   .p-muted    Same as p-body
   .p-small    Small            0.875rem muted
   .p-xs       Tiny             0.78rem muted

   PARAGRAPHS — dark backgrounds
   .p-light       White 100%
   .p-light-muted White 65%
   .p-light-dim   White 55% small

   TEXT EFFECTS
   .txt-gold   Gold gradient text

   LABELS
   .eyebrow        Gold pill  (light bg)
   .eyebrow.light  Gold pill  (dark bg)
───────────────────────────────────────────────────── */

.h-display {
	font-family: var(--f-head);
	font-size: var(--fs-display);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.5px;
}

.h-section {
	font-family: var(--f-head);
	font-size: var(--fs-h2);
	font-weight: 700;
	line-height: 1.2;
}

.h-card {
	font-family: var(--f-head);
	font-size: var(--fs-h3);
	font-weight: 600;
	line-height: 1.3;
}

.h-small {
	font-family: var(--f-head);
	font-size: var(--fs-h4);
	font-weight: 600;
	line-height: 1.3;
}

.h-white {
	color: #fff !important;
}

.h-navy {
	color: var(--navy) !important;
}

.h-amber {
	color: var(--amber) !important;
}

/* Paragraphs — light backgrounds */
.p-lead {
	font-size: var(--fs-lead);
	line-height: var(--lh-loose);
	color: var(--txt-muted);
}

.p-body {
	font-size: var(--fs-body);
	line-height: var(--lh-normal);
	color: var(--txt-muted);
}

.p-muted {
	font-size: var(--fs-body);
	line-height: var(--lh-normal);
	color: var(--txt-muted);
}

.p-small {
	font-size: var(--fs-small);
	line-height: var(--lh-normal);
	color: var(--txt-muted);
}

.p-xs {
	font-size: var(--fs-xs);
	line-height: var(--lh-normal);
	color: var(--txt-muted);
}

/* Paragraphs — dark backgrounds */
.p-light {
	color: #fff;
	font-size: var(--fs-body);
	line-height: var(--lh-loose);
}

.p-light-muted {
	color: rgba(255, 255, 255, 0.65);
	font-size: var(--fs-body);
	line-height: var(--lh-loose);
}

.p-light-dim {
	color: rgba(255, 255, 255, 0.55);
	font-size: var(--fs-small);
	line-height: var(--lh-loose);
}

/* Gold gradient text */
.txt-gold {
	background: var(--g-gold);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Section eyebrow label */
.eyebrow {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--gold);
	background: rgba(212, 169, 79, 0.10);
	border: 1px solid var(--bdr-gold);
	padding: 5px 16px;
	border-radius: 100px;
}

.eyebrow.light {
	color: var(--gold-light);
	background: rgba(212, 169, 79, 0.12);
	border-color: rgba(212, 169, 79, 0.22);
}

/* Feature list gold check */
.feat-icon {
	width: 22px;
	height: 22px;
	min-width: 22px;
	background: var(--g-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.58rem;
	color: var(--navy-dark);
	font-weight: 700;
	margin-top: 3px;
}

/* Instagram handle tag */
.brand-handle-tag {
	font-size: 0.67rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gold);
	display: block;
}

/* Phone shake */
.shake {
	display: inline-block;
	animation: shake 1.6s ease-in-out infinite;
}

@keyframes shake {

	0%,
	100% {
		transform: translateX(0)
	}

	50% {
		transform: translateX(4px)
	}
}

/* Stat divider */
.stat-sep {
	width: 1px;
	min-height: 30px;
	background: rgba(255, 255, 255, 0.20);
	align-self: stretch;
}

/* Stat value + label */
.stat-val {
	font-family: var(--f-head);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--amber);
	line-height: 1;
	display: block;
}

.stat-label {
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.55);
	margin-top: 3px;
	display: block;
}

/* Pill text helpers (hero floating pills) */
.pill-strong {
	display: block;
	font-size: 0.80rem;
	font-weight: 600;
	color: #fff;
}

.pill-small {
	font-size: 0.67rem;
	color: rgba(255, 255, 255, 0.45);
}


/* ─────────────────────────────────────────────────────
   05. BUTTON SYSTEM
   All buttons follow same pattern. Use with Bootstrap:
   class="btn btn-primary rounded-pill px-4 py-2"
   class="btn btn-gold rounded-pill px-4 py-3 d-inline-flex align-items-center gap-2"

   .btn-primary    Navy fill         light bg main CTA
   .btn-secondary  Gold gradient     alias for btn-gold
   .btn-gold       Gold gradient     hero / featured CTA
   .btn-outline    Navy outline      secondary light bg
   .btn-ghost      White border      dark bg secondary
   .btn-book       Gold compact      navbar CTA
   .btn-whatsapp   Green             WhatsApp CTA
───────────────────────────────────────────────────── */

.btn-primary {
	background: var(--navy) !important;
	color: #fff !important;
	font-weight: 600;
}

.btn-primary:hover {
	background: var(--navy-mid) !important;
	border-color: var(--navy-mid) !important;
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: var(--sh-md);
}

.btn-secondary,
.btn-gold {
	background: var(--g-gold) !important;
	color: var(--navy-dark) !important;
	border: none !important;
	font-weight: 700;
	box-shadow: 0 6px 24px rgba(212, 169, 79, 0.38);
	transition: var(--t);
}

.btn-secondary:hover,
.btn-gold:hover {
	transform: translateY(-3px);
	color: var(--navy-dark) !important;
	box-shadow: 0 10px 32px rgba(212, 169, 79, 0.56);
}

.btn-outline {
	background: transparent !important;
	color: var(--navy) !important;
	border: 2px solid var(--navy) !important;
	font-weight: 600;
}

.btn-outline:hover {
	background: var(--navy) !important;
	color: #fff !important;
	border: 2px solid var(--navy) !important;
}

/* Bootstrap override */
.btn-outline-primary {
	border-color: var(--navy) !important;
	color: var(--navy) !important;
	font-weight: 600;
	transition: var(--t);
}

.btn-outline-primary:hover {
	background: var(--navy) !important;
	border-color: var(--navy) !important;
	color: #fff !important;
	transform: translateY(-2px);
}

.btn-ghost {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.40);
	font-weight: 600;
	transition: var(--t);
}

.btn-ghost:hover {
	background: rgba(255, 255, 255, 0.10);
	border-color: rgba(255, 255, 255, 0.72);
	color: #fff;
	transform: translateY(-3px);
}

.btn-book {
	background: var(--g-gold);
	color: var(--navy-dark) !important;
	font-weight: 700;
	border: none;
	border-radius: 100px;
	padding: 9px 22px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	box-shadow: 0 4px 14px rgba(212, 169, 79, 0.30);
	text-decoration: none;
	white-space: nowrap;
	transition: var(--t);
}

.btn-book:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(212, 169, 79, 0.48);
	color: var(--navy-dark) !important;
}

.btn-whatsapp {
	background: #25D366 !important;
	color: #fff !important;
	border: none !important;
	font-weight: 700;
	box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
	transition: var(--t);
}

.btn-whatsapp:hover {
	background: #1ebe57 !important;
	color: #fff !important;
	transform: translateY(-3px);
	box-shadow: 0 10px 32px rgba(37, 211, 102, 0.48);
}


/* ─────────────────────────────────────────────────────
   06. SECTION HELPERS
───────────────────────────────────────────────────── */
.py-section {
	padding: var(--py) 0;
}

.bg-soft {
	background-color: var(--bg-soft) !important;
}

.sec-header {
	margin-bottom: 2.5rem;
}

/* ─────────────────────────────────────────────────────
   07. PRELOADER
───────────────────────────────────────────────────── */
#preloader {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: var(--navy-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hide {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.pre-logo {
	font-family: var(--f-head);
	font-size: 3rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: 4px;
	text-align: center;
	margin-bottom: 20px;
}

.pre-logo span {
	color: var(--amber);
}

.pre-bar {
	width: 200px;
	height: 3px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	overflow: hidden;
	margin: 0 auto;
}

.pre-fill {
	height: 100%;
	width: 0;
	background: var(--g-gold);
	border-radius: 10px;
	animation: fillBar 1.6s ease forwards;
}

@keyframes fillBar {
	to {
		width: 100%;
	}
}


/* ─────────────────────────────────────────────────────
   08. HEADER / NAVBAR
───────────────────────────────────────────────────── */
.topbar {
	background: var(--navy-dark);
	border-bottom: 1px solid var(--bdr-light);
	padding-top: 6px;
	padding-bottom: 6px;
}

.topbar a {
	color: rgba(255, 255, 255, 0.68);
	text-decoration: none;
}

.topbar a:hover {
	color: var(--amber);
}

.topbar .sep {
	color: rgba(255, 255, 255, 0.18);
}

.top-social {
	color: rgba(255, 255, 255, 0.50);
	width: 26px;
	height: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 0.82rem;
	text-decoration: none;
	transition: color 0.2s;
}

.top-social:hover {
	color: var(--amber);
}

.c77-nav {
	background: var(--navy) !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	transition: var(--t);
}

.c77-header.scrolled .c77-nav {
	background: rgba(10, 31, 61, 0.96) !important;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
	padding-top: 8px;
	padding-bottom: 8px;
}

.c77-header.scrolled .topbar {
	display: none !important;
}

.c77-logo span {
	color: var(--amber);
}

.c77-nav .nav-link {
	font-size: var(--fs-body);
	font-weight: 500;
	color: var(--gold-light) !important;
	padding: 7px 14px !important;
	position: relative;
	transition: color 0.2s;
}

.c77-nav .nav-link::after {
	content: '';
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 1px;
	height: 2px;
	background: var(--g-gold);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s ease;
	border-radius: 2px;
}

.c77-nav .nav-link:hover,
.c77-nav .nav-link.active {
	color: #fff !important;
}

.c77-nav .nav-link:hover::after,
.c77-nav .nav-link.active::after {
	transform: scaleX(1);
}

.c77-burger {
	background: none;
	border: none;
	padding: 4px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 26px;
	cursor: pointer;
}

.c77-burger span {
	display: block;
	height: 2px;
	background: var(--amber);
	border-radius: 2px;
	transition: var(--t);
	transform-origin: center;
}

.c77-burger[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.c77-burger[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.c77-burger[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media (max-width:991.98px) {
	#navMenu {
		background: rgba(10, 31, 61, 0.98);
		backdrop-filter: blur(20px);
		border-radius: var(--r-md);
		padding: 16px;
		margin-top: 8px;
		border: 1px solid var(--bdr-light);
	}

	.btn-book {
		width: 100%;
		justify-content: center;
		margin-top: 10px;
	}
}


/* ─────────────────────────────────────────────────────
   09. HERO SECTION
───────────────────────────────────────────────────── */
.hero {
	position: relative;
	overflow: hidden;
	min-height: 100svh;
	display: flex;
	align-items: center;
}

.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(115deg, rgba(5, 15, 31, 0.93) 0%, rgba(10, 31, 61, 0.76) 60%, rgba(10, 31, 61, 0.28) 100%);
}

.hero-content {
	position: relative;
	z-index: 2;
	padding:100px 0 20px 0;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 0.70rem;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--gold-light);
	background: rgba(212, 169, 79, 0.12);
	border: 1px solid rgba(212, 169, 79, 0.28);
	padding: 6px 18px;
	border-radius: 100px;
}

.hero-float-card {
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(212, 169, 79, 0.20);
	border-radius: var(--r-xl);
	padding: 28px;
	animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {

	0%,
	100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-12px)
	}
}

.float-pill {
	display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    padding: 10px 31px;
}

.float-pill.p2 {
	animation: fp2 6s ease-in-out infinite 1s;
}

@keyframes fp2 {

	0%,
	100% {
		transform: rotate(1deg) translateY(0)
	}

	50% {
		transform: rotate(-1deg) translateY(-6px)
	}
}

.live-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #22c55e;
	animation: dot 2s ease-in-out infinite;
}

@keyframes dot {

	0%,
	100% {
		box-shadow: 0 0 0 3px rgba(34, 197, 94, .20)
	}

	50% {
		box-shadow: 0 0 0 7px rgba(34, 197, 94, .06)
	}
}

.hero-ptcl {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}

.hero-ptcl span {
	position: absolute;
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(212, 169, 79, .40);
	animation: ptcl linear infinite;
}

.hero-ptcl span:nth-child(1) {
	left: 10%;
	animation-duration: 12s;
	width: 6px;
	height: 6px
}

.hero-ptcl span:nth-child(2) {
	left: 30%;
	animation-duration: 9s;
	animation-delay: 2s
}

.hero-ptcl span:nth-child(3) {
	left: 55%;
	animation-duration: 11s;
	animation-delay: 4s;
	width: 3px;
	height: 3px
}

.hero-ptcl span:nth-child(4) {
	left: 75%;
	animation-duration: 13s;
	animation-delay: 1s;
	width: 5px;
	height: 5px
}

.hero-ptcl span:nth-child(5) {
	left: 90%;
	animation-duration: 10s;
	animation-delay: 3s
}

@keyframes ptcl {
	0% {
		bottom: -10px;
		opacity: 0
	}

	10% {
		opacity: .8
	}

	90% {
		opacity: .4
	}

	100% {
		bottom: 105%;
		opacity: 0;
		transform: translateX(30px)
	}
}

.scroll-hint {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	text-align: center;
	color: rgba(255, 255, 255, .45);
	font-size: .65rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	animation: sb 2s ease-in-out infinite;
}

.scroll-mouse {
	width: 22px;
	height: 34px;
	margin: 0 auto 6px;
	border: 2px solid rgba(255, 255, 255, .30);
	border-radius: 12px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 5px;
}

.scroll-wheel {
	width: 3px;
	height: 7px;
	background: var(--amber);
	border-radius: 2px;
	animation: sw 2s ease infinite;
}

@keyframes sw {

	0%,
	100% {
		transform: translateY(0);
		opacity: 1
	}

	50% {
		transform: translateY(7px);
		opacity: .3
	}
}

@keyframes sb {

	0%,
	100% {
		transform: translateX(-50%) translateY(0)
	}

	50% {
		transform: translateX(-50%) translateY(7px)
	}
}


/* ─────────────────────────────────────────────────────
   10. MARQUEE STRIP
───────────────────────────────────────────────────── */
.marquee-strip {
	background: var(--navy);
	border-top: 1px solid var(--bdr-light);
	border-bottom: 1px solid var(--bdr-light);
	padding: 15px 0;
	overflow: hidden;
}

.marquee-track {
	display: flex;
	align-items: center;
	white-space: nowrap;
	animation: roll 78s linear infinite;
	width: max-content;
}

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

.marquee-track span {
	font-size: .78rem;
	font-weight: 500;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--gold-light);
}

.marquee-track i {
	color: var(--amber);
	margin: 0 16px;
	font-size: .6rem;
}

@keyframes roll {
	0% {
		transform: translateX(0)
	}

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


/* ─────────────────────────────────────────────────────
   11. BRAND CARDS
   .brand-card           white bg  (photography, digital)
   .brand-card.dark      navy bg   (portraits)
   .brand-card.active    navy-mid  (currently viewing page)
───────────────────────────────────────────────────── */
.brand-card {
	height: 100%;
	border-radius: var(--r-lg);
	padding: 28px;
	position: relative;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--bdr);
	box-shadow: var(--sh-md);
	transition: var(--t);
	display: block;
	text-decoration: none;
}

.brand-card:hover {
	transform: translateY(-8px);
	border-color: var(--gold) !important;
	box-shadow: var(--sh-lg);
	text-decoration: none;
}

.brand-card.dark {
	background: var(--navy);
	border-color: rgba(212, 169, 79, 0.18);
}

.brand-card.dark:hover {
	border-color: rgba(212, 169, 79, 0.45) !important;
}

.brand-card.active {
	background: var(--navy-mid);
	border: 2px solid rgba(212, 169, 79, 0.38) !important;
	box-shadow: 0 16px 48px rgba(10, 31, 61, 0.28);
}

.brand-card.active:hover {
	transform: none;
	cursor: default;
}

.brand-card-num {
	position: absolute;
	top: 0;
	right: 0;
	padding: 12px 18px;
	font-family: var(--f-head);
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1;
	color: rgb(10 31 61 / 20%);
	pointer-events: none;
}

.brand-card.dark .brand-card-num,
.brand-card.active .brand-card-num {
	color: rgba(255, 255, 255, 0.05);
}

.brand-icon {
	width: 50px;
	height: 50px;
	background: var(--g-gold);
	border-radius: var(--r-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	color: var(--navy-dark);
	margin-bottom: 16px;
}

.brand-active-badge {
	position: absolute;
	top: 0;
	left: 0;
	margin: 14px;
	background: var(--g-gold);
	color: var(--navy-dark);
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 1px;
	padding: 3px 10px;
	border-radius: 100px;
}

.brand-card .h-card {
	color: var(--navy);
	margin-bottom: 8px;
}

.brand-card.dark .h-card,
.brand-card.active .h-card {
	color: #fff;
}

.brand-card .p-small {
	color: var(--txt-muted);
	margin-bottom: 20px;
}

.brand-card.dark .p-small,
.brand-card.active .p-small {
	color: rgba(255, 255, 255, 0.55);
}

.brand-card-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: var(--fs-small);
	font-weight: 600;
	color: var(--navy);
}

.brand-card.dark .brand-card-link,
.brand-card.active .brand-card-link {
	color: var(--gold-light);
}


/* ─────────────────────────────────────────────────────
   12. SERVICE CARDS  (used on dark bg sections)
───────────────────────────────────────────────────── */
.svc-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--r-lg);
	padding: 36px 28px;
	position: relative;
	overflow: hidden;
	transition: var(--t);
	height: 100%;
}

.svc-card:hover {
	background: rgba(255, 255, 255, 0.07);
	border-color: var(--bdr-gold);
	transform: translateY(-6px);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.svc-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--g-gold);
	transform: scaleX(0);
	transition: transform .4s ease;
}

.svc-card:hover::after {
	transform: scaleX(1);
}

.svc-card.featured {
	background: rgba(212, 169, 79, .08);
	border-color: rgba(212, 169, 79, .28);
}

.svc-icon {
	width: 54px;
	height: 54px;
	background: var(--g-gold);
	border-radius: var(--r-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	color: var(--navy-dark);
	transition: var(--t);
	margin-bottom: 20px;
}

.svc-card:hover .svc-icon {
	transform: scale(1.1) rotate(5deg);
}

.svc-badge {
	position: absolute;
	top: 18px;
	right: 18px;
	background: var(--g-gold);
	color: var(--navy-dark);
	font-size: .60rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 100px;
}

.svc-card .h-card {
	color: #fff;
	margin-bottom: 10px;
}

.svc-card .p-light-dim {
	margin-bottom: 20px;
}

.svc-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: var(--fs-small);
	font-weight: 600;
	color: var(--gold);
	transition: var(--t-fast);
	text-decoration: none;
}

.svc-link:hover {
	color: var(--amber);
	gap: 10px;
}


/* ─────────────────────────────────────────────────────
   13. GLASS CARDS  (why section dark parallax bg)
───────────────────────────────────────────────────── */
.why-bg {
	position: relative;
	background: url('../img/modeling-thumbnail.webp') center/cover no-repeat;
	background-attachment: fixed;
}

.why-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(350deg, rgba(5, 15, 31, .93), rgba(10, 31, 61, .83));
}

.why-bg>.container {
	position: relative;
	z-index: 1;
}

.glass-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: var(--r-lg);
	padding: 32px 26px;
	transition: var(--t);
	height: 100%;
	position: relative;
	overflow: hidden;
}

.glass-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--g-gold);
	transform: scaleX(0);
	transition: transform .4s ease;
}

.glass-card:hover {
	background: rgba(255, 255, 255, .09);
	border-color: var(--bdr-gold);
	transform: translateY(-7px);
}

.glass-card:hover::after {
	transform: scaleX(1);
}

.glass-icon {
	width: 52px;
	height: 52px;
	background: var(--g-gold);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	color: var(--navy-dark);
	margin-bottom: 18px;
}

.glass-card .h-card {
	color: #fff;
	margin-bottom: 8px;
}

.glass-card .p-light-muted {
	margin: 0;
}


/* ─────────────────────────────────────────────────────
   14. MILESTONE / COUNTER CARDS
───────────────────────────────────────────────────── */
.milestone-card {
	background: #fff;
	border: 1px solid var(--bdr);
	border-radius: var(--r-lg);
	padding: 36px 24px;
	box-shadow: var(--sh-md);
	transition: var(--t);
	position: relative;
	overflow: hidden;
	height: 100%;
}

.milestone-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--g-gold);
}

.milestone-card:hover {
	transform: translateY(-7px);
	box-shadow: var(--sh-lg);
}

.counter {
	font-family: var(--f-head);
	font-size: 3rem;
	font-weight: 700;
	color: var(--navy);
	line-height: 1;
	display: inline;
}

.counter-plus {
	font-family: var(--f-head);
	font-size: 2rem;
	font-weight: 700;
	color: var(--amber);
}

.milestone-label {
	font-size: var(--fs-small);
	font-weight: 500;
	color: var(--txt-muted);
	margin-top: 10px;
}


/* ─────────────────────────────────────────────────────
   15. VIDEO BOX
───────────────────────────────────────────────────── */
.video-box {
	position: relative;
	width: 100%;
	aspect-ratio: 16/9;
	background: #000;
	cursor: pointer;
	border-radius: var(--r-xl);
	overflow: hidden;
	box-shadow: var(--sh-lg);
	transition: var(--t);
}

.video-box:hover {
	transform: scale(1.01);
}

.video-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s ease;
	display: block;
}

.video-box:hover img {
	transform: scale(1.04);
}

.play-wrap {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.play-circle {
	width: 72px;
	height: 72px;
	background: var(--g-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--navy-dark);
	font-size: 1.2rem;
	padding-left: 4px;
	box-shadow: 0 0 0 14px rgba(212, 169, 79, .14), var(--sh-gold);
	animation: pp 2.2s ease-in-out infinite;
	transition: var(--t);
}

.video-box:hover .play-circle {
	transform: scale(1.12);
}

@keyframes pp {

	0%,
	100% {
		box-shadow: 0 0 0 14px rgba(212, 169, 79, .14), var(--sh-gold)
	}

	50% {
		box-shadow: 0 0 0 26px rgba(212, 169, 79, .05), var(--sh-gold)
	}
}

.vid-label {
	position: absolute;
	bottom: 16px;
	left: 16px;
	z-index: 2;
	background: rgba(10, 31, 61, .75);
	color: #fff;
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 100px;
	backdrop-filter: blur(8px);
}


/* ─────────────────────────────────────────────────────
   16. PORTFOLIO CARDS + FILTER BUTTONS
───────────────────────────────────────────────────── */


/* ── Filter buttons ── */
.filter-btn {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1.5px solid var(--bdr);
  color: var(--txt-muted);
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--t);
  margin: 4px 6px;
  line-height: 1;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  color: var(--gold-light);
  border-color: var(--navy);
  box-shadow: var(--sh-sm);
}

/* ── Port card wrapper ── */
.port-card {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background: var(--navy);
  text-decoration: none;
}

/* ── Image fills card ── */
.port-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
  z-index: 1;
}
.port-card:hover img { transform: scale(1.08); }

/* ── Dark gradient overlay — hidden by default ── */
.port-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(5,15,31,0.92) 0%,
    rgba(5,15,31,0.30) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.port-card:hover .port-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* ── Category pill inside overlay ── */
.port-cat {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(255,179,36,0.15);
  padding: 3px 10px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 6px;
  line-height: 1.6;
}

/* ── Title inside overlay ── */
.port-title {
  font-family: var(--f-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  display: block;
}

/* ── Expand icon — top right corner ── */
.port-expand {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  background: var(--g-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  font-size: 0.78rem;
  transform: scale(0) rotate(-45deg);
  transition: transform 0.35s var(--ease);
  pointer-events: none;
}
.port-card:hover .port-expand {
  transform: scale(1) rotate(0deg);
  pointer-events: auto;
}

/* ── Video / Instagram play badge ── */
.port-play-badge {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  color: #fff;
  background: rgba(5,15,31,0.32);
  transition: background 0.35s var(--ease);
  pointer-events: none;
}
.port-play-badge i {
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.55));
  transition: transform 0.35s var(--ease);
}
.port-card:hover .port-play-badge        { background: rgba(5,15,31,0.55); }
.port-card:hover .port-play-badge i      { transform: scale(1.15); }
.port-play-badge-ig                      { color: #E1306C; }


/* ─────────────────────────────────────────────
   GALLERY LIGHTBOX POPUP
   Shared shell — image / YouTube / Instagram
───────────────────────────────────────────── */

/* ── Backdrop ── */
.c77-lb {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5,15,31,0.97);
  padding: 16px;
  animation: lbFadeIn 0.28s ease;
}
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── Inner container ── */
.c77-lb-inner {
  position: relative;
  width: 100%;
  max-width: 920px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Top bar: meta + actions ── */
.c77-lb-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  gap: 12px;
}
.c77-lb-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.c77-lb-cat {
  font-family: var(--f-body);
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(255,179,36,0.12);
  padding: 2px 10px;
  border-radius: 100px;
  display: inline-block;
  width: fit-content;
}
.c77-lb-title {
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Action buttons ── */
.c77-lb-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.c77-lb-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.70);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t-fast);
  text-decoration: none;
  flex-shrink: 0;
}
.c77-lb-btn:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.38);
  color: #fff;
}
.c77-lb-btn.close-btn:hover {
  background: rgba(220,53,69,0.22);
  border-color: rgba(220,53,69,0.45);
  color: #ff6b6b;
}
.c77-lb-btn.share-btn:hover {
  background: rgba(212,169,79,0.18);
  border-color: var(--bdr-gold);
  color: var(--amber);
}

/* ── Media area ── */
.c77-lb-media {
  flex: 1;
  min-height: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  position: relative;
}

/* Image */
.c77-lb-media img {
  max-width: 100%;
  max-height: 72vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: var(--r-lg);
}

/* YouTube iframe */
.c77-lb-media iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--r-lg);
  display: block;
}

/* Instagram embed wrapper */
.c77-lb-ig-wrap {
  width: 100%;
  max-width: 540px;
  max-height: 72vh;
  overflow-y: auto;
  margin: 0 auto;
  border-radius: var(--r-lg);
  background: #fff;
}

/* ── Prev / Next arrows ── */
.c77-lb-prev,
.c77-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  background: rgba(10,31,61,0.75);
  color: rgba(255,255,255,0.80);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t-fast);
  z-index: 4;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.c77-lb-prev { left: -58px; }
.c77-lb-next { right: -58px; }
.c77-lb-prev:hover,
.c77-lb-next:hover {
  background: var(--g-gold);
  border-color: transparent;
  color: var(--navy-dark);
  transform: translateY(-50%) scale(1.08);
}
.c77-lb-prev.hidden,
.c77-lb-next.hidden {
  opacity: 0.20;
  pointer-events: none;
}

/* ── Counter: 1 / 6 ── */
.c77-lb-counter {
  text-align: center;
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.38);
  flex-shrink: 0;
  letter-spacing: 1px;
}

/* ── Dot indicators ── */
.c77-lb-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
}
.c77-lb-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  transition: var(--t-fast);
  cursor: pointer;
}
.c77-lb-dot.active {
  background: var(--gold);
  width: 18px;
  border-radius: 3px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .c77-lb-prev { left: 6px; }
  .c77-lb-next { right: 6px; }
  .c77-lb-prev,
  .c77-lb-next { width: 38px; height: 38px; font-size: 0.85rem; }
  .c77-lb-media img { max-height: 58vh; }
}
@media (max-width: 575px) {
  .c77-lb-inner  { gap: 8px; }
  .c77-lb-title  { font-size: 0.85rem; }
  .c77-lb-btn    { width: 34px; height: 34px; font-size: 0.82rem; }
  .c77-lb-media img { max-height: 52vh; }
}


/* ─────────────────────────────────────────────────────
   17. PROCESS CARDS  (dark background)
───────────────────────────────────────────────────── */
.process-card {
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: var(--r-lg);
	padding: 36px 26px;
	position: relative;
	overflow: hidden;
	transition: var(--t);
	height: 100%;
}

.process-card:hover {
	background: rgba(255, 255, 255, .07);
	border-color: var(--bdr-gold);
	transform: translateY(-5px);
}

.process-num {
	font-family: var(--f-head);
	font-size: 4.5rem;
	font-weight: 700;
	color: rgba(212, 169, 79, .09);
	line-height: 1;
	position: absolute;
	top: 14px;
	right: 18px;
}

.step-icon {
	width: 50px;
	height: 50px;
	background: var(--g-gold);
	border-radius: var(--r-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15rem;
	color: var(--navy-dark);
	margin-bottom: 16px;
}

.process-card .h-card {
	color: #fff;
	margin-bottom: 10px;
}

.process-card .p-light-dim {
	margin: 0;
}


/* ─────────────────────────────────────────────────────
   18. TESTIMONIAL CARDS
───────────────────────────────────────────────────── */
.testi-card {
	background: #fff;
	border: 1px solid var(--bdr);
	border-radius: var(--r-lg);
	padding: 32px 26px;
	box-shadow: var(--sh-md);
	transition: var(--t);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.testi-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--sh-lg);
}

.testi-card.dark-card {
	background: var(--navy);
	border-color: transparent;
}

.testi-card.dark-card .testi-text {
	color: rgba(255, 255, 255, .68);
}

.testi-card.dark-card .testi-name {
	color: #fff;
}

.testi-card.dark-card .testi-role {
	color: rgba(255, 255, 255, .48);
}

.testi-stars {
	color: var(--amber);
	font-size: 0.82rem;
	letter-spacing: 2px;
	margin-bottom: 16px;
}

.testi-text {
	font-size: var(--fs-body);
	color: var(--txt-muted);
	font-style: italic;
	line-height: var(--lh-loose);
	flex: 1;
	margin-bottom: 20px;
}

.testi-name {
	font-size: var(--fs-small);
	font-weight: 600;
	color: var(--navy);
	display: block;
}

.testi-role {
	font-size: var(--fs-xs);
	color: var(--txt-muted);
}

.testi-avatar {
	width: 44px;
	height: 44px;
	min-width: 44px;
	border-radius: 50%;
	background: var(--g-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--f-head);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--navy-dark);
}


/* ─────────────────────────────────────────────────────
   19. CTA SECTION
───────────────────────────────────────────────────── */
.cta-section {
	position: relative;
	background: var(--g-navy);
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(212, 169, 79, .06) 1px, transparent 1px);
	background-size: 28px 28px;
	pointer-events: none;
}

.cta-box {
	position: relative;
	z-index: 1;
	border: 1px solid rgba(212, 169, 79, .14);
	border-radius: var(--r-xl);
	background: rgba(255, 255, 255, .02);
	padding: 52px;
}

.cta-note {
	color: rgba(255, 255, 255, .38);
	font-size: var(--fs-xs);
	text-align: center;
}


/* ─────────────────────────────────────────────────────
   20. ABOUT IMAGE BLOCK
───────────────────────────────────────────────────── */
.about-frame {
	border-radius: var(--r-xl);
	overflow: hidden;
	box-shadow: var(--sh-lg);
	position: relative;
}

.about-frame img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	transition: transform .8s ease;
	display: block;
}

.about-frame:hover img {
	transform: scale(1.04);
}

.about-exp-badge {
	position: absolute;
	top: -30px;
	left: -18px;
	background: var(--navy);
	color: #fff;
	padding: 10px 10px;
	border-radius: var(--r-md);
	border: 2px solid var(--gold);
	text-align: center;
	z-index: 2;
	box-shadow: var(--sh-md);
}

.about-exp-badge strong {
	display: block;
	font-family: var(--f-head);
	font-size: 2rem;
	font-weight: 700;
	color: var(--amber);
	line-height: 1;
}

.about-exp-badge small {
	font-size: .68rem;
	color: rgba(255, 255, 255, .55);
}

.about-award-badge {
	position: absolute;
	bottom: -18px;
	right: -18px;
	background: var(--g-gold);
	color: var(--navy-dark);
	padding: 14px 20px;
	border-radius: var(--r-md);
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: var(--sh-gold);
	z-index: 2;
}

.about-award-badge strong {
	display: block;
	font-weight: 700;
	font-size: var(--fs-small);
	line-height: 1.2;
}

.about-award-badge small {
	font-size: var(--fs-xs);
	opacity: .80;
	display: block;
}


/* ─────────────────────────────────────────────────────
   21. FOOTER
───────────────────────────────────────────────────── */
.c77-footer {
	background: var(--bg-dark);
}

.footer-top {
	padding: 72px 0 48px;
	border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-desc {
	color: rgba(255, 255, 255, .48);
	font-size: var(--fs-small);
	line-height: var(--lh-loose);
	max-width: 300px;
}

.footer-head {
	font-size: 0.98rem;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 18px;
	display: block;
}

.footer-links a {
	color: rgba(255, 255, 255, .50);
	font-size: var(--fs-small);
	text-decoration: none;
	display: block;
	padding: 4px 0;
	transition: var(--t-fast);
}

.footer-links a:hover {
	color: var(--amber);
	padding-left: 6px;
}

.footer-social a {
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, .50);
	font-size: .9rem;
	text-decoration: none;
	transition: var(--t);
}

.footer-social a:hover {
	background: var(--g-gold);
	color: var(--navy-dark);
	border-color: transparent;
	transform: translateY(-3px);
}

.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	color: rgba(255, 255, 255, .50);
	font-size: var(--fs-small);
	padding: 4px 0;
}

.footer-contact a {
	color: rgba(255, 255, 255, .60);
	text-decoration: none;
	transition: var(--t-fast);
}

.footer-contact a:hover {
	color: var(--amber);
}

.footer-bar {
	background: rgba(0, 0, 0, .20);
	padding: 18px 0;
}

.footer-bar p {
	color: rgba(255, 255, 255, .38);
	font-size: var(--fs-xs);
	margin: 0;
}

.footer-bar a {
	color: rgba(255, 255, 255, .38);
	font-size: var(--fs-xs);
	text-decoration: none;
	transition: var(--t-fast);
}

.footer-bar a:hover {
	color: var(--amber);
}


/* ─────────────────────────────────────────────────────
   22. FLOATING BUTTONS
───────────────────────────────────────────────────── */
#btt {
	position: fixed;
	bottom: 90px;
	right: 22px;
	z-index: 500;
	width: 44px;
	height: 44px;
	background: var(--navy);
	color: var(--gold);
	border: 1px solid rgba(212, 169, 79, .25);
	border-radius: 10px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 16px rgba(0, 0, 0, .22);
	opacity: 0;
	visibility: hidden;
	transform: translateY(16px);
	transition: var(--t);
}

#btt.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

#btt:hover {
	background: var(--g-gold);
	color: var(--navy-dark);
	transform: translateY(-3px);
}

#wa-fab {
	position: fixed;
	top: 30%;
	right: 22px;
	z-index: 500;
	width: 52px;
	height: 52px;
	background: #25D366;
	color: #fff;
	text-decoration: none;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	box-shadow: 0 6px 20px rgba(37, 211, 102, .40);
	animation: waPop 3s ease-in-out infinite;
	transition: var(--t);
}

#wa-fab:hover {
	background: #1ebe57;
	color: #fff;
	transform: scale(1.1) translateY(-3px);
}

#wa-fab:hover .wa-tip {
	opacity: 1;
}

@keyframes waPop {

	0%,
	100% {
		box-shadow: 0 6px 20px rgba(37, 211, 102, .40)
	}

	50% {
		box-shadow: 0 6px 30px rgba(37, 211, 102, .60), 0 0 0 10px rgba(37, 211, 102, .08)
	}
}

.wa-tip {
	position: absolute;
	right: 62px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--navy-dark);
	color: #fff;
	font-size: .73rem;
	font-weight: 600;
	white-space: nowrap;
	padding: 6px 12px;
	border-radius: 8px;
	opacity: 0;
	pointer-events: none;
	transition: var(--t-fast);
}

.wa-tip::after {
	content: '';
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	border: 5px solid transparent;
	border-left-color: var(--navy-dark);
}


/* ─────────────────────────────────────────────────────
   23. SCROLL REVEAL
   HTML: <div class="reveal up" data-delay="100">
   JS adds .revealed class to trigger animation
───────────────────────────────────────────────────── */
.reveal {
	opacity: 0;
	transition: opacity 0.70s var(--ease), transform 0.70s var(--ease);
}

.reveal.up {
	transform: translateY(38px);
}

.reveal.left {
	transform: translateX(-38px);
}

.reveal.right {
	transform: translateX(38px);
}

.reveal.scale {
	transform: scale(0.93);
}

.reveal.revealed {
	opacity: 1;
	transform: translate(0, 0) scale(1);
}


/* ─────────────────────────────────────────────────────
   24. LIGHTBOX
───────────────────────────────────────────────────── */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(5, 15, 31, .96);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	animation: lbIn .3s ease;
}

@keyframes lbIn {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

.lb-inner {
	position: relative;
	max-width: 900px;
	width: 100%;
}

.lb-inner img {
	width: 100%;
	border-radius: var(--r-lg);
	max-height: 85vh;
	object-fit: contain;
}

.lb-close {
	position: absolute;
	top: -46px;
	right: 0;
	background: none;
	border: none;
	color: rgba(255, 255, 255, .60);
	font-size: 2.4rem;
	line-height: 1;
	cursor: pointer;
	transition: color .2s;
}

.lb-close:hover {
	color: #fff;
}


/* ─────────────────────────────────────────────────────
   25. ACCORDION (FAQ) Bootstrap 5 override
───────────────────────────────────────────────────── */
.accordion-button {
	font-family: var(--f-body);
	font-weight: 600;
	font-size: var(--fs-body);
	color: var(--navy);
}

.accordion-button:not(.collapsed) {
	color: var(--navy);
	background: rgba(212, 169, 79, .06);
	box-shadow: none;
}

.accordion-button:focus {
	box-shadow: 0 0 0 3px rgba(212, 169, 79, .22);
}

.accordion-item {
	border-color: var(--bdr) !important;
	margin-bottom: 10px;
	overflow: hidden;
}

.accordion-body {
	color: var(--txt-muted);
	font-size: var(--fs-body);
	line-height: var(--lh-loose);
}


/* ─────────────────────────────────────────────────────
   26. WCAG: REDUCED MOTION + HIGH CONTRAST
───────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}

	.hero-video {
		display: none;
	}

	.hero {
		background: var(--g-navy);
	}
}

@media (forced-colors: active) {

	.btn-primary,
	.btn-secondary,
	.btn-gold,
	.btn-book,
	.btn-whatsapp {
		forced-color-adjust: none;
	}

	:focus-visible {
		outline: 3px solid ButtonText;
	}
}


/* ================================================================
   INNER PAGES — Common classes for all inner pages
   (contact, photography, portraits, digital-agency, about, etc.)
================================================================ */

/* ── PAGE HERO ── */
.page-hero {
  background: var(--g-navy);
  padding: 60px 0 48px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(212,169,79,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }

/* ── BREADCRUMB ── */
.c77-breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 6px; list-style: none; padding: 0; margin: 0 0 20px 0;
  font-size: var(--fs-xs);
}
.c77-breadcrumb li      { display: flex; align-items: center; gap: 6px; }
.c77-breadcrumb a       { color: rgba(255,255,255,.55); text-decoration: none; transition: var(--t-fast); }
.c77-breadcrumb a:hover { color: var(--amber); }
.bc-sep    { color: rgba(255,255,255,.25); font-size: .6rem; }
.bc-active { color: var(--gold-light); font-weight: 500; }

/* ── QUICK CONTACT CARDS ── */
.quick-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; padding: 20px 12px;
  background: #fff; border: 1px solid var(--bdr);
  border-radius: var(--r-lg); box-shadow: var(--sh-sm);
  text-decoration: none; transition: var(--t); height: 100%;
}
.quick-card:hover        { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--sh-md); text-decoration: none; }
.quick-card.wa:hover     { border-color: #25D366; }

/* ── CONTACT FORM CARD ── */
.contact-form-card {
  background: #fff; border: 1px solid var(--bdr);
  border-radius: var(--r-xl); box-shadow: var(--sh-md);
  padding: 40px; height: 100%;
}

/* ── FORM LABEL ── */
.c77-label {
  display: block; font-size: var(--fs-small);
  font-weight: 600; color: var(--navy); margin-bottom: 6px;
}
.c77-label-req { color: var(--amber); }

/* ── FORM INPUT / SELECT / TEXTAREA ── */
.c77-input {
  width: 100%; border: 1.5px solid var(--bdr);
  border-radius: var(--r-sm); padding: 11px 14px;
  font-family: var(--f-body); font-size: var(--fs-small);
  color: var(--navy); background: var(--bg-soft); transition: var(--t-fast);
}
.c77-input:focus {
  border-color: var(--gold); background: #fff;
  box-shadow: 0 0 0 3px rgba(212,169,79,.14); outline: none;
}
.c77-input::placeholder { color: #aab0ba; }
.c77-input.is-invalid   { border-color: #dc3545; }

/* ── FORM PRIVACY NOTE ── */
.form-note {
  font-size: var(--fs-xs); color: var(--txt-muted);
  text-align: center; margin-top: 12px; margin-bottom: 0;
}

/* ── CONTACT INFO CARD (navy) ── */
.contact-info-card {
  background: var(--navy); border: 1px solid var(--bdr-gold);
  border-radius: var(--r-xl); box-shadow: var(--sh-lg); padding: 32px;
}
.contact-info-row       { display: flex; align-items: center; gap: 16px; }
.contact-info-row.top   { align-items: flex-start; }

/* ── INSTAGRAM BRANDS BLOCK ── */
.insta-brands-wrap {
  background: var(--bg-soft); border: 1px solid var(--bdr);
  border-radius: var(--r-xl); padding: 24px;
}
.insta-brand-link {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; background: #fff;
  border: 1px solid var(--bdr); border-radius: var(--r-md);
  text-decoration: none; transition: var(--t);
}
.insta-brand-link:hover { border-color: var(--gold); transform: translateX(4px); text-decoration: none; }
.insta-brand-name { font-size: var(--fs-small); font-weight: 600; color: var(--navy); display: block; }
.insta-brand-desc { font-size: var(--fs-xs); color: var(--txt-muted); display: block; }

/* ── MAP WRAPPER ── */
.map-wrap { border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--bdr); box-shadow: var(--sh-lg); }
.map-wrap iframe { display: block; width: 100%; height: 400px; border: 0; }