@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

/* ===================================================================
   FLAT PALETTE from Logo — NO GRADIENTS
   =================================================================== */
:root {
    --bg-dark: #0A0A0A;
    --bg-card: #111111;
    --bg-card-alt: #0E0E0E;
    --bg-footer: #050505;
    --green: #1B9B4B;
    --gold: #F5A623;
    --orange: #E8751A;
    --red: #D42B2B;
    --maroon: #7B1A1A;
    --text-white: #ffffff;
    --text-light: #C8C8C8;
    --text-muted: #666666;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-full: 999px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Bricolage Grotesque', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    line-height: 1.7;
}

body.splash-active {
    overflow: hidden;
}

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

ul {
    list-style: none;
}

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

/* ===== UTILITIES ===== */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-eyebrow {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--green);
    margin-bottom: 12px;
}

.section-eyebrow i {
    margin-right: 6px;
    color: var(--gold);
}

.section-heading {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: var(--text-white);
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.section-heading.left-align {
    text-align: left;
}

.heading-bar {
    width: 50px;
    height: 3px;
    background: var(--orange);
    margin: 16px auto 52px;
    border-radius: 2px;
}

.heading-bar.left-align {
    margin-left: 0;
    margin-right: auto;
}

/* ===== CTA WRAP FOR VIEW ALL ===== */
.section-cta-wrap {
    text-align: center;
    margin-top: 48px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    font-family: 'Bricolage Grotesque', sans-serif;
    cursor: pointer;
    transition: all 0.35s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(232, 117, 26, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-view-all {
    padding: 16px 42px;
    font-size: 16px;
    letter-spacing: 0.02em;
}

.accent-link {
    color: var(--gold);
    font-weight: 600;
    transition: all 0.3s ease;
}

.accent-link:hover {
    color: var(--orange);
}

/* ========================================================================
   SPLASH SCREEN
   ======================================================================== */
#splash {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

#splash.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.splash-inner {
    text-align: center;
    position: relative;
}

.splash-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border: 2px solid var(--orange);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}

.splash-logo-wrap {
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.splash-logo {
    width: 160px;
    height: auto;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.6);
}

.splash-tagline {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(15px);
}

.splash-loader {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    margin: 0 auto;
    overflow: hidden;
}

.splash-loader-bar {
    width: 0%;
    height: 100%;
    background: var(--orange);
    border-radius: 4px;
}

/* ========================================================================
   NAVBAR
   ======================================================================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: all 0.35s ease;
    padding: 16px 0;
    border-bottom: 1px solid transparent;
}

#navbar.menu-open {
    background: #0A0A0A;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

#navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 52px;
    width: auto;
    transition: all 0.35s ease;
}

#navbar.scrolled .nav-logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-menu li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.3s ease;
    position: relative;
    padding: 4px 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--text-white);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    border-radius: var(--radius-full);
    background: var(--orange);
    color: var(--text-white);
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.nav-cta:hover {
    background: var(--red);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(232, 117, 26, 0.35);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================================================
   HERO
   ======================================================================== */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.7);
    z-index: 1;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 5%;
    max-width: 950px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.3);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 28px;
    letter-spacing: 0.04em;
}

#hero-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(48px, 10vw, 110px);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.0;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

#hero-title .hero-char {
    display: inline-block;
}

.hero-sub {
    font-size: clamp(18px, 3vw, 26px);
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    font-weight: 300;
    letter-spacing: 0.12em;
}

.hero-micro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 40px;
}

