﻿/* ============================================
   GIKURI & ASSOCIATES - COMPLETE STYLESHEET
   Proposal: Navy #0A1628 | Gold #D4A843 | Off-White #F8F9FA | Charcoal #1A1A2E
   Animations: max 400ms, transform + opacity only
   ============================================ */

:root {
    --navy: #000000;
    --gold: #FFD700;
    --gold-hover: #E6C200;
    --off-white: #F5F5F5;
    --charcoal: #111111;
    --motion: 0.4s;
    --motion-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --lift: translateY(-4px);
}

/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--off-white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
.logo-text,
.hero-title,
.section-title,
.team-name,
.feature-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* ---------- CONTAINER ---------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: transform var(--motion) var(--motion-ease), opacity var(--motion) var(--motion-ease), background-color var(--motion) var(--motion-ease), color var(--motion) var(--motion-ease), box-shadow var(--motion) var(--motion-ease), border-color var(--motion) var(--motion-ease);
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.btn-primary {
    background: #FFD700;
    color: #000000;
}

.btn-primary:hover {
    background: #c49a38;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 168, 67, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #D4A843;
    color: #D4A843;
}

.btn-outline:hover {
    background: #D4A843;
    color: #0A1628;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 36px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

.btn-text {
    color: #D4A843;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.btn-text:hover {
    gap: 12px;
}

/* ---------- HEADER / NAVIGATION ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #0A1628;
    z-index: 1000;
    padding: 16px 0;
    transition: transform var(--motion) var(--motion-ease), opacity var(--motion) var(--motion-ease), background-color var(--motion) var(--motion-ease), color var(--motion) var(--motion-ease), box-shadow var(--motion) var(--motion-ease), border-color var(--motion) var(--motion-ease);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    background: #FFD700;
    color: #000000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    font-family: 'Playfair Display', serif;
    transition: transform 0.3s;
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

.logo-text {
    color: #000000;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #D4A843;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4A843;
    transition: width 0.3s;
}

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

/* ---------- MOBILE MENU ---------- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #D4A843;
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #0A1628;
    z-index: 2000;
    padding: 80px 32px 32px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.6);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #D4A843;
    font-size: 32px;
    cursor: pointer;
    transition: transform 0.3s;
}

.menu-close:hover {
    transform: rotate(90deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #D4A843;
}

.mobile-cta {
    margin-top: 32px;
    display: block;
    text-align: center;
}

/* ---------- HERO SECTION ---------- */
.hero {
    min-height: 90vh;
    background: linear-gradient(135deg, #0A1628 0%, #1A2A3E 100%);
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img,
.section-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.hero-bg-img {
    object-position: center 25%;
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    object-position: center 20%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg,
            rgba(10, 22, 40, 0.88) 0%,
            rgba(10, 22, 40, 0.62) 45%,
            rgba(10, 22, 40, 0.82) 100%);
    pointer-events: none;
}

.hero--has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.06"><path fill="none" d="M20,20 L80,20 M20,40 L80,40 M20,60 L80,60 M20,80 L80,80 M40,20 L40,80 M60,20 L60,80" stroke="%23D4A843" stroke-width="1"/></svg>');
    background-size: 30px 30px;
    pointer-events: none;
}

.hero--has-bg .hero-title {
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: #ffffff;
}

.hero--has-bg .hero-subtitle {
    color: #d4a843;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4A843 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.4s var(--motion-ease) forwards;
}

.hero-subtitle {
    font-size: 20px;
    color: #D4A843;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.4s var(--motion-ease) 0.1s forwards;
}

.hero-cta-group,
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.4s var(--motion-ease) 0.2s forwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: fadeInUp 0.4s var(--motion-ease) 0.3s forwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #D4A843;
    font-family: 'Playfair Display', serif;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
    background: #F8F9FA;
    padding: 40px 0;
    border-bottom: 1px solid #E5E7EB;
}

.trust-bar-inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s;
}

.trust-item:hover {
    transform: translateY(-2px);
}

.trust-icon {
    width: 40px;
    height: 40px;
    color: #D4A843;
}

.trust-icon svg {
    width: 100%;
    height: 100%;
}

.trust-text {
    font-weight: 600;
    color: #0A1628;
    font-size: 14px;
}

