/* 
   Arbuda Logistics — Premium Fortune 500 Design System
   Navy #0F2D52 | White | Steel Gray | Orange Accent #FF8C00
   Swiss Grid | Glassmorphism | Luxury Industrial Aesthetic
   Fonts: Inter (Body) | Barlow Condensed (Display/Headings)
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    /* Brand Colors */
    --navy:          #0F2D52;
    --navy-deep:     #081A33;
    --navy-mid:      #183D6A;
    --navy-light:    #1E4D80;
    --orange:        #FF8C00;
    --orange-hover:  #E57D00;
    --orange-glow:   rgba(255, 140, 0, 0.25);
    --orange-subtle: rgba(255, 140, 0, 0.08);
    --steel:         #8A9BB0;
    --steel-light:   #C5D0DC;
    --steel-subtle:  #EEF2F7;
    --white:         #FFFFFF;
    --off-white:     #F5F7FA;
    --dark:          #060E1A;

    /* Legacy aliases (keeps PHP templates happy) */
    --primary-color:   var(--navy);
    --secondary-color: var(--orange);
    --accent-color:    var(--orange);
    --bg-color:        var(--off-white);
    --dark-color:      var(--dark);
    --text-color:      #3D4F65;

    /* Typography */
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body:    'Inter', sans-serif;

    /* Spacing / Grid */
    --section-gap: 100px;
    --container-max: 1280px;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition:  all 0.3s var(--ease-smooth);
    --transition-slow: all 0.6s var(--ease-smooth);

    /* Shadows */
    --shadow-xs:   0 1px 3px rgba(9, 30, 66, 0.10);
    --shadow-sm:   0 4px 12px rgba(9, 30, 66, 0.12);
    --shadow-md:   0 8px 24px rgba(9, 30, 66, 0.14);
    --shadow-lg:   0 20px 48px rgba(9, 30, 66, 0.18);
    --shadow-xl:   0 32px 80px rgba(9, 30, 66, 0.22);
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 15px 40px rgba(15, 45, 82, 0.1);

    /* Glassmorphism */
    --glass-bg:     rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-blur:   backdrop-filter: blur(18px);

    /* Border radius */
    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-xl:  32px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--navy);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: var(--orange);
    transition: var(--transition);
}

a:hover {
    color: var(--orange-hover);
}

img {
    display: block;
    max-width: 100%;
}

/* ============================================================
   BOOTSTRAP COLOR OVERRIDES
   ============================================================ */
.text-primary    { color: var(--navy)   !important; }
.text-secondary  { color: var(--orange) !important; }
.text-accent     { color: var(--orange) !important; }
.text-steel      { color: var(--steel)  !important; }
.bg-primary      { background-color: var(--navy)   !important; }
.bg-secondary    { background-color: var(--orange) !important; }
.bg-accent       { background-color: var(--orange) !important; }
.bg-light-gray   { background-color: var(--off-white) !important; }
.bg-dark-navy    { background-color: var(--navy-deep) !important; }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.font-display { font-family: var(--font-display) !important; }
.letter-spacing-1 { letter-spacing: 0.08em; }
.letter-spacing-2 { letter-spacing: 0.14em; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.display-4 { color: var(--white) !important; }

/* ============================================================
   BUTTONS — Premium System
   ============================================================ */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Primary: orange */
.btn-primary {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
    opacity: 0;
    transition: var(--transition);
}
.btn-primary:hover {
    background: var(--orange-hover);
    border-color: var(--orange-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--orange-glow);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

/* Outline Primary = outline navy */
.btn-outline-primary {
    border: 2px solid var(--navy);
    color: var(--navy);
    background: transparent;
}
.btn-outline-primary:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-2px);
}

/* Outline Light */
.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
    background: transparent;
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.8);
    color: var(--white);
    transform: translateY(-2px);
}

/* Secondary = navy on white */
.btn-secondary {
    background: var(--white);
    border-color: var(--white);
    color: var(--navy);
    font-weight: 700;
}
.btn-secondary:hover {
    background: var(--off-white);
    border-color: var(--off-white);
    color: var(--navy);
    transform: translateY(-2px);
}