.hero-micro i {
    color: var(--green);
    margin-right: 6px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Floating stats */
.hero-float-stat {
    position: absolute;
    z-index: 4;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: floatBounce 4s ease-in-out infinite;
}

.hero-float-stat i {
    font-size: 24px;
    color: var(--gold);
}

.hero-float-stat strong {
    display: block;
    font-size: 20px;
    color: var(--text-white);
    font-weight: 800;
    line-height: 1.1;
}

.hero-float-stat span {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-float-stat-1 {
    top: 28%;
    left: 6%;
    animation-delay: 0s;
}

.hero-float-stat-2 {
    bottom: 22%;
    right: 6%;
    animation-delay: 2s;
}

@keyframes floatBounce {

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

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

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
}

.mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 11px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 1.5s ease-in-out infinite;
}

@keyframes wheelScroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

.scroll-indicator p {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

/* ========================================================================
   TRUST BAR
   ======================================================================== */
#trust-bar {
    background: #0D0D0D;
    padding: 40px 0;
    border-top: 2px solid var(--orange);
    border-bottom: 1px solid var(--border-subtle);

}

.trust-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

.trust-icon-circle {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

.trust-icon-circle.gold {
    background: var(--gold);
}

.trust-icon-circle.red {
    background: var(--red);
}

.trust-item strong {
    display: block;
    font-size: 26px;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1.15;
}

.trust-item span {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================================================
   ABOUT
   ======================================================================== */
#about {
    padding: 110px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: center;
}

.about-img-stack {
    position: relative;
}

.about-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.about-img-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border: 4px solid var(--bg-dark);
    border-radius: var(--radius-md);
    z-index: 2;
}

.about-exp-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    border: 4px solid var(--bg-dark);
}

.about-exp-num {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.about-exp-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.about-text .section-eyebrow {
    text-align: left;
}

.about-desc {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-desc strong {
    color: var(--text-white);
}

.about-stats {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.about-stat:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
}

.about-stat i {
    color: var(--orange);
    font-size: 16px;
}

/* ========================================================================
   SERVICES
   ======================================================================== */
#services {
    padding: 110px 0;
    background: var(--bg-card-alt);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    border-color: var(--orange);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.service-img-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.service-img-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    background: var(--green);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.service-img-tag.orange {
    background: var(--orange);
}

.service-img-tag.gold {
    background: var(--gold);
    color: #111;
}

.service-body {
    padding: 22px;
}

.service-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 17px;
    color: #fff;
    transition: all 0.35s ease;
}

.service-card:hover .service-icon-wrap {
    background: var(--orange);
    transform: rotate(-8deg) scale(1.1);
}

.service-title {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
}

/* ========================================================================
   WHY CHOOSE US
   ======================================================================== */
#why-us {
    padding: 110px 0;
}

.why-grid {
    display: flex;
    gap: 28px;
    justify-content: center;
}

.why-block {
    flex: 1;
    max-width: 400px;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 44px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.why-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.why-block:hover::before {
    transform: scaleX(1);
}

.why-block:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.why-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
    color: #fff;
    transition: all 0.35s ease;
}

.why-block:hover .why-icon-wrap {
    background: var(--orange);
    transform: scale(1.15);
}

.why-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    display: block;
    margin-bottom: 12px;
}

.why-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 10px;
}

.why-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ========================================================================
   GALLERY
   ======================================================================== */
#gallery {
    padding: 110px 0;
    background: var(--bg-card-alt);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter {
    padding: 9px 22px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
    background: transparent;
    color: var(--text-muted);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.gallery-filter.active {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: all 0.35s ease;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 28px;
    color: var(--gold);
}

.gallery-overlay p {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

/* ========================================================================
   LIGHTBOX
   ======================================================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 85%;
    max-height: 80vh;
    border-radius: var(--radius-md);
    transform: scale(0.92);
    transition: transform 0.35s ease;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.lightbox-close {
    top: 24px;
    right: 24px;
}

.lightbox-prev {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-caption {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
}

/* ========================================================================
   PARTNERS
   ======================================================================== */
#partners {
    padding: 80px 0;
    overflow: hidden;
    width: 100%;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
    display: flex;
    gap: 18px;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.marquee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 34px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    letter-spacing: 0.12em;
    font-weight: 800;
    color: var(--text-white);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.marquee-badge i {
    color: var(--green);
}

.marquee-badge:hover {
    border-color: var(--gold);
}

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

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

/* ========================================================================
   TESTIMONIALS
   ======================================================================== */
#testimonials {
    padding: 110px 0;
    background: var(--bg-card-alt);
}

.testimonials-row {
    display: flex;
    gap: 22px;
    justify-content: center;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 420px;
    flex: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 8px;
    right: 20px;
    font-size: 90px;
    color: rgba(245, 166, 35, 0.05);
    font-family: serif;
    line-height: 1;
}

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

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

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    font-weight: 800;
}

.testimonial-name {
    color: var(--text-white);
    font-weight: 800;
    font-size: 15px;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 13px;
}

.testimonial-quote {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 18px;
}

.testimonial-source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.testimonial-source i {
    color: var(--green);
}