/* ---------- SECTION HEADERS ---------- */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    color: #D4A843;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 16px;
}

.section-line {
    width: 60px;
    height: 3px;
    background: #D4A843;
    margin: 0 auto;
    border-radius: 2px;
}

.section-header.light .section-title {
    color: #FFFFFF;
}

.section-header.light .section-line {
    background: #D4A843;
}

/* ---------- ABOUT PREVIEW ---------- */
.about-preview {
    padding: 80px 0;
    background: #FFFFFF;
}

.about-preview-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    min-height: 320px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: #D4A843;
    border-radius: 12px;
    z-index: 1;
    opacity: 0.8;
}

.about-desc {
    color: #6B7280;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* ---------- SERVICES SECTION ---------- */
.services {
    padding: 80px 0;
    background: #F8F9FA;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 32px;
    transition: transform var(--motion) var(--motion-ease), opacity var(--motion) var(--motion-ease), background-color var(--motion) var(--motion-ease), color var(--motion) var(--motion-ease), box-shadow var(--motion) var(--motion-ease), border-color var(--motion) var(--motion-ease);
    border: 1px solid #E5E7EB;
    opacity: 0;
    transform: translateY(20px);
}

.service-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.service-card.animated:hover {
    transform: var(--lift);
    box-shadow: 0 12px 30px rgba(10, 22, 40, 0.12);
    border-color: var(--gold);
}

.service-icon {
    width: 52px;
    height: 52px;
    color: #D4A843;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: #D4A843;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 12px;
}

/* ---------- WHY CHOOSE US ---------- */
.why-us {
    padding: 80px 0;
    background: #FFFFFF;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-card {
    padding: 24px;
    transition: transform 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    color: #D4A843;
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
}

/* ---------- SECTION BACKGROUND IMAGES ---------- */
.section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.section-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg,
            rgba(10, 22, 40, 0.92) 0%,
            rgba(10, 22, 40, 0.78) 100%);
    pointer-events: none;
}

.section-bg-overlay--light {
    background: rgba(255, 255, 255, 0.94);
}

.about-preview--has-bg,
.testimonials--has-bg,
.commitment-banner {
    position: relative;
    overflow: hidden;
}

.about-preview--has-bg .about-preview-inner,
.testimonials--has-bg .container,
.commitment-banner-inner {
    position: relative;
    z-index: 2;
}

.commitment-banner {
    padding: 56px 0;
    text-align: center;
}

.commitment-banner-inner {
    max-width: 720px;
    margin: 0 auto;
}

.commitment-label {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.commitment-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
    padding: 80px 0;
    background: #0A1628;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 320px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn var(--motion) var(--motion-ease);
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    text-align: center;
    padding: 40px;
}

.quote-icon {
    font-size: 64px;
    color: #D4A843;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 20px;
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gold);
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 18px;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: #D4A843;
    margin-bottom: 4px;
}

.author-title {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all var(--motion) var(--motion-ease);
}

.dot.active {
    background: #D4A843;
    width: 30px;
    border-radius: 5px;
}

.dot:hover {
    background: #D4A843;
}

/* ---------- TEAM SECTION ---------- */
.team-preview {
    padding: 80px 0;
    background: #F8F9FA;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    transition: transform var(--motion) var(--motion-ease), opacity var(--motion) var(--motion-ease), background-color var(--motion) var(--motion-ease), color var(--motion) var(--motion-ease), box-shadow var(--motion) var(--motion-ease), border-color var(--motion) var(--motion-ease);
    box-shadow: 0 4px 12px rgba(10, 22, 40, 0.08);
    opacity: 0;
    transform: translateY(20px);
}

.team-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.team-card.animated:hover {
    transform: var(--lift);
    box-shadow: 0 20px 40px rgba(10, 22, 40, 0.12);
}

.team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #0A1628, transparent);
    padding: 24px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.team-card:hover .team-overlay {
    transform: translateY(0);
}

