/* ── Brand Font Face Definitions ── */
@font-face {
    font-family: 'Gotham';
    src: url('font/Gotham/Gotham-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham';
    src: url('font/Gotham/Gotham-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham';
    src: url('font/Gotham/Gotham-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham';
    src: url('font/Gotham/Gotham-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham';
    src: url('font/Gotham/Gotham-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham';
    src: url('font/Gotham/Gotham-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('font/Inter/Inter_18pt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('font/Inter/Inter_18pt-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('font/Inter/Inter_18pt-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('font/Inter/Inter_18pt-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('font/Inter/Inter_18pt-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* ==========================================================================
   Dorek LLC — Hero Section CSS
   Layout: Navbar → Title+Stats row → Full-width rounded image card (breakout plant)
   ========================================================================== */



:root {
    --gold:   #DCAE27;
    --blue:   #0E527F;
    --dark:   #363635;
    --gray: #363635;
    --bg: #363635;
    --white:  #FFFFFF;
    --radius-card: 40px;
    --ease:   cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-y: scroll; }
body {
    background: var(--bg);
    color: var(--dark);
    font-family: 'Inter', -apple-system, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Navbar ─────────────────────────────────────────── */
.navbar {
    position: relative;
    width: 100%;
    z-index: 100;
    padding: 0 2.5rem;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 0;
    gap: 1.5rem;
}

/* Left cluster */
.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.search-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.search-circle:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.75rem;
}
.nav-links a {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--dark);
    opacity: 0.75;
    position: relative;
    padding-bottom: 2px;
    transition: opacity 0.2s, color 0.2s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}
.nav-links a:hover { opacity: 1; color: var(--blue); }
.nav-links a:hover::after { width: 100%; }

/* Center logo */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Right cluster */
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    justify-content: flex-end;
}

.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,0.1);
    background: transparent;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.icon-btn:hover {
    background: rgba(0,0,0,0.04);
    transform: translateY(-1px);
}

.btn-contact {
    height: 42px;
    padding: 0 1.4rem;
    border-radius: 50px;
    background: var(--white);
    border: 1.5px solid rgba(0,0,0,0.1);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--dark);
    white-space: nowrap;
    cursor: pointer;
    transition: border-color 0.25s, color 0.25s, transform 0.25s;
    display: inline-flex;
    align-items: center;
}
.btn-contact:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-1px);
}

.cart-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 42px;
    padding: 3px 3px 3px 1.1rem;
    border-radius: 50px;
    background: var(--white);
    border: 1.5px solid rgba(0,0,0,0.1);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--dark);
    cursor: pointer;
    transition: border-color 0.25s, transform 0.25s;
}
.cart-pill:hover {
    border-color: var(--blue);
    transform: translateY(-1px);
}
.cart-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s;
}
.cart-pill:hover .cart-dot { background: var(--blue); }

/* Hamburger (mobile only) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 17px;
    background: none;
    border: none;
    cursor: pointer;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
    display: none;
    flex-direction: column;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    padding: 1.5rem 2.5rem 2rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.mobile-drawer.open { display: flex; }
.mobile-drawer ul { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.mobile-drawer a {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--dark);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding-bottom: 0.75rem;
    display: block;
}

/* ── Hero Page Wrapper ─────────────────────────────── */
.hero-page {
    padding: 0 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* ── Hero Top Row (Title + Stats) ──────────────────── */
.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.hero-headline { flex: 1; max-width: 680px; }

.hero-headline h1 {
    font-size: 50px !important;
    font-weight: 900;
    line-height: 1.2 !important;
    letter-spacing: -1px;
    color: var(--dark);
}


.inline-icons {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    vertical-align: middle;
    margin-left: 8px;
}
.icon-drop { display: inline-block; }
.icon-gear {
    display: inline-block;
    animation: spin 16s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-sub {
    margin-top: 1.25rem;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: var(--gray);
    line-height: 1.6;
    font-weight: 400;
}

/* Stats card (top-right, outside image) */
.stats-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: var(--white);
    border-radius: 18px;
    padding: 0.9rem 1.2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.04);
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 0.5rem;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.stats-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.avatars {
    display: flex;
    align-items: center;
}
.av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2.5px solid var(--white);
    object-fit: cover;
    margin-right: -10px;
}
.av-plus {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid var(--white);
    margin-right: 0;
}

