@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap");
/* DESIGN TOKENS */
:root {
    --navy: #0B1F3A; --navy-dark: #06101F; --navy-mid: #132d50;
    --gold: #C9A227; --gold-light: #E8C84A; --gold-pale: #F5E6A3;
    --white: #FFFFFF; --off-white: #F8F9FC; --gray-100: #F1F4F8; --gray-text: #64748B;
    --grad-gold: linear-gradient(135deg, #BF953F, #FCF6BA 40%, #B38728 70%, #FBF5B7);
    --grad-navy: linear-gradient(160deg, #0B1F3A 0%, #06101F 100%);
    --grad-hero: linear-gradient(135deg, rgba(6,16,31,.96) 0%, rgba(11,31,58,.7) 60%, rgba(6,16,31,.85) 100%);
    --font-head: "Playfair Display", Georgia, serif;
    --font-body: "Outfit", system-ui, sans-serif;
    --ease: cubic-bezier(.16,1,.3,1); --ease-bounce: cubic-bezier(.34,1.56,.64,1);
    --shadow-card: 0 4px 6px -1px rgb(0 0 0/.04), 0 10px 30px -5px rgb(11 31 58/.08);
    --shadow-hover: 0 20px 60px -10px rgb(11 31 58/.18);
    --radius: 20px; --radius-sm: 10px; --radius-xs: 6px;
}
/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--navy); background: var(--white); overflow-x: hidden; line-height: 1.65; -webkit-font-smoothing: antialiased; }
h1,h2,h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; letter-spacing: -.5px; }
h4,h5,h6 { font-family: var(--font-body); font-weight: 700; }
p { color: var(--gray-text); }
a { transition: all .3s var(--ease); }
/* UTILITIES */
.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.bg-navy { background-color: var(--navy) !important; }
.bg-navy-dark { background-color: var(--navy-dark) !important; }
.text-grad-gold { background: var(--grad-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
/* LOADER */
#loader { position: fixed; inset: 0; background: var(--navy-dark); z-index: 99999; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1.5rem; transition: opacity .7s var(--ease), visibility .7s var(--ease); }
#loader.loaded { opacity: 0; visibility: hidden; }
.loader-logo { font-family: var(--font-head); color: #fff; font-size: 1.4rem; letter-spacing: 3px; opacity: 0; animation: fadeInUp .8s var(--ease) .3s forwards; }
.loader-line { width: 200px; height: 2px; background: rgba(255,255,255,.1); border-radius: 100px; overflow: hidden; position: relative; }
.loader-line::after { content: ""; position: absolute; inset: 0; background: var(--grad-gold); transform: translateX(-100%); animation: lineLoad 1.5s var(--ease) .5s forwards; border-radius: 100px; }
@keyframes lineLoad { to { transform: translateX(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: .5; } 50% { transform: scale(1.35); opacity: 1; } }
@keyframes scrollPulse { 0%,100% { opacity: .35; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.25); } }
/* TOPBAR */
.top-bar { background: var(--navy-dark); border-bottom: 1px solid rgba(201,162,39,.12); font-size: .8rem; color: rgba(255,255,255,.55); letter-spacing: .4px; }
.top-bar a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .3s; }
.top-bar a:hover { color: var(--gold-light); }
/* NAVIGATION */
.navbar-wrap { position: sticky; top: 0; z-index: 1000; padding: .75rem 1.5rem; transition: padding .5s var(--ease); }
.navbar-wrap.scrolled { padding: .35rem 1.5rem; }
.navbar-custom { background: rgba(7,17,32,.72); backdrop-filter: blur(28px) saturate(180%); -webkit-backdrop-filter: blur(28px) saturate(180%); border: 1px solid rgba(255,255,255,.07); border-radius: 100px; padding: .6rem 1.75rem; transition: all .5s var(--ease); box-shadow: 0 8px 32px rgba(0,0,0,.2); }
.navbar-wrap.scrolled .navbar-custom { background: rgba(6,14,26,.95); border-color: rgba(201,162,39,.2); box-shadow: 0 16px 48px rgba(0,0,0,.3); }
.navbar-custom .navbar-brand { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: #fff !important; letter-spacing: .5px; text-decoration: none; line-height: 1.2; }
.navbar-custom .navbar-brand span { background: var(--grad-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.navbar-custom .nav-link { color: rgba(255,255,255,.7) !important; font-size: .8rem; font-weight: 600; letter-spacing: .8px; padding: .4rem .9rem !important; border-radius: 100px; transition: all .3s; position: relative; text-transform: uppercase; }
.navbar-custom .nav-link:hover { color: #fff !important; background: rgba(255,255,255,.08); }
.navbar-custom .nav-link.active { color: var(--gold-light) !important; background: rgba(201,162,39,.08); }
.navbar-custom .nav-link.active::after { content: ""; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
/* MEGA MENU */
.mega-dropdown { position: static; }
.mega-menu { left: 0; right: 0; background: rgba(5,13,25,.98) !important; border: 1px solid rgba(201,162,39,.18) !important; border-top: none !important; border-radius: 0 0 var(--radius) var(--radius); backdrop-filter: blur(30px); padding: 2.5rem; display: none; box-shadow: 0 40px 80px rgba(0,0,0,.4); }
.mega-dropdown:hover .mega-menu { display: block; animation: fadeIn .2s ease; }
.mega-menu h6 { color: var(--gold); font-size: .75rem; text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 1.1rem; font-weight: 800; }
.mega-menu a { color: rgba(255,255,255,.65); text-decoration: none; display: block; padding: .35rem 0; font-size: .88rem; transition: all .25s; }
.mega-menu a:hover { color: var(--gold-light); transform: translateX(6px); }
/* HERO */
.hero-slider-container { position: relative; height: 100svh; min-height: 640px; background: var(--navy-dark); overflow: hidden; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; visibility: hidden; transition: opacity 1.2s var(--ease), visibility 1.2s; }
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-overlay { position: absolute; inset: 0; background: var(--grad-hero); z-index: 1; }
.hero-deco { position: absolute; border-radius: 50%; z-index: 1; pointer-events: none; }
.hero-deco-1 { width: 600px; height: 600px; right: -150px; bottom: -150px; border: 1px solid rgba(201,162,39,.08); animation: spinSlow 35s linear infinite; }
.hero-deco-2 { width: 380px; height: 380px; right: 80px; bottom: 30px; border: 1px solid rgba(201,162,39,.06); animation: spinSlow 22s linear infinite reverse; }
.hero-deco-3 { width: 140px; height: 140px; right: 210px; bottom: 170px; background: radial-gradient(circle, rgba(201,162,39,.12) 0%, transparent 70%); animation: pulse 4s ease-in-out infinite; }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.hero-label { display: inline-flex; align-items: center; gap: .5rem; font-size: .74rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); background: rgba(201,162,39,.08); border: 1px solid rgba(201,162,39,.22); padding: .45rem 1.1rem; border-radius: 100px; margin-bottom: 2rem; opacity: 0; transform: translateY(20px); transition: all .8s var(--ease) .2s; }
.hero-slide.active .hero-label { opacity: 1; transform: translateY(0); }
.hero-title { font-size: clamp(2.8rem,5.5vw,5rem); font-weight: 800; color: #fff; margin-bottom: 1.5rem; opacity: 0; transform: translateY(30px); transition: all .9s var(--ease) .4s; line-height: 1.05; }
.hero-title em { font-style: italic; background: var(--grad-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-slide.active .hero-title { opacity: 1; transform: translateY(0); }
.hero-subheadline { font-size: clamp(.95rem,1.8vw,1.15rem); color: rgba(255,255,255,.6); font-weight: 300; max-width: 520px; margin-bottom: 2.5rem; opacity: 0; transform: translateY(30px); transition: all .9s var(--ease) .6s; line-height: 1.75; }
.hero-slide.active .hero-subheadline { opacity: 1; transform: translateY(0); }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; transform: translateY(30px); transition: all .9s var(--ease) .8s; }
.hero-slide.active .hero-buttons { opacity: 1; transform: translateY(0); }
.hero-scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .4rem; color: rgba(255,255,255,.3); font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; }
.hero-scroll-hint span { display: block; width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(201,162,39,.5), transparent); animation: scrollPulse 2s ease-in-out infinite; }
.hero-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 50%; width: 52px; height: 52px; color: rgba(255,255,255,.7); font-size: 1.2rem; cursor: pointer; transition: all .3s var(--ease); display: flex; align-items: center; justify-content: center; backdrop-filter: blur(8px); }
.hero-nav-btn:hover { background: rgba(201,162,39,.2); border-color: rgba(201,162,39,.4); color: var(--gold-light); transform: translateY(-50%) scale(1.08); }
.hero-nav-btn.prev { left: 2rem; }
.hero-nav-btn.next { right: 2rem; }
.hero-dots { position: absolute; bottom: 1.75rem; right: 2rem; z-index: 3; display: flex; gap: .5rem; align-items: center; }
.hero-dot { height: 8px; border-radius: 100px; border: none; background: rgba(255,255,255,.3); cursor: pointer; transition: all .4s var(--ease); padding: 0; }
.hero-dot.active { width: 28px; background: var(--gold); }
.hero-dot:not(.active) { width: 8px; }
/* BUTTONS */
.btn-gold { display: inline-flex; align-items: center; gap: .5rem; background: var(--grad-gold); color: var(--navy-dark) !important; font-weight: 700; font-size: .88rem; letter-spacing: .5px; border: none; padding: .9rem 2.1rem; border-radius: 100px; box-shadow: 0 8px 28px rgba(201,162,39,.28); transition: all .4s var(--ease); position: relative; overflow: hidden; text-decoration: none; cursor: pointer; }
.btn-gold::after { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,.18); opacity: 0; transition: opacity .3s; }
.btn-gold:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 45px rgba(201,162,39,.45); color: var(--navy-dark) !important; }
.btn-gold:hover::after { opacity: 1; }
.btn-outline-white { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.07); color: #fff !important; font-weight: 500; font-size: .88rem; border: 1px solid rgba(255,255,255,.2); padding: .9rem 2.1rem; border-radius: 100px; transition: all .4s var(--ease); text-decoration: none; }
.btn-outline-white:hover { background: rgba(255,255,255,.14); border-color: rgba(201,162,39,.5); color: var(--gold-light) !important; }
.btn-outline-navy { display: inline-flex; align-items: center; gap: .5rem; background: transparent; color: var(--navy) !important; font-weight: 600; font-size: .88rem; border: 1.5px solid rgba(11,31,58,.2); padding: .85rem 2rem; border-radius: 100px; transition: all .4s var(--ease); text-decoration: none; }
.btn-outline-navy:hover { background: var(--navy); color: #fff !important; border-color: var(--navy); }
/* SECTION LABELS & TITLES */
.section-tag { display: inline-block; font-size: .7rem; font-weight: 800; letter-spacing: 4px; text-transform: uppercase; background: var(--grad-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: .75rem; }
.section-title { font-size: clamp(1.9rem,3.5vw,2.9rem); font-weight: 800; color: var(--navy); margin-bottom: .5rem; line-height: 1.12; }
.section-divider { width: 48px; height: 3px; background: var(--grad-gold); border-radius: 100px; margin-top: 1.25rem; display: block; }
.section-divider.center { margin-left: auto; margin-right: auto; }
/* ADVANTAGE CARDS */
.advantage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.advantage-card { background: var(--white); border: 1px solid rgba(11,31,58,.07); border-radius: var(--radius); padding: 2rem 1.75rem; position: relative; overflow: hidden; transition: all .5s var(--ease); box-shadow: var(--shadow-card); }
.advantage-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--grad-gold); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.advantage-card:nth-child(even) { margin-top: 1.5rem; }
.advantage-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: rgba(201,162,39,.15); }
.advantage-card:hover::before { transform: scaleX(1); }
.advantage-icon { width: 52px; height: 52px; background: linear-gradient(135deg, rgba(201,162,39,.12), rgba(201,162,39,.04)); border: 1px solid rgba(201,162,39,.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.25rem; }
.advantage-icon i { background: var(--grad-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
/* SERVICES */
.services-track { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.service-card { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--navy); transition: all .5s var(--ease); box-shadow: var(--shadow-card); cursor: pointer; aspect-ratio: 4/3; }
.service-card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); filter: saturate(.55); }
.service-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,16,31,.97) 0%, rgba(11,31,58,.35) 55%, transparent 100%); transition: all .5s var(--ease); }
.service-card:hover .service-card-img { transform: scale(1.1); filter: saturate(.75); }
.service-card:hover .service-card-overlay { background: linear-gradient(to top, rgba(6,16,31,1) 0%, rgba(11,31,58,.7) 58%, rgba(11,31,58,.2) 100%); }
.service-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; transition: all .5s var(--ease); }
.service-card-icon { font-size: 2rem; background: var(--grad-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: .75rem; display: block; }
.service-card-title { font-family: var(--font-head); font-size: 1.3rem; color: #fff; margin-bottom: .5rem; font-weight: 700; }
.service-card-desc { color: rgba(255,255,255,.65); font-size: .88rem; opacity: 0; transform: translateY(12px); transition: all .5s var(--ease); }
.service-card-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .82rem; font-weight: 600; color: var(--gold-light) !important; text-decoration: none; margin-top: 1rem; opacity: 0; transform: translateY(10px); transition: all .5s var(--ease) .1s; }
.service-card:hover .service-card-desc, .service-card:hover .service-card-link { opacity: 1; transform: translateY(0); }
/* STATS */
.counter-section { background: var(--grad-navy); position: relative; padding: 7rem 0; clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0% 100%); margin: -3rem 0; z-index: 1; }
.counter-section::before { content: ""; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.018'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.counter-box { text-align: center; position: relative; z-index: 1; }
.counter-box h3 { font-family: var(--font-body); font-size: 4rem; font-weight: 900; background: var(--grad-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; margin-bottom: .5rem; }
.counter-box p { color: rgba(255,255,255,.5); font-size: .82rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin: 0; }

/* Responsive borders for Stats to ensure symmetry */
@media (min-width: 992px) {
    .counter-row > div:not(:last-child) .counter-box { border-right: 1px solid rgba(255,255,255,0.1); }
}
@media (max-width: 991.98px) {
    .counter-row { --bs-gutter-y: 0; margin-top: 0; }
    .counter-row > div { padding-top: 2rem; padding-bottom: 2rem; }
    .counter-row > div:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
    .counter-row > div:nth-child(1), .counter-row > div:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
    .counter-box { padding-bottom: 0 !important; border: none !important; }
}

/* PORTFOLIO */
.portfolio-item { border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-card); }
.portfolio-img { width: 100%; height: 320px; object-fit: cover; transition: transform .8s var(--ease); display: block; }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,16,31,1) 0%, rgba(6,16,31,.2) 60%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; opacity: 0; transition: opacity .5s var(--ease); }
.portfolio-item:hover .portfolio-img { transform: scale(1.07); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-category { font-size: .7rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; background: var(--grad-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: .5rem; display: block; }
.portfolio-title { font-family: var(--font-head); color: #fff; font-size: 1.2rem; margin: 0; }
/* CTA SECTION */
.cta-section { background: var(--off-white); padding: 6rem 0; }
.cta-box { background: var(--grad-navy); border-radius: 28px; padding: 4.5rem 3.5rem; position: relative; overflow: hidden; border: 1px solid rgba(201,162,39,.1); }
.cta-box::before { content: ""; position: absolute; top: -80px; right: -80px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(201,162,39,.1) 0%, transparent 68%); border-radius: 50%; }
.cta-box::after { content: ""; position: absolute; bottom: -50px; left: -50px; width: 220px; height: 220px; border: 1px solid rgba(201,162,39,.1); border-radius: 50%; }
/* BREADCRUMB HEADER */
.breadcrumb-section { background: var(--grad-navy); padding: 5.5rem 0 4.5rem; position: relative; overflow: hidden; }
.breadcrumb-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 40%, rgba(201,162,39,.06) 0%, transparent 60%), radial-gradient(ellipse 40% 60% at 20% 70%, rgba(11,31,58,.5) 0%, transparent 60%); }
.breadcrumb-section::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: var(--white); clip-path: ellipse(55% 100% at 50% 100%); }
.breadcrumb-section .container { position: relative; z-index: 1; }
.breadcrumb-custom .breadcrumb-item a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .3s; }
.breadcrumb-custom .breadcrumb-item a:hover { color: var(--gold-light); }
.breadcrumb-custom .breadcrumb-item.active { color: var(--gold); }
.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.25); }
/* CONTACT SECTION */
.contact-info-card { background: var(--off-white); border: 1px solid rgba(11,31,58,.07); border-radius: var(--radius); padding: 1.75rem; transition: all .4s var(--ease); box-shadow: var(--shadow-card); display: flex; align-items: flex-start; gap: 1.25rem; }
.contact-info-card:hover { border-color: rgba(201,162,39,.25); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.contact-icon-bg { width: 52px; height: 52px; border-radius: 14px; background: var(--grad-navy); border: 1px solid rgba(201,162,39,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon-bg i { font-size: 1.15rem; background: var(--grad-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.contact-label { font-size: .72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray-text); font-weight: 600; margin-bottom: .25rem; }
.contact-value { font-size: .95rem; font-weight: 600; color: var(--navy); margin: 0; }
.contact-value a { color: var(--navy); text-decoration: none; }
.contact-value a:hover { color: var(--gold); }
.whatsapp-card { background: linear-gradient(135deg, #1B8A3B, #25D366); border-radius: var(--radius); padding: 1.75rem 2rem; display: flex; align-items: center; gap: 1.25rem; text-decoration: none; transition: all .4s var(--ease); box-shadow: 0 8px 28px rgba(37,211,102,.2); }
.whatsapp-card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(37,211,102,.35); }
.whatsapp-card .wa-icon { width: 52px; height: 52px; background: rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff; flex-shrink: 0; }
.whatsapp-card .wa-label { font-size: .72rem; color: rgba(255,255,255,.75); letter-spacing: 1.5px; text-transform: uppercase; }
.whatsapp-card .wa-value { color: #fff; font-weight: 700; font-size: .95rem; margin: 0; }
.contact-form-card { background: var(--white); border: 1px solid rgba(11,31,58,.07); border-radius: var(--radius); padding: 3rem; box-shadow: var(--shadow-card); position: relative; overflow: hidden; }
.contact-form-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-gold); }
.form-branded .form-label { font-size: .78rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--navy); margin-bottom: .5rem; }
.form-branded .form-control, .form-branded .form-select { border: 1.5px solid rgba(11,31,58,.12); border-radius: var(--radius-sm); padding: .8rem 1.1rem; font-size: .92rem; color: var(--navy); background: var(--off-white); transition: all .3s; box-shadow: none; }
.form-branded .form-control:focus, .form-branded .form-select:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(201,162,39,.1); outline: none; }
.form-branded .form-control::placeholder { color: rgba(100,116,139,.5); }
.form-branded textarea.form-control { resize: vertical; min-height: 130px; }
.alert-branded-success { background: linear-gradient(135deg, rgba(34,197,94,.08), rgba(22,163,74,.04)); border: 1px solid rgba(34,197,94,.25); border-left: 4px solid #22c55e; border-radius: var(--radius-sm); padding: 1.5rem 2rem; color: var(--navy); }
.alert-branded-danger { background: linear-gradient(135deg, rgba(239,68,68,.08), rgba(220,38,38,.04)); border: 1px solid rgba(239,68,68,.2); border-left: 4px solid #ef4444; border-radius: var(--radius-sm); padding: 1.5rem 2rem; color: var(--navy); }
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid rgba(11,31,58,.07); height: 420px; }
.map-container iframe { width: 100%; height: 100%; border: 0; display: block; }
/* CAREER CARDS */
.career-card { background: var(--white); border: 1px solid rgba(11,31,58,.07); border-radius: var(--radius); padding: 2rem; transition: all .4s var(--ease); box-shadow: var(--shadow-card); }
.career-card:hover { border-color: rgba(201,162,39,.3); box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.career-meta { font-size: .85rem; color: var(--gray-text); }
.career-meta i { color: var(--gold); margin-right: 4px; }
/* WORKFLOW STEPS */
.workflow-step { position: relative; padding-left: 52px; margin-bottom: 2rem; }
.workflow-step::before { content: ""; position: absolute; left: 19px; top: 42px; bottom: -2rem; width: 1px; background: linear-gradient(to bottom, rgba(201,162,39,.35), transparent); }
.workflow-step:last-child::before { display: none; }
.workflow-number { position: absolute; left: 0; top: 0; width: 40px; height: 40px; background: var(--grad-navy); border: 1px solid rgba(201,162,39,.35); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .82rem; color: var(--gold); }
/* FOOTER */
.footer-section { background: var(--navy-dark); border-top: 1px solid rgba(201,162,39,.1); padding: 5.5rem 0 2rem; color: rgba(255,255,255,.5); }
.footer-section h5 { color: #fff; font-family: var(--font-body); font-weight: 700; font-size: .78rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.5rem; }
.footer-section a { color: rgba(255,255,255,.5); text-decoration: none; display: block; padding: .3rem 0; font-size: .88rem; transition: all .3s; }
.footer-section a:hover { color: var(--gold-light); transform: translateX(5px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding: 1.75rem 0; font-size: .8rem; color: rgba(255,255,255,.35); margin-top: 3rem; }
.footer-social-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); text-decoration: none; transition: all .35s var(--ease); font-size: .95rem; }
.footer-social-btn:hover { background: rgba(201,162,39,.18); border-color: rgba(201,162,39,.4); color: var(--gold); transform: translateY(-3px); }
/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; background: rgba(6,16,31,.96); z-index: 9999; display: none; align-items: center; justify-content: center; backdrop-filter: blur(12px); }
.lightbox.show { display: flex; animation: fadeIn .3s ease; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border: 2px solid rgba(201,162,39,.25); border-radius: var(--radius); box-shadow: 0 40px 100px rgba(0,0,0,.7); }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; color: rgba(255,255,255,.6); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 50%; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.2rem; transition: all .3s; }
.lightbox-close:hover { color: #fff; background: rgba(201,162,39,.2); border-color: rgba(201,162,39,.4); }
/* FLOATING ACTIONS */
.btn-whatsapp { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 1000; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff !important; display: flex; align-items: center; justify-content: center; font-size: 1.65rem; box-shadow: 0 8px 28px rgba(37,211,102,.38); text-decoration: none; transition: all .4s var(--ease-bounce); }
.btn-whatsapp:hover { transform: scale(1.15); box-shadow: 0 14px 38px rgba(37,211,102,.55); }
.btn-back-to-top { position: fixed; bottom: 6.5rem; right: 1.85rem; z-index: 1000; width: 44px; height: 44px; border-radius: 50%; background: rgba(11,31,58,.85); color: var(--gold) !important; border: 1px solid rgba(201,162,39,.3); display: flex; align-items: center; justify-content: center; font-size: 1rem; opacity: 0; visibility: hidden; text-decoration: none; transition: all .4s var(--ease); backdrop-filter: blur(12px); }
.btn-back-to-top.show { opacity: 1; visibility: visible; }
.btn-back-to-top:hover { background: var(--gold); color: var(--navy) !important; border-color: var(--gold); }
/* GALLERY & FILTER */
.filter-btn { font-size: .8rem; font-weight: 600; padding: .5rem 1.5rem; border-radius: 100px; border: 1.5px solid rgba(11,31,58,.15); background: transparent; color: var(--gray-text); cursor: pointer; transition: all .3s var(--ease); letter-spacing: .3px; }
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
/* MILESTONE CARDS */
.milestone-card { display: flex; align-items: flex-start; gap: .85rem; padding: 1rem 1.25rem; background: var(--off-white); border-radius: var(--radius-sm); border: 1px solid rgba(11,31,58,.06); transition: all .3s var(--ease); }
.milestone-card:hover { border-color: rgba(201,162,39,.25); background: rgba(201,162,39,.04); }
.milestone-year { font-size: 1.15rem; font-weight: 900; background: var(--grad-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; flex-shrink: 0; }
.milestone-text { font-size: .82rem; color: var(--gray-text); line-height: 1.4; }
/* VALUE CARDS */
.value-card { background: var(--off-white); border-radius: var(--radius); padding: 2.25rem 2rem; text-align: center; border: 1px solid rgba(11,31,58,.06); transition: all .4s var(--ease); box-shadow: var(--shadow-card); height: 100%; }
.value-card:hover { border-color: rgba(201,162,39,.3); transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.value-icon { width: 68px; height: 68px; border-radius: 18px; background: var(--grad-navy); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.5rem; transition: all .4s var(--ease); border: 1px solid rgba(201,162,39,.15); }
.value-card:hover .value-icon { transform: scale(1.08) rotate(-4deg); }
.value-icon i { background: var(--grad-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
/* PROCESS CARDS */
.process-card { padding: 2.25rem 1.75rem; border-radius: var(--radius); background: var(--white); border: 1px solid rgba(11,31,58,.06); position: relative; box-shadow: var(--shadow-card); text-align: center; transition: all .4s var(--ease); height: 100%; }
.process-card:hover { border-color: rgba(201,162,39,.25); transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.process-number { font-size: 3.5rem; font-weight: 900; background: var(--grad-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; opacity: .12; position: absolute; top: .5rem; right: 1rem; line-height: 1; font-family: var(--font-body); transition: opacity .4s; }
.process-card:hover .process-number { opacity: .2; }
.process-icon { font-size: 2rem; background: var(--grad-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block; margin-bottom: 1.1rem; }
/* SIDEBAR WIDGETS */
.sidebar-widget { background: var(--off-white); border-radius: var(--radius); padding: 2rem; border: 1px solid rgba(11,31,58,.07); box-shadow: var(--shadow-card); }
.sidebar-widget-title { font-size: .72rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 800; background: var(--grad-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 1.25rem; display: block; }
.sidebar-cta { background: var(--grad-navy); border-radius: var(--radius); padding: 2rem; text-align: center; border: 1px solid rgba(201,162,39,.15); }
.sidebar-link { display: flex; align-items: center; gap: .8rem; padding: .8rem 0; border-bottom: 1px solid rgba(11,31,58,.06); text-decoration: none; transition: all .3s var(--ease); color: var(--navy); }
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { padding-left: .4rem; color: var(--gold); }
.sidebar-link .sidebar-link-icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.sidebar-link span { font-size: .9rem; font-weight: 600; }
.sidebar-link .sidebar-link-arrow { color: var(--gray-text); font-size: .75rem; margin-left: auto; }
/* PARTNER STRIP */
.partner-card { padding: 1.5rem 1rem; border-radius: var(--radius-sm); background: var(--white); border: 1px solid rgba(11,31,58,.06); transition: all .35s var(--ease); box-shadow: var(--shadow-card); text-align: center; }
.partner-card:hover { border-color: rgba(201,162,39,.3); transform: translateY(-5px); box-shadow: 0 12px 30px rgba(11,31,58,.1); }
/* PROJECT META */
.project-meta-row { display: flex; align-items: flex-start; gap: .85rem; padding: .85rem 0; border-bottom: 1px solid rgba(11,31,58,.06); }
.project-meta-row:last-child { border-bottom: none; }
.project-meta-label { font-size: .7rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray-text); margin-bottom: .12rem; font-weight: 600; }
.project-meta-value { font-weight: 700; font-size: .9rem; color: var(--navy); margin: 0; }
/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(28px); transition: all .8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: all .8s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: all .8s var(--ease); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
/* RESPONSIVE */
@media (max-width: 991.98px) {
    .top-bar { display: none; }
    .navbar-wrap { padding: .5rem 1rem; }
    .navbar-custom { border-radius: var(--radius); padding: .8rem 1.25rem; }
    .counter-section { clip-path: none; margin: 0; padding: 5rem 0; }
    .advantage-grid { grid-template-columns: 1fr; }
    .advantage-card:nth-child(even) { margin-top: 0; }
    .cta-box { padding: 3rem 2rem; }
    .contact-form-card { padding: 2rem; }
}
@media (max-width: 767.98px) {
    .breadcrumb-section { padding: 4rem 0 3.5rem; }
    .hero-nav-btn { display: none; }
}
@media (max-width: 575.98px) {
    .hero-title { font-size: 2.4rem; }
    .cta-box { padding: 2.5rem 1.5rem; }
    .services-track { grid-template-columns: 1fr; }
    .contact-form-card { padding: 1.5rem; }
}