.team-bio {
    color: #FFFFFF;
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.team-social {
    display: flex;
    gap: 16px;
}

.team-social a {
    color: #D4A843;
    width: 28px;
    height: 28px;
    transition: transform 0.3s;
}

.team-social a:hover {
    transform: translateY(-2px);
}

.team-social svg {
    width: 100%;
    height: 100%;
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-name {
    font-size: 22px;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 6px;
}

.team-role {
    font-size: 14px;
    color: #D4A843;
    margin-bottom: 10px;
    font-weight: 500;
}

.team-badge {
    background: #F3F4F6;
    color: #6B7280;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
}

/* ---------- CONTACT CTA ---------- */
.contact-cta {
    padding: 64px 0;
    background: linear-gradient(135deg, #0A1628 0%, #1A2A3E 100%);
}

.contact-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-cta-text {
    flex: 1;
}

.contact-cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.contact-cta-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.contact-cta-actions {
    display: flex;
    gap: 16px;
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
    background: linear-gradient(135deg, #0A1628 0%, #1A2A3E 100%);
    padding: 120px 0 60px;
    text-align: center;
}

.page-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-size: 18px;
    color: #D4A843;
}

/* ---------- SERVICES PACKAGES ---------- */
.services-packages {
    padding: 80px 0;
    background: #F8F9FA;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.package-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    transition: transform var(--motion) var(--motion-ease), opacity var(--motion) var(--motion-ease), background-color var(--motion) var(--motion-ease), color var(--motion) var(--motion-ease), box-shadow var(--motion) var(--motion-ease), border-color var(--motion) var(--motion-ease);
    border: 1px solid #E5E7EB;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.package-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.package-card.animated:hover {
    transform: var(--lift);
    box-shadow: 0 20px 40px rgba(10, 22, 40, 0.12);
    border-color: var(--gold);
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #D4A843;
    color: #0A1628;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.package-icon {
    width: 48px;
    height: 48px;
    color: #D4A843;
    margin-bottom: 20px;
}

.package-icon svg {
    width: 100%;
    height: 100%;
}

.package-title {
    font-size: 20px;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 12px;
}

.package-desc {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 20px;
    line-height: 1.5;
}

.package-features {
    list-style: none;
    margin-bottom: 28px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 10px;
}

.package-features li svg {
    width: 16px;
    height: 16px;
    color: #D4A843;
    flex-shrink: 0;
}

/* ---------- SERVICES DETAIL ---------- */
.services-detail {
    padding: 80px 0;
    background: #FFFFFF;
}

.service-detail-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-detail-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: #F8F9FA;
    border-radius: 12px;
    transition: all 0.3s;
}

.service-detail-item:hover {
    transform: translateX(8px);
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-detail-icon {
    width: 48px;
    height: 48px;
    color: #D4A843;
    flex-shrink: 0;
}

.service-detail-icon svg {
    width: 100%;
    height: 100%;
}

.service-detail-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 8px;
}

.service-detail-content p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
}

/* ---------- CONTACT PAGE ---------- */
.contact-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 24px;
}

.contact-details {
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: #F3F4F6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A843;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-item a {
    color: #6B7280;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.contact-item a:hover {
    color: #D4A843;
}

.contact-item p {
    color: #6B7280;
    font-size: 15px;
}