/* Orange ghost */
.btn-outline-orange {
    border: 2px solid var(--orange);
    color: var(--orange);
    background: transparent;
}
.btn-outline-orange:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--orange-glow);
}

/* CTA pill size */
.btn-lg-pill {
    padding: 14px 36px;
    border-radius: 100px;
    font-size: 1rem;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.main-header {
    background-color: transparent;
    transition: var(--transition-slow);
    padding: 0;
    z-index: 1050;
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    background-color: var(--white) !important;
    box-shadow: 0 2px 40px rgba(9, 30, 66, 0.12);
    border-bottom-color: var(--steel-subtle);
}

.main-header.scrolled .navbar-nav .nav-link {
    color: var(--navy) !important;
}

.main-header.scrolled .navbar-toggler-icon {
    filter: none;
}

/* Transparent on hero: white text */
.main-header:not(.scrolled) .navbar-nav .nav-link {
    color: rgba(255,255,255,0.88) !important;
}
.main-header:not(.scrolled) .btn-quote {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}
.main-header:not(.scrolled) .navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}
.main-header:not(.scrolled) .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.navbar {
    padding: 18px 0;
    transition: var(--transition);
}

.main-header.scrolled .navbar {
    padding: 10px 0;
}

.header-logo {
    max-height: 100px;
    transition: var(--transition);
}

.main-header.scrolled .header-logo {
    max-height: 90px;
    filter: none !important;
}

/* Nav links */
.navbar-light .navbar-nav .nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 8px 14px !important;
    position: relative;
}

.navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    width: 0;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    transition: width 0.3s var(--ease-smooth);
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after {
    width: calc(100% - 28px);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--orange) !important;
}

.btn-quote {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 9px 22px !important;
    border-radius: 4px;
}

/* ============================================================
   HERO SECTION — Cinematic Full-Screen
   ============================================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    background-color: var(--navy-deep);
    padding-top: 100px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(8, 26, 51, 0.94) 0%,
        rgba(15, 45, 82, 0.78) 45%,
        rgba(15, 45, 82, 0.45) 75%,
        rgba(15, 45, 82, 0.2) 100%
    );
    z-index: 1;
}

/* Diagonal accent stripe */
.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(8, 26, 51, 0.70) 100%
    );
}

/* Grid lines (Swiss aesthetic) */
.hero-grid-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

/* Orange accent vertical bar */
.hero-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--orange);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 3;
}

/* Label chip */
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 140, 0, 0.15);
    border: 1px solid rgba(255, 140, 0, 0.35);
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 3px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-label::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 4.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 28px;
}

.hero-title em {
    font-style: normal;
    color: var(--orange);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255,255,255,0.65);
    max-width: 540px;
    line-height: 1.75;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 56px;
}

/* Hero Stats Bar */
.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-stat-value span { color: var(--orange); }

.hero-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-top: 4px;
}

/* Scroll indicator */
.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-scroll-hint .scroll-line {
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0%   { transform: scaleY(0) translateY(0); transform-origin: top; }
    50%  { transform: scaleY(1) translateY(0); transform-origin: top; }
    100% { transform: scaleY(0) translateY(100%); transform-origin: top; }
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section-padding {
    padding: var(--section-gap) 0;
}

.section-padding-sm {
    padding: 64px 0;
}

/* Section label (eyebrow) */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-title.text-white { color: var(--white); }

.section-desc {
    font-size: 1.05rem;
    color: var(--steel);
    line-height: 1.8;
    max-width: 540px;
}

/* Divider line accent */
.line-accent {
    display: block;
    width: 48px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    margin: 20px 0 28px;
}

.line-accent.center {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-img-wrap {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    box-shadow: var(--shadow-xl);
}

.about-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--navy);
    color: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--orange);
    min-width: 180px;
}

.about-badge-value {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.about-badge-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
}

/* Check list */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 14px;
}

.check-list li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: var(--orange-subtle);
    border: 2px solid var(--orange);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 9'%3E%3Cpath d='M1 4l3 3 6-6' stroke='%23FF8C00' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
    margin-top: 2px;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.srv-img-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
    border: 1px solid var(--steel-subtle);
}

.srv-img-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.srv-img-wrap {
    position: relative;
    overflow: hidden;
    height: 230px;
}