.stats-text { display: flex; flex-direction: column; }
.stats-label {
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--dark);
}
.stars { color: var(--gold); font-size: 0.9rem; margin-top: 2px; }

/* ── Hero Image Card ───────────────────────────────── */
.hero-image-card {
    position: relative;
    width: 100%;
    height: 56vw;            /* scales with viewport */
    max-height: 640px;
    min-height: 380px;
    border-radius: var(--radius-card);
    overflow: visible;       /* allow SVG plant to break out above */
}

/* Actual photo background — clipped inside the rounded card */
.img-bg {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-card);
    overflow: hidden;
    background: url('refinery_sunset.png') center center / cover no-repeat;
    z-index: 1;
}

/* Dark overlay gradient so bottom cards are readable */
.img-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

/* ── Breakout Plant (rises above card) ─────────────── */
.breakout-plant {
    position: absolute;
    /* Start at top of image card, stretch UP by ~45% of card height */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    /* Height > 100% so SVG overflows upward */
    height: 145%;
    z-index: 10;
    pointer-events: none;
    /* DO NOT clip — towers must be visible above the card */
    overflow: visible;
}

.plant-towers {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

/* ── Overlay Cards ─────────────────────────────────── */

/* Bottom-left: flush corner, only top-right rounded */
.card-bl {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 20;
    background: var(--white);
    border-top-right-radius: 32px;
    padding: 2.25rem 2rem;
    width: clamp(240px, 25vw, 320px);
    min-height: 230px;
    transition: transform 0.35s var(--ease), box-shadow 0.35s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card-bl:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.card-tag {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

.card-bl-title {
    font-size: clamp(1.05rem, 1.8vw, 1.4rem);
    font-weight: 800;
    line-height: 1.25;
    color: #0e527f;
    margin: 0 0 0.38rem 0;
    letter-spacing: -0.4px;
}

.card-bl-desc {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.55;
    margin: 0 0 1.25rem 0;
}

.arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(220,174,39,0.35);
    transition: background 0.25s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s;
    cursor: pointer;
}
.arrow-btn:hover {
    background: #dcae27;
    transform: scale(1.1) rotate(-45deg);
    box-shadow: 0 8px 20px rgba(220,174,39,0.45);
}

/* Bottom-right floating card */
.card-br {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 20;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 18px;
    padding: 0.85rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    box-shadow: 0 10px 36px rgba(0,0,0,0.12);
    min-width: 220px;
    border: 1px solid rgba(255,255,255,0.6);
    transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.card-br:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.16);
}

.card-br-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-br-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}
.card-br-sub {
    font-size: 0.72rem;
    color: var(--gray);
    line-height: 1.4;
}

/* ── SVG Plant Animations ──────────────────────────── */
.beacon-blink {
    animation: blink 1.6s ease-in-out infinite;
}
.beacon-blink-delayed {
    animation: blink 1.6s ease-in-out infinite 0.8s;
}
@keyframes blink {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 1; filter: drop-shadow(0 0 8px #dcae27); }
}

.pulse-flare {
    animation: flare-pulse 2.2s ease-in-out infinite;
    transform-origin: 445px -20px;
}
@keyframes flare-pulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.4); opacity: 0.45; }
}

.flame-outer {
    animation: flame-wiggle 1.6s ease-in-out infinite alternate;
    transform-origin: 448px -5px;
}
.flame-inner {
    animation: flame-wiggle 1.2s ease-in-out infinite alternate-reverse;
    transform-origin: 448px -5px;
}
@keyframes flame-wiggle {
    0% { transform: rotate(-3deg) scaleY(0.93); }
    100% { transform: rotate(3deg) scaleY(1.07); }
}