.contact-form {
    background: #F8F9FA;
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.3s;
    background: #FFFFFF;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4A843;
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.success-message {
    background: #10B981;
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 20px;
    display: none;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}

/* ---------- MAP SECTION ---------- */
.map-section {
    padding: 0 0 80px;
    background: #FFFFFF;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-placeholder {
    background: #F3F4F6;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    color: #6B7280;
}

/* ---------- FOOTER ---------- */
.footer {
    background: #0A1628;
    padding: 60px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-bottom: 16px;
}

.footer-address {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    line-height: 1.6;
}

.footer-heading {
    color: #D4A843;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #D4A843;
    transform: translateX(4px);
}

.footer-contact p {
    margin-bottom: 12px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #D4A843;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.6);
    width: 36px;
    height: 36px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links a:hover {
    color: #D4A843;
    background: rgba(212, 168, 67, 0.1);
    transform: translateY(-2px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

/* ---------- STICKY ELEMENTS ---------- */
.whatsapp-sticky {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25D366;
    color: #FFFFFF;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-sticky svg {
    width: 32px;
    height: 32px;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0A1628;
    padding: 12px 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    border-top: 1px solid rgba(212, 168, 67, 0.3);
}

.sticky-cta.active {
    transform: translateY(0);
}

.sticky-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sticky-cta-text {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 14px;
}

.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    background: #D4A843;
    color: #0A1628;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s;
    display: none;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.scroll-top:hover {
    transform: translateY(-4px);
    background: #c49a38;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    }
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {

    .nav-desktop,
    .header .btn-primary,
    .header .btn-header {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .about-preview-inner {
        grid-template-columns: 1fr;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

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

    .contact-cta-inner {
        flex-direction: column;
        text-align: center;
    }

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

    .footer-logo {
        justify-content: center;
    }

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

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

    .btn {
        width: 100%;
        text-align: center;
    }

    .service-detail-item {
        flex-direction: column;
        text-align: center;
    }

    .service-detail-icon {
        margin: 0 auto;
    }

    .page-hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .contact-form {
        padding: 24px;
    }
}

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

    .hero-title {
        font-size: 28px;
    }

    .stat-number {
        font-size: 28px;
    }

    .testimonial-content {
        padding: 20px;
    }

    .package-card {
        padding: 24px;
    }
}

/* ---------- SCROLL REVEAL (Proposal ┬º3.3) ---------- */
.reveal-item,
.reveal-from-left,
.reveal-from-right {
    opacity: 0;
    transition: opacity var(--motion) var(--motion-ease), transform var(--motion) var(--motion-ease);
}

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

.reveal-from-right {
    transform: translateX(24px);
}

.reveal-item {
    transform: translateY(16px);
}

.reveal-item.animated,
.reveal-from-left.animated,
.reveal-from-right.animated {
    opacity: 1;
    transform: translate(0);
}

.btn-header {
    padding: 10px 24px;
    white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .service-card,
    .feature-card,
    .team-card,
    .package-card,
    .reveal-item,
    .reveal-from-left,
    .reveal-from-right {
        opacity: 1;
        transform: none;
    }
}

/* ---------- LEGAL PAGES ---------- */
.legal-section {
    padding: 60px 0 80px;
    background: #FFFFFF;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    color: #0A1628;
    font-size: 22px;
    margin: 32px 0 12px;
}

.legal-content p,
.legal-content li {
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

/* ========== BLACK · WHITE · YELLOW THEME ========== */
:root {
    --white: #FFFFFF;
    --black: #000000;
    --yellow: #FFD700;
    --yellow-soft: #FFF9DB;
    --gray-bg: #F5F5F5;
    --text-muted: #444444;
    --border: #E0E0E0;
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
}

body {
    background-color: var(--white);
}

body.is-loading {
    opacity: 0;
}

body.is-ready {
    opacity: 1;
    transition: opacity var(--motion) var(--motion-ease);
}

.header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.header.header-scrolled {
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.logo-text {
    color: var(--navy);
}

.nav-link {
    color: var(--navy);
}

.menu-toggle span {
    background: var(--navy);
}

.hero {
    min-height: 80vh;
    background: linear-gradient(160deg, var(--white) 0%, var(--yellow-soft) 55%, var(--white) 100%);
    padding: 130px 0 64px;
}

.hero::before {
    display: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.hero-title {
    color: var(--navy);
    -webkit-text-fill-color: var(--navy);
    background: none;
}

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

.hero-stats {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    border-top: none;
    padding: 28px 40px;
    margin-top: 8px;
}

.stat-label {
    color: var(--text-muted);
}

.stat-divider {
    background: var(--border);
}

.hero .btn-outline {
    border-color: var(--navy);
    color: var(--navy);
}

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

.trust-bar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.services {
    background: var(--gray-bg);
}

.about-preview,
.why-us,
.team-preview {
    background: var(--white);
}

.services-packages {
    background: var(--gray-bg);
}

.services-detail {
    background: var(--white);
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.feature-card.animated:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 168, 67, 0.35);
}

.testimonials {
    background: var(--white);
}

.testimonial-content {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    color: var(--charcoal);
}

.section-header.light .section-title {
    color: var(--navy);
}

.contact-cta {
    background: linear-gradient(120deg, var(--yellow-soft) 0%, var(--white) 50%, var(--yellow-soft) 100%);
    border-top: 3px solid var(--yellow);
}

.contact-cta-title,
.cta-title {
    color: var(--navy);
}

.contact-cta-desc,
.cta-description {
    color: var(--text-muted);
}

.contact-cta .btn-outline,
.cta-content .btn-outline {
    border-color: var(--navy);
    color: var(--navy);
}

.contact-cta .btn-outline:hover,
.cta-content .btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.page-hero {
    background: linear-gradient(160deg, var(--white) 0%, var(--yellow-soft) 60%, var(--white) 100%);
    border-bottom: 3px solid var(--yellow);
}

.page-hero-title {
    color: var(--navy);
}

.page-hero-subtitle {
    color: var(--text-muted);
    opacity: 1;
}

.page-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--motion-ease), transform 0.5s var(--motion-ease);
}

.page-section.animated {
    opacity: 1;
    transform: none;
}

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

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

.footer {
    background: var(--black);
}

.section-header-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header-center .section-line {
    margin-left: auto;
    margin-right: auto;
}

.industries-section {
    padding: 64px 0;
    background: var(--white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 32px;
    max-width: 900px;
    margin: 0 auto;
    list-style: none;
    text-align: center;
}

.industries-grid li {
    padding: 14px 20px;
    background: var(--gray-bg);
    border-radius: 8px;
    font-weight: 600;
    color: var(--black);
    border: 1px solid var(--border);
    transition: border-color var(--motion) var(--motion-ease), background-color var(--motion) var(--motion-ease);
}

.industries-grid li:hover {
    border-color: var(--yellow);
    background: var(--yellow-soft);
}

.service-detail-content ul {
    margin: 12px 0 0;
    padding-left: 20px;
    color: var(--text-muted);
}

.service-detail-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.service-detail-content h3 {
    color: var(--black);
    margin-bottom: 8px;
}

.team-grid {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 600px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--yellow-soft);
    color: var(--black);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-label {
    display: inline-block;
    padding: 6px 14px;
    background: var(--yellow-soft);
    color: var(--black);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-text,
.about-desc {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-description {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.trust-bar-inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 32px;
}

.trust-grid,
.about-grid {
    display: grid;
    gap: 32px;
}

.package-card {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.service-detail-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.trust-grid {
    grid-template-columns: repeat(4, 1fr);
}

.about-grid,
.about-preview-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.cta-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.cta-buttons,
.contact-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.btn-large {
    padding: 14px 36px;
    font-size: 16px;
}

.service-icon i,
.feature-icon i,
.package-icon i,
.trust-icon i {
    font-size: 1.4rem;
    color: var(--gold);
}

.whatsapp-sticky .fab {
    font-size: 28px;
}

.scroll-top .fas {
    font-size: 18px;
}

@media (max-width: 991px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .about-preview-inner {
        grid-template-columns: 1fr;
    }
}

/* ---------- PRINT STYLES ---------- */
@media print {

    .header,
    .whatsapp-sticky,
    .sticky-cta,
    .scroll-top,
    .contact-cta,
    .testimonials-dots,
    .btn {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        background: white;
        padding: 20px 0;
    }

    .hero-title {
        color: black;
        -webkit-text-fill-color: black;
    }
}

/* ---------- HERO VIDEO BACKGROUND ---------- */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
}

.hero .container.hero-content {
    position: relative;
    z-index: 2;
}

/* ---------- SERVICES SECTION VIDEO BACKGROUND ---------- */
.services {
    position: relative;
    overflow: hidden;
}

.section-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 0.07;
    filter: saturate(0) brightness(2);
}

.services .container {
    position: relative;
    z-index: 1;
}

/* Tint the services section slightly darker so cards stay readable */
.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(245, 245, 245, 0.92);
    z-index: 0;
}

/* ============================================
   HERO VIDEO BACKGROUND (legacy fallback)
   ============================================ */

.hero {
    position: relative;
    overflow: hidden;
}

/* The actual <video> element sits behind everything */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

/* Dark overlay so text stays readable over the video */
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.80) 0%,
            rgba(0, 0, 0, 0.55) 60%,
            rgba(0, 0, 0, 0.70) 100%);
    z-index: 1;
}

/* Push hero text above the overlay */
.hero .container.hero-content {
    position: relative;
    z-index: 2;
}

/* Fallback: if video fails to load, keep the dark gradient background */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
    z-index: -1;
}

/* ============================================
   SERVICES SECTION — SUBTLE DATA FLOW VIDEO BG
   ============================================ */

.services {
    position: relative;
    overflow: hidden;
}

/* Very faint, desaturated video — just adds texture */
.section-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 0.06;
    filter: grayscale(100%) brightness(1.5);
}

/* Solid tint sits on top of video, below cards */
.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(245, 245, 245, 0.94);
    z-index: 1;
}

/* Cards and content sit above everything */
.services .container {
    position: relative;
    z-index: 2;
}

/* ============================================
   INDUSTRIES SECTION
   ============================================ */

.industries-section {
    padding: 60px 0;
    background: #ffffff;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    list-style: none;
    margin-top: 32px;
}

.industries-grid li {
    background: #f5f5f5;
    border-left: 4px solid #FFD700;
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #111111;
    transition: all 0.3s;
}

.industries-grid li:hover {
    background: #FFD700;
    color: #000000;
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TEAM GRID — 4 MEMBERS (2x2)
   ============================================ */

.team-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 960px;
}

@media (max-width: 640px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

}

/* ============================================
   HERO VIDEO BACKGROUND — HOME PAGE ONLY
   ============================================ */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 90vh;
}