.srv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-smooth);
}

.srv-img-card:hover .srv-img {
    transform: scale(1.08);
}

.srv-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8, 26, 51, 0.10) 0%, rgba(8, 26, 51, 0.65) 100%);
    transition: var(--transition);
}

.srv-img-card:hover .srv-img-overlay {
    background: linear-gradient(to bottom, rgba(8, 26, 51, 0.05) 0%, rgba(8, 26, 51, 0.80) 100%);
}

.srv-icon-badge {
    position: absolute;
    bottom: -20px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: var(--orange);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 6px 20px var(--orange-glow);
    z-index: 2;
    transition: var(--transition);
}

.srv-img-card:hover .srv-icon-badge {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 10px 30px var(--orange-glow);
}

.srv-body {
    padding: 2.25rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.srv-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.srv-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--steel);
    flex: 1;
    margin-bottom: 20px;
}

.srv-btn {
    align-self: flex-start;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 4px;
    border: 2px solid var(--navy);
    color: var(--navy);
    background: transparent;
    transition: var(--transition);
}

.srv-btn:hover {
    background: var(--navy);
    color: var(--white) !important;
    border-color: var(--navy);
}

/* ============================================================
   WHY CHOOSE US — Dark Navy Section
   ============================================================ */
.why-section {
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,140,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.why-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(15,45,82,0.4) 0%, transparent 70%);
    pointer-events: none;
}

/* Feature list items */
.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.why-feature:last-child {
    border-bottom: none;
}

.why-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255,140,0,0.12);
    border: 1px solid rgba(255,140,0,0.25);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.2rem;
    transition: var(--transition);
}

.why-feature:hover .why-feature-icon {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    transform: scale(1.05);
}

.why-feature-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.why-feature-text {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
}

/* Glassmorphism stat cards */
.glass-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.4s var(--ease-smooth), border-color 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 140, 0, 0.25);
    background: rgba(255, 255, 255, 0.07);
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card-icon {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 16px;
    display: block;
}

.glass-card-value {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.glass-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   INDUSTRY CARDS
   ============================================================ */
.industry-card {
    background: var(--white);
    border: 1px solid var(--steel-subtle);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.industry-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease-smooth);
}

.industry-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.industry-card:hover::after {
    transform: scaleX(1);
}

.industry-card i {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 12px;
    transition: var(--transition);
}

.industry-card:hover i {
    color: var(--orange);
    transform: scale(1.15);
}

.industry-card h6 {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--navy);
    margin: 0;
}

/* ============================================================
   GALLERY PREVIEW
   ============================================================ */
.gallery-thumb {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    height: 300px;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-smooth);
}

.gallery-thumb:hover img {
    transform: scale(1.08);
}

.gallery-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 26, 51, 0.92) 0%, transparent 60%);
    z-index: 2;
    transition: var(--transition);
}

.gallery-thumb:hover .gallery-thumb-overlay {
    background: linear-gradient(to top, rgba(8, 26, 51, 0.96) 0%, rgba(8, 26, 51, 0.2) 70%);
}

.gallery-thumb-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 3;
    transform: translateY(8px);
    transition: var(--transition);
}

.gallery-thumb:hover .gallery-thumb-info {
    transform: translateY(0);
}

.gallery-thumb-info h5 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.gallery-thumb-info p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Gallery eye icon */
.gallery-thumb-eye {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255,140,0,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    z-index: 3;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.35s var(--ease-spring);
}

.gallery-thumb:hover .gallery-thumb-eye {
    opacity: 1;
    transform: scale(1);
}

/* ============================================================
   CTA SECTION — Orange Impact Strip
   ============================================================ */
.cta-strip {
    background: linear-gradient(105deg, var(--orange) 0%, #FF6B00 100%);
    position: relative;
    overflow: hidden;
    padding: 64px 0;
}

.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.cta-strip::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}

.cta-strip h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

/* ============================================================
   FOOTER — Premium Dark Footer
   ============================================================ */
.footer {
    background: var(--navy-deep) !important;
    color: var(--white);
    padding-top: 72px;
    padding-bottom: 0;
    border-top: none !important;
    box-shadow: none !important;
}