/* ========================================================================
   LOCATION
   ======================================================================== */
#location {
    padding: 110px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-block {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
}

.contact-icon.phone {
    background: var(--orange);
}

.contact-icon.gold {
    background: var(--gold);
    color: #111;
}

.contact-icon.red {
    background: var(--red);
}

.contact-block h3 {
    color: var(--text-white);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 4px;
}

.contact-block p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.map-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

/* ========================================================================
   FOOTER
   ======================================================================== */
#footer {
    background: var(--bg-footer);
    padding: 72px 0 0;
    border-top: 2px solid var(--orange);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5% 44px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 44px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-logo-img {
    height: 100px;
    width: auto;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 13px;
    font-style: italic;
}

.footer-about {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.75;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-muted);
    transition: all 0.35s ease;
}

.footer-socials a:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
    transform: translateY(-4px);
}

.footer-col h4 {
    color: var(--text-white);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--orange);
}

.footer-col ul li {
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 13px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-col ul li i {
    font-size: 10px;
    color: var(--green);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 20px 5%;
    text-align: center;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.2);
    font-size: 12px;
}

/* ========================================================================
   FLOATING WHATSAPP
   ======================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.35s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {

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

    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.08);
    }
}

/* ========================================================================
   BACK TO TOP
   ======================================================================== */
#back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--orange);
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    background: var(--red);
    transform: translateY(-4px);
}

/* ========================================================================
   PAGE HEADER (for services.html & gallery.html)
   ======================================================================== */
.page-header {
    padding: 140px 0 80px;
    text-align: center;
    background: #0A0A0A;
    border-bottom: 2px solid var(--orange);
    position: relative;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.breadcrumb a {
    color: var(--gold);
    font-weight: 600;
}

.breadcrumb a:hover {
    color: var(--orange);
}

.breadcrumb .sep {
    color: rgba(255, 255, 255, 0.15);
}

/* Detail cards for services page */
.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-detail-card:hover {
    border-color: var(--orange);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.service-detail-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.service-detail-body {
    padding: 28px;
    flex: 1;
}

.service-detail-body h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-detail-body h3 i {
    color: var(--orange);
    font-size: 18px;
}

.service-detail-body p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-feature-tag {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: rgba(27, 155, 75, 0.1);
    border: 1px solid rgba(27, 155, 75, 0.25);
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Gallery page full grid */
.gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

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

    .gallery-grid,
    .gallery-full-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-float {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 16px;
    }

    .about-exp-badge {
        top: 12px;
        right: 12px;
    }

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

@media (max-width: 768px) {
    .section-heading {
        font-size: 28px;
    }

    .heading-bar {
        margin-bottom: 36px;
    }

    #hero-title {
        font-size: clamp(36px, 9vw, 56px);
    }

    .hero-float-stat {
        display: none;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #0A0A0A;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 32px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-20px);
        transition: all 0.4s ease;
        z-index: 1050;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-menu li a {
        font-size: 24px;
        font-weight: 800;
        color: var(--text-white);
        text-transform: none;
        letter-spacing: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .trust-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .trust-item {
        justify-content: center;
    }

    #services,
    #why-us,
    #gallery,
    #testimonials,
    #location,
    #partners,
    #about {
        padding: 72px 0;
    }

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

    .why-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .why-block {
        max-width: 100%;
    }

    .gallery-grid,
    .gallery-full-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .testimonials-row {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .testimonial-card {
        max-width: 100%;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

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

    .btn-view-all {
        padding: 14px 32px;
        font-size: 14px;
    }

    .floating-whatsapp {
        width: 48px;
        height: 48px;
        font-size: 24px;
        bottom: 20px;
        left: 20px;
    }

    #back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }

    .section-cta-wrap {
        margin-top: 36px;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .gallery-filters {
        gap: 6px;
    }

    .gallery-filter {
        padding: 7px 16px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .trust-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 8px;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 8px;
    }

    .trust-item strong {
        font-size: 18px;
    }

    .gallery-grid,
    .gallery-full-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
    }

    .about-stat {
        justify-content: center;
    }

    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
    }

    .nav-logo img {
        height: 40px;
    }

    .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ===== SCROLLBAR ===== */
::selection {
    background: rgba(245, 166, 35, 0.25);
    color: #fff;
}

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

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 4px;
}

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