/* Video sits at z-index 0, behind everything */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    /* NEVER blocks clicks */
}

/* Dark overlay — also pointer-events: none so nav works */
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: 1;
    pointer-events: none;
    /* NEVER blocks clicks */
}

/* Text content sits above overlay */
.hero .container.hero-content {
    position: relative;
    z-index: 2;
}

/* ============================================
   SERVICES SECTION — no video, clean background
   ============================================ */

.services {
    position: relative;
    background: #f5f5f5;
}

/* Remove any leftover ::before that could block clicks */
.services::before {
    display: none;
}

/* ============================================
   NAVIGATION — ensure always clickable
   ============================================ */

.header {
    z-index: 1000;
    position: fixed;
}

.nav-desktop a,
.mobile-nav a,
.btn-header {
    position: relative;
    z-index: 1001;
    pointer-events: auto;
}

/* ============================================
   SERVICE CARDS WITH IMAGES
   ============================================ */

.service-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card.animated:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: #FFD700;
}

.service-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.service-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card-body .service-icon {
    width: 40px;
    height: 40px;
    color: #FFD700;
    margin-bottom: 14px;
}

.service-card-body .service-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.service-card-body .service-desc {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.service-card-body .service-link {
    color: #000000;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 2px;
    width: fit-content;
    transition: gap 0.2s;
}

.service-card-body .service-link:hover {
    gap: 10px;
}

/* Hero — clean gradient, no video */
.hero {
    min-height: 90vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 60%, #111111 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Subtle gold grid pattern on hero */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 215, 0, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero .container.hero-content {
    position: relative;
    z-index: 1;
}

/* ============================================
   SERVICE CARDS — ICON + FEATURES LAYOUT
   ============================================ */

/* Reset card to clean padding layout (no image wrapper) */
.service-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 32px 28px;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.service-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.service-card.animated:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
    border-color: #FFD700;
}