.footer h5 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-brand-text {
    font-size: 0.9rem;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 28px;
}

/* Footer divider */
.footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 48px 0 24px;
}

/* Footer links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background: var(--orange);
    transition: width 0.25s var(--ease-smooth);
}

.footer-links a:hover {
    color: var(--orange);
    padding-left: 4px;
}

.footer-links a:hover::before {
    width: 12px;
}

/* Contact list */
.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    color: var(--white);
    line-height: 1.6;
}

.contact-list i {
    color: var(--orange);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-list a {
    color: var(--white);
    text-decoration: none;
}

.contact-list a:hover {
    color: var(--orange);
}

/* Social buttons */
.social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
}

/* Newsletter form */
.newsletter-form .input-group {
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: var(--radius-sm) !important;
    overflow: hidden;
    box-shadow: none !important;
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.05) !important;
    border: none !important;
    color: var(--white) !important;
    font-size: 0.88rem;
    padding: 12px 16px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.3);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    background: rgba(255,255,255,0.08) !important;
}

.newsletter-form .btn {
    background: var(--orange);
    border: none;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 0;
}

.newsletter-form .btn:hover {
    background: var(--orange-hover);
}

/* Footer bottom bar */
.footer-bottom {
    background: rgba(0,0,0,0.25);
    padding: 18px 0;
    margin-top: 0;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.28);
    margin: 0;
}

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(-5deg);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--orange);
    color: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 6px 20px var(--orange-glow);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    text-decoration: none;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--orange-hover);
    color: var(--white);
    transform: translateY(-4px);
}

/* ============================================================
   HOVER & GALLERY UTILITIES
   ============================================================ */
.hover-zoom-container {
    overflow: hidden;
    position: relative;
}

.hover-zoom-img {
    transition: transform 0.6s var(--ease-smooth);
}

.hover-zoom-container:hover .hover-zoom-img {
    transform: scale(1.07);
}

.transition-all {
    transition: var(--transition) !important;
}

.hover-shadow:hover {
    box-shadow: var(--shadow-md) !important;
}

/* ============================================================
   MISC COMPONENTS
   ============================================================ */
/* Outline badge */
.badge-outline {
    display: inline-block;
    padding: 4px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1.5px solid currentColor;
    border-radius: 3px;
}

/* Number/counter display */
.counter-val {
    font-variant-numeric: tabular-nums;
}

/* Thin separator */
.sep {
    display: inline-block;
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.2);
    vertical-align: middle;
    margin: 0 12px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    :root {
        --section-gap: 72px;
    }

    .main-header:not(.scrolled) .navbar-nav .nav-link {
        color: var(--navy) !important;
    }

    .main-header:not(.scrolled) .navbar-brand img {
        filter: none !important;
    }

    .main-header:not(.scrolled) .navbar-toggler-icon {
        filter: none !important;
    }

    .main-header {
        background-color: var(--white) !important;
        box-shadow: 0 2px 20px rgba(9,30,66,0.08) !important;
    }

    .navbar {
        padding: 12px 0 !important;
    }

    .navbar-collapse {
        background: var(--white);
        border-top: 1px solid var(--steel-subtle);
        padding: 12px 0;
        margin-top: 8px;
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 10px 16px !important;
        color: var(--navy) !important;
        border-bottom: 1px solid var(--steel-subtle);
    }

    .navbar-light .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    .navbar-light .navbar-nav .nav-link::after {
        display: none;
    }

    .btn-quote {
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
    }

    .about-badge {
        right: 0;
        bottom: -16px;
    }

    .about-img-main {
        height: 380px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        min-height: 100svh;
    }

    .hero-stats {
        display: none;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: clamp(1.7rem, 7vw, 2.4rem);
    }

    .glass-card {
        padding: 24px 16px;
    }
}

/* ============================================================
   ANIMATIONS & MICRO-INTERACTIONS
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}

.animate-fade-up    { animation: fadeInUp 0.7s var(--ease-smooth) both; }
.animate-slide-left { animation: slideInLeft 0.7s var(--ease-smooth) both; }
.animate-scale-in   { animation: scaleIn 0.5s var(--ease-smooth) both; }

/* Stagger delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