.steam-rise {
    animation: steam-up 5s ease-in-out infinite;
    transform-origin: 666px 340px;
}
.steam-rise-2 {
    animation: steam-up 5s ease-in-out infinite 2.5s;
    transform-origin: 655px 280px;
}
@keyframes steam-up {
    0%   { transform: translateY(0)   scaleX(1);   opacity: 0.08; }
    40%  { transform: translateY(-40px) scaleX(1.3); opacity: 0.18; }
    100% { transform: translateY(-90px) scaleX(0.7); opacity: 0; }
}

.pipe-glow {
    animation: pipe-pulse 3s ease-in-out infinite alternate;
}
@keyframes pipe-pulse {
    0%   { opacity: 0.35; filter: drop-shadow(0 0 2px #DCAE27); }
    100% { opacity: 0.72; filter: drop-shadow(0 0 10px #DCAE27); }
}

.spot-glow {
    animation: spot 2.8s ease-in-out infinite alternate;
}
.spot-glow-slow {
    animation: spot 4.5s ease-in-out infinite alternate-reverse;
}
@keyframes spot {
    0%   { opacity: 0.35; }
    100% { opacity: 1; filter: drop-shadow(0 0 5px #DCAE27); }
}

/* ── Entry Animations ──────────────────────────────── */
.hero-headline h1,
.hero-sub,
.stats-card,
.hero-image-card {
    animation: fade-up 0.9s var(--ease) both;
}
.hero-sub       { animation-delay: 0.15s; }
.stats-card     { animation-delay: 0.1s;  }
.hero-image-card { animation-delay: 0.3s; }

@keyframes fade-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0);    }
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 1100px) {
    .navbar { padding: 0 1.5rem; }
    .hero-page { padding: 0 1.5rem 1.5rem; }
}

@media (max-width: 900px) {
    .nav-links, .nav-right .icon-btn,
    .nav-right .btn-contact, .nav-right .cart-pill { display: none; }
    .hamburger { display: flex; }

    .hero-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    .stats-card { align-self: flex-start; }

    .hero-image-card {
        height: 70vw;
        max-height: 500px;
    }
    .card-bl { width: 220px; padding: 1.5rem; min-height: 190px; display: flex; flex-direction: column; justify-content: center; }
    .card-bl-title { font-size: 1rem; margin: 0 0 0.32rem 0; }
    .card-bl-desc  { font-size: 0.72rem; margin: 0 0 1rem 0; }
    .arrow-btn { width: 36px; height: 36px; }
}

@media (max-width: 620px) {
    .hero-page { padding: 0 1rem 1rem; }
    .navbar { padding: 0 1rem; }

    .hero-headline h1 {
        font-size: 36px !important;
    }

    .hero-image-card {
        height: 85vw;
        max-height: 420px;
        border-radius: 24px;
    }
    .img-bg { border-radius: 24px; }

    .card-bl {
        width: 180px;
        padding: 1.25rem;
        border-top-right-radius: 20px;
        min-height: 170px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .card-bl-title { font-size: 0.85rem; margin: 0 0 0.26rem 0; }
    .card-bl-desc  { font-size: 0.68rem; margin: 0 0 0.8rem 0; }
    .arrow-btn { width: 30px; height: 30px; }

    .card-br {
        bottom: 0.75rem;
        right: 0.75rem;
        padding: 0.65rem 0.9rem;
        min-width: 160px;
        border-radius: 14px;
        gap: 0.65rem;
    }
    .card-br-icon { width: 34px; height: 34px; border-radius: 8px; }
    .card-br-title { font-size: 0.75rem; }
    .card-br-sub   { font-size: 0.64rem; }
}

/* ==========================================================================
   Global Icon Hover Transitions — base transition on all icon containers
   ========================================================================== */

/* Step 1: Smooth transitions on icon containers and their SVGs */
.icon-box,
.card-icon,
.bento-icon,
.value-card-icon,
[class*="-icon"],
[class*="icon-box"],
[class*="icon-wrap"],
[class*="icon-container"] {
    transition: background 0.3s ease, background-color 0.3s ease,
                border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.icon-box svg, .icon-box svg *,
.card-icon svg, .card-icon svg *,
.bento-icon svg, .bento-icon svg *,
.value-card-icon svg, .value-card-icon svg *,
[class*="-icon"] svg, [class*="-icon"] svg *,
[class*="icon-box"] svg, [class*="icon-box"] svg *,
button svg, button svg *,
.btn svg, .btn svg * {
    transition: fill 0.3s ease, stroke 0.3s ease, color 0.3s ease !important;
}

/* ==========================================================================
   Premium Card Hover: Icon container → Gold bg, Icon → White
   Applied across ALL card types on ALL pages
   ========================================================================== */

/* ── Service Cards ── */
.service-card:hover .icon-box,
.service-card:hover .card-icon,
.service-card:hover [class*="-icon"],
.service-card:hover [class*="icon-box"],
.service-card:hover [class*="icon-wrap"],
/* ── Premium Service Cards ── */
.service-card-premium:hover .icon-box,
.service-card-premium:hover .card-icon,
.service-card-premium:hover [class*="-icon"],
/* ── Bento Cards ── */
.bento-card:hover .bento-icon,
.bento-card:hover .icon-box,
.bento-card:hover .card-icon,
.bento-card:hover [class*="-icon"],
/* ── Value Cards ── */
.value-card:hover .value-card-icon,
.value-card:hover .icon-box,
.value-card:hover .card-icon,
.value-card:hover [class*="-icon"],
/* ── Sector Cards ── */
.sector-card-premium:hover .icon-box,
.sector-card-premium:hover .card-icon,
.sector-card-premium:hover [class*="-icon"],
.sector-card-premium:hover [class*="icon-box"],
/* ── Info / Glass Cards ── */
.info-card-glass:hover .icon-box,
.info-card-glass:hover .card-icon,
.info-card-glass:hover [class*="-icon"],
/* ── Product Cards ── */
.product-card:hover .icon-box,
.product-card:hover .card-icon,
.product-card:hover [class*="-icon"],
/* ── Generic [*-card] pattern ── */
[class*="-card"]:hover .icon-box,
[class*="-card"]:hover .card-icon,
[class*="-card"]:hover .bento-icon,
[class*="-card"]:hover .value-card-icon,
[class*="-card"]:hover [class*="-icon"] {
    background: #DCAE27 !important;
    background-color: #DCAE27 !important;
    border-color: #DCAE27 !important;
    box-shadow: 0 4px 16px rgba(220, 174, 39, 0.35) !important;
}

/* Icon SVGs inside those containers → White on hover */
.service-card:hover .icon-box svg,
.service-card:hover .icon-box svg *,
.service-card:hover .card-icon svg,
.service-card:hover .card-icon svg *,
.service-card:hover [class*="-icon"] svg,
.service-card:hover [class*="-icon"] svg *,
.service-card-premium:hover .icon-box svg,
.service-card-premium:hover .icon-box svg *,
.service-card-premium:hover .card-icon svg,
.service-card-premium:hover .card-icon svg *,
.service-card-premium:hover [class*="-icon"] svg,
.service-card-premium:hover [class*="-icon"] svg *,
.bento-card:hover .bento-icon svg,
.bento-card:hover .bento-icon svg *,
.bento-card:hover .icon-box svg,
.bento-card:hover .icon-box svg *,
.bento-card:hover [class*="-icon"] svg,
.bento-card:hover [class*="-icon"] svg *,
.value-card:hover .value-card-icon svg,
.value-card:hover .value-card-icon svg *,
.value-card:hover .icon-box svg,
.value-card:hover .icon-box svg *,
.value-card:hover [class*="-icon"] svg,
.value-card:hover [class*="-icon"] svg *,
.sector-card-premium:hover .icon-box svg,
.sector-card-premium:hover .icon-box svg *,
.sector-card-premium:hover .card-icon svg,
.sector-card-premium:hover .card-icon svg *,
.sector-card-premium:hover [class*="-icon"] svg,
.sector-card-premium:hover [class*="-icon"] svg *,
.info-card-glass:hover .icon-box svg,
.info-card-glass:hover .icon-box svg *,
.info-card-glass:hover [class*="-icon"] svg,
.info-card-glass:hover [class*="-icon"] svg *,
.product-card:hover .icon-box svg,
.product-card:hover .icon-box svg *,
.product-card:hover [class*="-icon"] svg,
.product-card:hover [class*="-icon"] svg *,
[class*="-card"]:hover .icon-box svg,
[class*="-card"]:hover .icon-box svg *,
[class*="-card"]:hover .card-icon svg,
[class*="-card"]:hover .card-icon svg *,
[class*="-card"]:hover .bento-icon svg,
[class*="-card"]:hover .bento-icon svg *,
[class*="-card"]:hover .value-card-icon svg,
[class*="-card"]:hover .value-card-icon svg *,
[class*="-card"]:hover [class*="-icon"] svg,
[class*="-card"]:hover [class*="-icon"] svg * {
    fill: none !important;
    stroke: #FFFFFF !important;
    color: #FFFFFF !important;
}


/* ==========================================================================
   Global Shape, Typography & Fonts Upgrades
   ========================================================================== */

/* Enforce border-radius: 15px on all cards, boxes, images, buttons, and input elements */
.bento-card,
.service-card,
.service-card-premium,
.sector-card-premium,
.info-card-glass,
.value-card,
.hero-image-card,
.img-bg,
.collage-image,
.collage-img-wrapper,
.rounded-3xl,
.rounded-\[32px\],
.rounded-\[24px\],
.rounded-2xl,
.rounded-xl,
.rounded-lg,
.rounded-md,
.rounded-sm,
input,
textarea,
select,
button:not(.circle-btn):not(.search-circle):not(.hamburger):not(.hero-dot):not(.vc-dot):not(.vc-nav-btn):not(#hamburgerBtn):not(.arrow-btn),
.btn,
.btn-premium-gold,
.btn-shine-sweep,
img:not(.av):not(.avatars img):not(.logo img):not(.nav-left img):not(.navbar img) {
    border-radius: 15px !important;
}

/* Headings: Gotham font family, bold weight, same font size consistently */
h2, h3, h4, h5, h6,
.h2, .h3, .h4, .h5, .h6 {
    font-family: 'Gotham', sans-serif !important;
    font-weight: 700 !important;
    font-size: 32px !important;
    line-height: 1.2 !important;
}

/* Main Hero Section headings — all pages — exactly 50px desktop */
h1, .hero-heading, .hero-banner h1, .hero-fade-up-1 {
    font-family: 'Gotham', sans-serif !important;
    font-weight: 900 !important;
    font-size: 50px !important;
    line-height: 1.2 !important;
}

/* Body Text: Inter font family globally */
body, p, span, li, a, label, input, textarea, select {
    font-family: 'Inter', sans-serif !important;
}

/* ── Compact Heading Hierarchy (Cards & Footer) ── */
.bento-card h3, .bento-card h4,
.service-card h3, .service-card h4,
.service-card-premium h3, .service-card-premium h4,
.sector-card-premium h3, .sector-card-premium h4,
.value-card h3, .value-card h4, .value-card-title,
.info-card-glass h3, .info-card-glass h4,
.product-card h3, .product-card h4,
.card h2, .card h3, .card h4,
[class*="-card"] h2, [class*="-card"] h3, [class*="-card"] h4, [class*="-card"] h5, [class*="-card"] h6,
footer h3, footer h4, footer h5, footer h6 {
    font-size: 20px !important;
    line-height: 1.3 !important;
}

/* ── Footer Theme Override ── */
footer, .footer {
    background-color: #363635 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

footer p,
footer span,
footer a,
footer li,
footer div,
footer td,
footer th {
    color: #FFFFFF !important;
}

footer a:hover {
    color: #DCAE27 !important;
}

/* ── Global Card Border/Outline Removal & Soft Elevated Shadow ── */
.service-card,
.service-card-premium,
.why-card,
.bento-card,
.sector-card-premium,
.sector-tile,
.product-card,
.redesigned-card,
.showcase-card,
.glass-card,
[class*="-card"],
[class*="-tile"] {
    border: none !important;
    outline: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease !important;
}

.service-card:hover,
.service-card-premium:hover,
.why-card:hover,
.bento-card:hover,
.sector-card-premium:hover,
.sector-tile:hover,
.product-card:hover,
.redesigned-card:hover,
.showcase-card:hover,
.glass-card:hover,
.stats-card-floating:hover,
[class*="-card"]:hover,
[class*="-tile"]:hover {
    border: none !important;
    outline: none !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.07) !important;
}

/* ── Global Typography Vertical Rhythm Overrides ── */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0 !important;
  margin-bottom: 14px !important; /* Heading bottom margin: 12px to 16px */
}

p {
  margin-top: 0px !important; /* Paragraph top margin: 0px */
  margin-bottom: 0px !important;
  line-height: 1.6;
  max-width: 600px;
}

/* Maintain natural separation between consecutive paragraphs within the same text block */
p + p {
  margin-top: 12px !important;
}

/* Ensure the gap between headings and following text blocks or paragraphs is exactly 20px (14px bottom margin + 6px top margin) */
h1 + p,
h2 + p,
h3 + p,
h4 + p,
h1 + .font-sans,
h2 + .font-sans,
h3 + .font-sans,
h1 + [class*="space-y-"],
h2 + [class*="space-y-"],
h3 + [class*="space-y-"] {
  margin-top: 6px !important;
}

/* ── WHY CHOOSE DOREK LLC SECTION STYLE ── */
.why-section {
    background-color: #0E527F !important;
}

.why-card {
    position: relative;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    padding: 32px !important;
    height: 230px !important;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
    cursor: default;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: start;
    z-index: 1;
}

.why-card h3 {
    font-family: 'Gotham', sans-serif !important;
    font-weight: 700 !important; /* Bold weight */
    font-size: 17px !important; /* 17px font size */
    text-transform: none !important; /* Preserve Title Case capitalization */
    position: relative !important;
    top: -10px !important;
}

.why-card p {
    position: relative !important;
    top: -26px !important;
}

.why-card:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(220, 174, 39, 0.4) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3) !important;
    background: rgba(255, 255, 255, 0.09) !important;
}

.why-icon-container {
    position: relative;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    align-self: flex-start !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.22) !important;
    margin-bottom: 24px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
    z-index: 10;
}

.why-icon-container svg {
    width: 22px !important;
    height: 22px !important;
    stroke: #DCAE27 !important;
    stroke-width: 2px !important;
    fill: none !important;
    transition: all 0.3s ease !important;
}

.why-card:hover .why-icon-container {
    background: #DCAE27 !important;
    border-color: #DCAE27 !important;
}

/* Force SVG icon stroke to white on card hover */
.why-card:hover .why-icon-container svg,
.why-card:hover .why-icon-container svg * {
    stroke: #ffffff !important;
    color: #ffffff !important;
    fill: none !important;
}




/* ── Sector Tile Hover Icon Color (Blue) ── */
.sector-tile:hover svg,
.sector-tile:hover svg * {
    stroke: #0E527F !important;
    color: #0E527F !important;
    fill: none !important;
}

/* ── Footer Social Icons Hover (Bg -> Yellow, Icon -> Blue) ── */
footer a.rounded-full:hover {
    background-color: #DCAE27 !important;
    color: #0E527F !important;
}
footer a.rounded-full:hover svg,
footer a.rounded-full:hover svg * {
    stroke: #0E527F !important;
    color: #0E527F !important;
    fill: none !important;
}