/* FA icon circle */
.service-card .service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.3s ease;
}

.service-card .service-icon i {
    font-size: 24px;
    color: #FFD700;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon {
    background: #FFD700;
}

.service-card:hover .service-icon i {
    color: #000000;
}

.service-card .service-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.service-card .service-desc {
    font-size: 14px;
    color: #555555;
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
}

/* Feature bullet list */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.service-features li {
    font-size: 13px;
    color: #444444;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li i {
    color: #FFD700;
    font-size: 12px;
    flex-shrink: 0;
}

/* Learn More link */
.service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 2px;
    width: fit-content;
    transition: gap 0.2s ease, color 0.2s ease;
}

.service-card .service-link:hover {
    gap: 10px;
    color: #b8960a;
}

/* Section description subtitle */
.section-description {
    text-align: center;
    color: #666666;
    max-width: 600px;
    margin: 12px auto 0;
    font-size: 16px;
    line-height: 1.6;
}

/* ============================================
   SERVICES PAGE — PACKAGES & DETAIL
   ============================================ */

.services-packages {
    padding: 80px 0;
    background: #ffffff;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.package-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid #e5e7eb;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.package-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.package-card.animated:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.10);
    border-color: #FFD700;
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #FFD700;
    color: #000000;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.package-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 26px;
    color: #FFD700;
    transition: background 0.3s, color 0.3s;
}

.package-card:hover .package-icon {
    background: #FFD700;
    color: #000000;
}

.package-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.package-desc {
    font-size: 14px;
    color: #555555;
    margin-bottom: 18px;
    line-height: 1.6;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #444444;
    margin-bottom: 9px;
}

.package-features li i {
    color: #FFD700;
    font-size: 12px;
    flex-shrink: 0;
}

/* Services Detail Section */
.services-detail {
    padding: 80px 0;
    background: #f5f5f5;
}

.service-detail-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-detail-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px 32px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-item:hover {
    transform: translateX(6px);
    border-color: #FFD700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.service-detail-item h3 {
    font-size: 19px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
}

.service-detail-item h3 i {
    color: #FFD700;
    font-size: 22px;
    width: 28px;
    text-align: center;
}

.service-detail-item ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 32px;
}

.service-detail-item li {
    font-size: 14px;
    color: #555555;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.service-detail-item li::before {
    content: "✓";
    color: #FFD700;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Responsive — packages */
@media (max-width: 1100px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-item ul {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   HOME PAGE — INDUSTRIES, FEATURES, HERO STATS
   ============================================ */

/* Industries pill style */
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin-top: 32px;
}

.industries-grid li {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 40px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: default;
}

.industries-grid li i {
    color: #FFD700;
    font-size: 14px;
}

.industries-grid li:hover {
    background: #FFD700;
    border-color: #FFD700;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.25);
}

.industries-grid li:hover i {
    color: #000000;
}

/* Feature cards — FA icon version */
.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #FFD700;
    transition: background 0.3s, color 0.3s;
}

.feature-card:hover .feature-icon {
    background: #FFD700;
    color: #000000;
}

/* Why Us section background */
.why-us {
    background: #f5f5f5;
}

/* Hero stats counter */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #FFD700;
    font-family: 'Playfair Display', serif;
    display: block;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    align-self: center;
}

@media (max-width: 600px) {
    .stat-divider {
        display: none;
    }

    .hero-stats {
        gap: 24px;
    }
}

/* ============================================
   SERVICES PAGE — ACCORDION CARDS
   ============================================ */

.svc-section {
    padding: 80px 0;
    background: #ffffff;
}

.svc-packages-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.svc-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.svc-card {
    background: #ffffff;
    border: 2px solid #e8eaed;
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 12px rgba(10, 22, 40, 0.04);
}

.svc-card:hover,
.svc-card.open {
    border-color: #FFD700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.svc-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    cursor: pointer;
    user-select: none;
}

.svc-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 215, 0, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #FFD700;
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s;
}

.svc-card.open .svc-icon,
.svc-card:hover .svc-icon {
    background: #FFD700;
    color: #000000;
}

.svc-card-title-wrap {
    flex: 1;
}

.svc-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
    font-family: 'Playfair Display', serif;
}

.svc-summary {
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
}

.svc-toggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-size: 14px;
    transition: transform 0.3s, background 0.3s, color 0.3s;
    flex-shrink: 0;
}

.svc-card.open .svc-toggle {
    transform: rotate(180deg);
    background: #FFD700;
    color: #000000;
}

/* Accordion body — hidden by default */
.svc-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 28px;
}

.svc-card:not(.open) .svc-card-body {
    max-height: 0 !important;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    padding: 0 28px !important;
    pointer-events: none;
}

.svc-card.open .svc-card-body {
    padding: 0 28px 28px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.svc-card-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 32px;
}

.svc-card-body li {
    font-size: 14px;
    color: #444444;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.svc-card-body li::before {
    content: "✓";
    color: #FFD700;
    font-weight: 700;
    flex-shrink: 0;
}

.svc-cta {
    display: inline-block;
    margin-top: 4px;
}

/* Collapsed: fully hidden (fixes content showing before click) */
.page-services .svc-card:not(.open) .svc-card-body {
    display: none !important;
    max-height: 0 !important;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    padding: 0 !important;
    pointer-events: none;
}

.page-services .svc-card.open .svc-card-body {
    display: block;
    opacity: 1;
    visibility: visible;
    padding: 0 28px 28px;
    pointer-events: auto;
}

@media (max-width: 640px) {
    .svc-card-header {
        padding: 18px 20px;
        gap: 14px;
    }

    .svc-card.open .svc-card-body {
        padding: 0 20px 20px;
    }

    .svc-card-body ul {
        grid-template-columns: 1fr;
    }

    .svc-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

/* Packages on services page — click to expand details */
.page-services .svc-packages-section {
    background: linear-gradient(180deg, #0a1628 0%, #0f1f38 100%);
    padding: 72px 0;
}

.page-services .svc-packages-section .section-title {
    color: #ffffff;
}

.page-services .svc-packages-section .section-label {
    display: none;
}

.page-services .svc-packages-section .section-desc {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
}

.page-services .svc-packages-section .section-line {
    background: #d4a843;
    margin-top: 16px;
}

.page-services .svc-packages-grid {
    display: grid;
    /* 2 cards centered on desktop */
    grid-template-columns: repeat(2, minmax(0, 380px));
    gap: 28px;
    align-items: stretch;
    justify-content: center;
    max-width: 820px;
    margin: 0 auto;
}

.page-services .svc-packages-grid .package-card {
    opacity: 1 !important;
    transform: none !important;
    background: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.page-services .package-toggle {
    width: 100%;
    padding: 24px 22px 16px;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.page-services .package-teaser {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 10px;
    line-height: 1.5;
}

.page-services .package-expand-hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #0a1628;
}

.page-services .package-expand-hint i {
    color: #d4a843;
    font-size: 11px;
    transition: transform 0.3s ease;
}

.page-services .package-card.is-open .package-expand-hint i {
    transform: rotate(180deg);
}

.page-services .package-card:not(.is-open) .package-details {
    display: none !important;
}

.page-services .package-card.is-open .package-details {
    display: block;
    padding: 0 22px 24px;
    border-top: 1px solid #e8eaed;
}

.page-services .package-card.is-open {
    border-color: #d4a843;
}

.page-services .svc-packages-grid .package-card:hover {
    border-color: #d4a843;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
    transform: translateY(-4px);
}

.page-services .svc-packages-grid .package-card--featured {
    border-color: #d4a843;
}

.page-services .svc-packages-grid .package-badge {
    background: #d4a843;
    color: #0a1628;
    top: 14px;
    right: 14px;
    z-index: 2;
}

.page-services .svc-packages-grid .package-title {
    color: #0a1628;
}

.page-services .svc-packages-grid .package-desc {
    color: #6b7280;
}

.page-services .svc-packages-grid .package-features li {
    color: #444444;
}

.page-services .svc-packages-grid .btn-full {
    margin-top: auto;
    border-radius: 10px;
}

.page-services .svc-card {
    border: 2px solid #e8eaed;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(10, 22, 40, 0.04);
}

.page-services .svc-card.open {
    border-color: #d4a843;
    box-shadow: 0 12px 36px rgba(10, 22, 40, 0.1);
}

@media (max-width: 1100px) {
    .page-services .svc-packages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .page-services .svc-section,
    .page-services .svc-packages-section {
        padding: 56px 0;
    }

    .page-services .svc-packages-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .page-services .svc-packages-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 16px;
    }

    .page-services .svc-packages-grid .package-card {
        border-radius: 16px;
        max-width: 380px;
        margin: 0 auto;
    }

    .page-services .package-toggle {
        padding: 20px 18px 14px;
    }

    .page-services .package-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 14px;
        font-size: 20px;
    }

    .page-services .package-title {
        font-size: 16px;
        line-height: 1.25;
    }

    .page-services .package-teaser {
        font-size: 13px;
    }

    .page-services .svc-card {
        border-radius: 16px;
    }

    .page-services .svc-card:not(.open) .svc-card-body {
        padding: 0 20px !important;
    }
}
