@font-face {
    font-family: "interBold";
    src: url("resources/fonts/inter_bold.ttf");
}

@font-face {
    font-family: "interRegular";
    src: url("resources/fonts/inter_regular.ttf");
}

@font-face {
    font-family: "monBold";
    src: url("resources/fonts/Montserrat-Bold.ttf");
}

@font-face {
    font-family: "monSemiBold";
    src: url("resources/fonts/Montserrat-SemiBold.ttf");
}

/* CSS Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables - Unified */
:root {
    --primary-dark: #050E17;
    --secondary-dark: #111827;
    --accent-blue: #1e3a5f;
    --accent-gold: #C8A24A;
    --accent-gold-hover: #d4b43a;
    --text-white: #F5F7FA;
    --text-dark: #173A57;
    --text-gray: #9ca3af;
    --text-muted: #6b7280;
    --border-color: #063867;
    --glass-bg: rgba(17, 24, 39, 0.95);
    --footer-bg: #050E17;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

.label{
    font-family: "interBold";
}

.topic{
    font-family: "monSemiBold";
}

.para{
    font-family: "interRegular";
}

.boldTopic{
    font-family: "monBold";
}

/* ============================================
   NAVIGATION & HERO STYLES
   ============================================ */

.main-wrapper {
    padding: 12px;
    min-height: 100vh;
}

.hero-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: calc(100vh - 24px);
    /* border: 2px solid var(--border-color); */
}

.navbar {
    position: fixed;
    top: 12px;
    left: 14px;
    right: 14px;
    z-index: 1000;
    padding: 0 2.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 0 0 20px 20px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
    align-self: center;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo {
    align-self: center;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.logo-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--text-white);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text span:first-child {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.logo-text span:last-child {
    font-size: 0.7rem;
    color: var(--text-white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-wrapper {
    background: var(--primary-dark);
    padding: 1.25rem 2.5rem 1rem;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    border-radius: 0 0 20px 20px;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-wrapper {
    background: transparent;
    clip-path: none;
    padding: 0;
    border-radius: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #7CC7FF;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 60%;
    margin-left: 20%;
}

.nav-links a.active {
    color: #7CC7FF;
}

.nav-links a:hover {
    color: #7CC7FF;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    align-self: center;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-cta {
    align-self: center;
}

.navbar-logo {
    width: auto;
    height: 4.5rem;
}

.btn {
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
}

.btn-outline::before {
    background: var(--text-dark);
}

.btn-outline:hover {
    color: var(--text-white);
    border-color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(23, 58, 87, 0.2);
}

/* Scrolled state — navbar call now button light fill */
.navbar .nav-cta .btn-outline::before {
    background: rgba(255, 255, 255, 0.12);
}

.btn-outline[data-scrolled]::before {
    background: rgba(255, 255, 255, 0.12);
}

.btn-outline[data-scrolled]:hover {
    border-color: rgba(255, 255, 255, 0.7) !important;
    color: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.btn-outline svg {
    width: 16px;
    height: 16px;
}

.btn-gold {
    background: var(--accent-gold);
    color: var(--primary-dark);
    border: 2px solid var(--accent-gold);
}

.btn-gold:hover {
    background: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
    transition: all 0.3s ease;
    align-self: center;
}

.navbar.scrolled .menu-toggle {
    align-self: center;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 24px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('resources/hero/christiano-vj.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 15, 26, 0.85) 0%,
        rgba(10, 15, 26, 0.5) 50%,
        rgba(10, 15, 26, 0.3) 100%
    );
    z-index: 1;
} */

.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(10, 0, 63, 0.219) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 2, 82, 0.158) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
    pointer-events: none;
    filter: blur(1px);
}

.hero-content {
    position: absolute;
    left: 2.5rem;
    bottom: 180px;
    z-index: 3;
    max-width: 500px;
}

.hero-left {
    animation: fadeInUp 1s ease-out;
}

.tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #072b4d75;
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #AEC7DF;
    border: 1px solid #05508D;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.tag-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--text-white);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-description {
    font-size: 0.95rem;
    color: #f5f7fada;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-cta-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    background: var(--primary-dark);
    padding: 1.25rem 4rem 1.25rem 2rem;
    clip-path: polygon(0 0, calc(100% - 50px) 0, 100% 100%, 0 100%);
    /* border-top: 2px solid var(--border-color);
    border-right: 2px solid var(--border-color); */
    border-radius: 0 30px 0 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.hero-buttons .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

.btn-call {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--text-white);
}

.btn-call:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
}

.btn-call svg {
    width: 16px;
    height: 16px;
}

.trust-badge-container {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 10;
    animation: fadeIn 1s ease-out 1s both;
}

.trust-badge {
    background: #072b4d7e;
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid #05508D;
    font-size: 0.85rem;
    font-weight: 500;
    color: #AEC7DF;
    animation: float 3s ease-in-out infinite;
}

.trust-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Mobile Menu */
.mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1001;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1002;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.mobile-menu-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-white);
    stroke-width: 2;
}

.mobile-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a:last-of-type {
    border-bottom: none;
}

.mobile-menu .btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.mobile-menu .btn-gold {
    color: var(--text-dark);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* ============================================
   SCROLL TO TOP COMPONENT
   ============================================ */

.scroll-to-top {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-50%) scale(1.1);
}

.mouse-icon {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-white);
    border-radius: 13px;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

.scroll-tail {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-gold) 0%, transparent 100%);
    border-radius: 1px;
    animation: tailFade 2s ease-in-out infinite;
    position: relative;
}

.scroll-tail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, var(--accent-gold) 50%, transparent 100%);
    animation: tailShimmer 2s ease-in-out infinite;
}

@keyframes tailFade {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

@keyframes tailShimmer {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

.scroll-text {
    font-size: 0.7rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    margin-bottom: 8px;
}

/* ============================================
   RESPONSIVE STYLES - NAV/HERO
   ============================================ */

@media (max-width: 1270px) and (min-width: 769px) {
    .navbar {
        padding: 0 1.5rem;
        justify-content: flex-start;
        gap: 1rem;
    }

    .nav-wrapper {
        display: none;
    }

    .logo {
        margin-right: auto;
        align-self: center;
    }

    .navbar.scrolled .logo {
        align-self: center;
    }

    .nav-cta {
        display: flex;
        order: 2;
        align-self: center;
        margin-left: 0;
    }

    .navbar.scrolled .nav-cta {
        align-self: center;
    }

    .menu-toggle {
        display: flex;
        order: 3;
        align-self: center;
        margin-left: 0.5rem;
    }

    .navbar.scrolled .menu-toggle {
        align-self: center;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }

    .hero-content {
        left: 2rem;
        bottom: 160px;
        max-width: 450px;
    }

    .hero-cta-panel {
        padding: 1.25rem 3rem 1.25rem 1.5rem;
    }

    .trust-badge-container {
        right: 2rem;
        bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .main-wrapper {
        padding: 8px;
    }

    .hero-container {
        border-radius: 16px;
        min-height: calc(100vh - 16px);
    }

    .navbar {
        left: 10px;
        right: 10px;
        padding: 0 1rem;
        justify-content: space-between;
    }

    .logo {
        align-self: center;
        margin-right: 0;
    }

    .nav-wrapper {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
        order: 2;
        margin-left: 0;
        align-self: center;
    }

    .navbar.scrolled .menu-toggle {
        align-self: center;
    }

    .hero-content {
        left: 1.5rem;
        right: 1.5rem;
        bottom: 200px;
        max-width: none;
        text-align: center;
    }

    .hero-cta-panel {
        left: 50%;
        transform: translateX(-50%);
        clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
        border-radius: 40px 40px 0 0;
        padding: 1.25rem 2.5rem;
        width: calc(100% - 32px);
        max-width: 600px;
        border: 2px solid var(--border-color);
        border-bottom: none;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: row;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .trust-badge-container {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        display: flex;
        justify-content: center;
    }

    .tag-badge {
        margin-bottom: 1.5rem;
    }
}

/* @media (max-width: 488px) {
    .tag-badge {
        margin-bottom: 0.8rem;
    }

    .trust-badge-container {
        margin-top: -1rem;
    }
} */

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .logo-text span:first-child {
        font-size: 0.9rem;
    }

    .logo-text span:last-child {
        font-size: 0.65rem;
    }

    .hero-cta-panel {
        padding: 1rem 3rem;
    }

    .menu-toggle {
        align-self: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }
}

@media (max-width: 430px) {
    .trust-badge-container {
        display: none;
    }
}


/* Utility Classes */
section {
    min-height: 100vh;
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    background: var(--primary-dark);
    min-height: unset !important;
    padding: 6rem 2rem !important;
    display: block !important;
    /* border-top: 1px solid rgba(255, 255, 255, 0.08) !important; */
    font-size: unset !important;
    align-items: unset !important;
    justify-content: unset !important;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.about-container {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

/* ---- LEFT ---- */
.about-left {
    flex: 1;
    min-width: 0;
}

.about-label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.about-label-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
    /* margin-top: 8px; */
}

.about-label-line {
    display: block;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.about-label-line:first-child {
    width: 10rem;
}

.about-label-line:last-child {
    width: 15rem;
}

.about-label-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent-gold);
    text-transform: uppercase;
}

.about-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-body {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.about-license-box {
    margin-top: 1.5rem;
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-left: 3px solid var(--accent-gold);
    background: rgba(201, 162, 39, 0.05);
    border-radius: 6px;
    padding: 1rem 1.25rem;
}

.about-license-text {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.65;
}

.about-license-text strong {
    color: var(--text-white);
}

/* ---- RIGHT ---- */
.about-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    width: 340px;
}

/* Trusted badge */
.about-trusted-badge {
    background: #072B4D;
    border: 2px solid #05508D;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    position: absolute;
    top: -10px;
    left: -20px;
    z-index: 2;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.about-trusted-percent {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.about-trusted-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 1px;
}

/* Shield */
.about-shield-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-shield {
    width: 200px;
    height: 230px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Shield shape via clip-path */
.about-shield::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #2a2a3a 0%, #111120 60%, #0a0a18 100%);
    clip-path: polygon(50% 0%, 100% 15%, 100% 60%, 50% 100%, 0% 60%, 0% 15%);
    border-radius: 4px;
    box-shadow: 0 0 40px rgba(201, 162, 39, 0.25), inset 0 0 30px rgba(0, 0, 0, 0.6);
}

/* Gold border ring */
.about-shield::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: transparent;
    clip-path: polygon(50% 0%, 100% 15%, 100% 60%, 50% 100%, 0% 60%, 0% 15%);
    border: 3px solid transparent;
    background: linear-gradient(160deg, rgba(201, 162, 39, 0.6) 0%, rgba(201, 162, 39, 0.15) 50%, rgba(201, 162, 39, 0.5) 100%) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.about-shield-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #2e2e40, #0d0d1a);
    border: 2px solid rgba(201, 162, 39, 0.5);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.2);
}

.about-shield-vj {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-gold);
    letter-spacing: 2px;
    font-style: italic;
}

/* Brand text */
.about-brand-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.about-brand-text span {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 6px;
    text-transform: uppercase;
    line-height: 1.2;
}

/* ============================================
   RESPONSIVE - ABOUT
   ============================================ */

@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        gap: 3rem;
        /* text-align: center; */
    }

    .about-label {
        /* justify-content: center; */
    }

    .about-license-box {
        text-align: left;
    }

    .about-right {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 4rem 1.25rem !important;
    }

    .about-label-line:first-child {
        width: 6rem;
    }

    .about-label-line:last-child {
        width: 10rem;
    }

    .about-brand-text span {
        font-size: 1.1rem;
        letter-spacing: 4px;
    }

    .about-shield {
        width: 160px;
        height: 185px;
    }

    .about-shield-inner {
        width: 64px;
        height: 64px;
    }

    .about-shield-vj {
        font-size: 1.4rem;
    }
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    min-height: unset !important;
    padding: 0 !important;
    display: block !important;
    border-top: none !important;
    font-size: unset !important;
    align-items: unset !important;
    justify-content: unset !important;
    position: relative;
    overflow: hidden;
    background: #081A2B;
background: linear-gradient(90deg, rgba(8, 26, 43, 1) 0%, rgba(5, 14, 23, 1) 64%, rgba(5, 14, 23, 1) 100%);
    /* border-top: 1px solid rgba(201, 162, 39, 0.15) !important;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15) !important; */
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #081A2B;
background: linear-gradient(90deg, rgba(8, 26, 43, 1) 0%, rgba(5, 14, 23, 1) 64%, rgba(5, 14, 23, 1) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Gold shimmer line at top */
.stats-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
   background: #081A2B;
background: linear-gradient(90deg, rgba(8, 26, 43, 1) 0%, rgba(5, 14, 23, 1) 64%, rgba(5, 14, 23, 1) 100%);
    /* background: linear-gradient(90deg,
            transparent 0%,
            rgba(201, 162, 39, 0.6) 20%,
            var(--accent-gold) 50%,
            rgba(201, 162, 39, 0.6) 80%,
            transparent 100%); */
    z-index: 1;
}

.stats-grid {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    max-width: 1160px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    flex: 1;
    padding: 0.5rem 1rem;
    position: relative;
    cursor: default;
}

/* Subtle radial glow on hover */
.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.07) 0%, transparent 70%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-value {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.05em;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    transition: color 0.3s ease;

    /* Animated underline on hover */
    position: relative;
}

.stat-value::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 1px;
    transition: width 0.35s ease;
}

.stat-item:hover .stat-value::after {
    width: 60%;
}

.stat-item:hover .stat-value {
    color: var(--accent-gold-hover);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-gray);
    text-align: center;
    letter-spacing: 0.03em;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: rgba(255, 255, 255, 0.75);
}

.stat-divider {
    width: 1px;
    align-self: stretch;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(201, 162, 39, 0.35) 30%,
            rgba(201, 162, 39, 0.35) 70%,
            transparent 100%);
    flex-shrink: 0;
    margin: 0.5rem 0;
}

/* Count-up animation — values start invisible until JS runs */
.stat-value.counting {
    opacity: 1;
}

/* ============================================
   RESPONSIVE — STATS
   ============================================ */

@media (max-width: 768px) {
    .stats-grid {
        flex-wrap: wrap;
        gap: 0;
        padding: 2rem 1.5rem;
    }

    .stat-item {
        flex: 0 0 50%;
        padding: 1.25rem 1rem;
        border-bottom: 1px solid rgba(201, 162, 39, 0.1);
    }

    /* Remove bottom border from last row */
    .stat-item:nth-child(7),
    .stat-item:nth-child(8) {
        border-bottom: none;
    }

    .stat-divider {
        display: none;
    }

    /* Add right border for left column items */
    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(201, 162, 39, 0.1);
    }
}

@media (max-width: 480px) {
    .stat-value {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stats-grid {
        padding: 1.5rem 1rem;
    }
}




/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    background: var(--primary-dark);
    min-height: unset !important;
    padding: 6rem 2rem !important;
    display: block !important;
    /* border-top: 1px solid rgba(255, 255, 255, 0.08) !important; */
    font-size: unset !important;
    align-items: unset !important;
    justify-content: unset !important;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.services-container {
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ============================================
   GRID - 5 columns (default desktop >1280px)
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 280px;
    gap: 1.25rem;
    align-items: start;
}

.services-intro {
    grid-column: 1 / 3;
    grid-row: 1;
    padding-right: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    height: max-content;
    margin: auto 0;
}

.card-1 {
    grid-column: 3;
    grid-row: 1;
}

.card-2 {
    grid-column: 4;
    grid-row: 1;
}

.card-3 {
    grid-column: 5;
    grid-row: 1;
}

.card-4 {
    grid-column: 1;
    grid-row: 2;
}

.card-5 {
    grid-column: 2;
    grid-row: 2;
}

.card-6 {
    grid-column: 3;
    grid-row: 2;
}

.card-7 {
    grid-column: 4;
    grid-row: 2;
}

.card-8 {
    grid-column: 5;
    grid-row: 2;
}

/* ============================================
   SERVICES HEADER / LABEL
   ============================================ */

.services-label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.services-label-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.services-label-line {
    display: block;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.services-label-line:first-child {
    width: 10rem;
}

.services-label-line:last-child {
    width: 15rem;
}

.services-label-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent-gold);
    text-transform: uppercase;
}

.services-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.services-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.75;
    max-width: 480px;
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(0deg, #0B2238 0%, #0B2238 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    min-height: 280px;
}

.service-card:hover {
    transform: translateY(-8px);
    border-top: 3.5px solid var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(201, 162, 39, 0.1);
}

.service-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(145deg, #1a2332 0%, #0f1720 100%);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.service-card-image img[src=""],
.service-card-image img:not([src]) {
    display: none;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            #0b223809 0%,
            #0b223854 75%,
            #0B2238 100%);
    transition: all 0.4s ease;
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(to bottom,
            rgba(10, 15, 26, 0.6) 0%,
            rgba(10, 15, 26, 0.85) 50%,
            rgba(10, 15, 26, 0.98) 100%);
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem;
    z-index: 2;
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0;
}

.service-card-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-dot {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
}

.service-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    transition: all 0.3s ease;
    line-height: 1.2;
}

.service-card:hover .service-card-title {
    color: var(--accent-gold);
}

.service-card-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-top: 0.75rem;

    /* Start completely hidden below */
    opacity: 0;
    transform: translateY(30px);
    max-height: 0;
    overflow: hidden;

    /* Longer, smoother transition */
    transition:
        opacity 0.5s ease-out,
        transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        max-height 0.5s ease-out;
}

.service-card:hover .service-card-desc {
    /* Slide up smoothly */
    opacity: 1;
    transform: translateY(0);
    max-height: 150px;
}

/* ============================================
   RESPONSIVE - 4 COLUMNS (max-width: 1280px)
   Intro: cols 1-2 | 2 cards same row | next rows: 4 each
   ============================================ */

/* 1280px breakpoint eke only — card-7, card-8 center */
@media (max-width: 1280px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 270px;
        gap: 1.25rem;
        align-items: center;
    }

    .services-intro {
        grid-column: 1 / 3;
        grid-row: 1;
        padding-right: 0.5rem;
        height: max-content;
        justify-content: center;
    }

    .card-1 {
        grid-column: 3;
        grid-row: 1;
    }

    .card-2 {
        grid-column: 4;
        grid-row: 1;
    }

    .card-3 {
        grid-column: 1;
        grid-row: 2;
    }

    .card-4 {
        grid-column: 2;
        grid-row: 2;
    }

    .card-5 {
        grid-column: 3;
        grid-row: 2;
    }

    .card-6 {
        grid-column: 4;
        grid-row: 2;
    }

    /* Last row: 2 cards centered — cols 2 & 3 */
    .card-7 {
        grid-column: 2;
        grid-row: 3;
    }

    .card-8 {
        grid-column: 3;
        grid-row: 3;
    }
}

/* ============================================
   RESPONSIVE - 3 COLUMNS (max-width: 1024px)
   Intro: cols 1-2 row 1 | 1 card same row | rest: 3 each
   ============================================ */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 260px;
        column-gap: 1.25rem;
        row-gap: 2.5rem;
        align-items: center;
    }

    .services-intro {
        grid-column: 1 / 3;
        grid-row: 1;
        padding-right: 0.5rem;
        height: max-content;
        justify-content: center;
    }

    .card-1 {
        grid-column: 3;
        grid-row: 1;
    }

    .card-2 {
        grid-column: 1;
        grid-row: 2;
    }

    .card-3 {
        grid-column: 2;
        grid-row: 2;
    }

    .card-4 {
        grid-column: 3;
        grid-row: 2;
    }

    .card-5 {
        grid-column: 1;
        grid-row: 3;
    }

    .card-6 {
        grid-column: 2;
        grid-row: 3;
    }

    .card-7 {
        grid-column: 3;
        grid-row: 3;
    }

    .card-8 {
        grid-column: 1;
        grid-row: 4;
    }
}

/* ============================================
   RESPONSIVE - 2 COLUMNS (max-width: 768px)
   ============================================ */

@media (max-width: 768px) {
    .services-section {
        padding: 4rem 1.5rem !important;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
        column-gap: 1rem;
        row-gap: 3.5rem;
    }

    .services-intro {
        grid-column: 1 / -1;
        grid-row: auto;
        padding-right: 0;
        margin-bottom: 1rem;
    }

    .card-1,
    .card-2,
    .card-3,
    .card-4,
    .card-5,
    .card-6,
    .card-7,
    .card-8 {
        grid-column: auto;
        grid-row: auto;
    }

    .service-card-title {
        font-size: 0.95rem;
    }

    .service-card-desc {
        font-size: 0.8rem;
        /* padding-left: 1.1rem; */
    }
}

/* ============================================
   RESPONSIVE - 1 COLUMN (max-width: 480px)
   ============================================ */

@media (max-width: 480px) {
    .services-section {
        padding: 3rem 1rem !important;
    }

    .services-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
        gap: 5rem;
    }

    .services-intro {
        grid-column: 1;
        grid-row: 1;
        margin-bottom: -1rem;
    }

    .services-label-line:first-child {
        width: 6rem;
    }

    .services-label-line:last-child {
        width: 10rem;
    }

    .services-title {
        font-size: 1.5rem;
    }

    .services-description {
        font-size: 0.9rem;
    }
}

/* ============================================
   TOUCH DEVICE - always show description
   ============================================ */

@media (hover: none) and (pointer: coarse) {
    .service-card-desc {
        opacity: 0.9;
        transform: translateY(0);
        max-height: 100px;
        font-size: 0.8rem;
    }

    .service-card-overlay {
        background: linear-gradient(to bottom,
                rgba(10, 15, 26, 0.3) 0%,
                rgba(10, 15, 26, 0.6) 50%,
                rgba(10, 15, 26, 0.95) 100%);
    }
}

/* ============================================
   APPROACH SECTION
   ============================================ */

.approach-section {
    background: #081A2B;
background: linear-gradient(252deg, rgba(8, 26, 43, 1) 0%, rgba(8, 26, 43, 1) 20%, rgba(5, 14, 23, 1) 100%);
    font-family: 'Poppins', sans-serif;
    min-height: unset !important;
    padding: 120px 32px 80px 32px !important;
    display: block !important;
    /* border-top: 1px solid rgba(255, 255, 255, 0.08) !important; */
    font-size: unset !important;
    align-items: unset !important;
    justify-content: unset !important;
    position: relative;
    overflow: hidden;
}

/* subtle grid bg same as hero */
.approach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.approach-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ── Row layouts ── */
.approach-top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}

.approach-mid-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 48px;
    padding-right: 120px;
}

.approach-bot-row {
    display: flex;
    justify-content: flex-start;
}

/* ── Section header ── */
.approach-header {
    flex: 1;
    max-width: 500px;
    padding-top: 2px;
    margin-top: -3rem;
    /* margin-left: calc(100% - 62rem); */
    /* background-color: red; */
}

.approach-label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.approach-label-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.approach-label-line {
    display: block;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.approach-label-line:first-child {
    width: 10rem;
}

.approach-label-line:last-child {
    width: 15rem;
}

.approach-label-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent-gold);
    text-transform: uppercase;
}

.approach-section-title {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.approach-section-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.75;
    max-width: 480px;
}

/* ── Card wrapper ── */
.approach-card-wrapper {
    position: relative;
    width: 460px;
    flex-shrink: 0;
}

.approach-number-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #173A57;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20px;
}

.approach-number {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 2px;
    line-height: 1;
}

.approach-content-card {
    position: relative;
    margin-left: 72px;
    background: #0B2238;
    border: 1.5px solid #173A57;
    border-radius: 12px;
    padding: 16px 16px 40px 18px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.959),
        inset 0 1px 0 rgba(255, 255, 255, 0.226),
        inset 0 0 40px rgba(10, 39, 90, 0.329);
    z-index: 1;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.approach-card-wrapper:hover .approach-content-card {
    transform: translateY(-3px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        inset 0 0 40px rgba(10, 40, 90, 0.35);
}

.approach-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
    line-height: 1.4;
}

.approach-card-desc {
    font-size: 11px;
    font-weight: 300;
    color: var(--text-gray);
    line-height: 1.75;
    padding-right: 24px;
}

.approach-icon-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
}

.approach-icon-btn svg {
    width: 22px;
    height: 22px;
    stroke: #c9973a;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Approach Responsive ── */
@media (max-width: 939px) {
    .approach-top-row {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 32px;
    }

    .approach-header {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        padding-top: 0;
        margin-top: -3rem;
        margin-left: 0 !important;
    }

    .approach-mid-row {
        justify-content: flex-end;
        padding-right: 10px;
        /* Second card little bit right */
    }

    .approach-section-desc {
        max-width: 100% !important;
    }
}

@media (max-width: 560px) {
    .approach-top-row {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 32px;
    }

    .approach-section-desc {
        max-width: 100%;
    }

    .approach-header {
        max-width: 100%;
        padding-top: 0;
    }

    .approach-card-wrapper {
        width: 100%;
    }

    .approach-mid-row,
    .approach-bot-row {
        justify-content: flex-start;
    }

    .approach-mid-row {
        padding-right: 0px;
    }

    .approach-section-tag::after {
        max-width: 80px;
    }
}

@media (max-width: 480px) {
    .approach-section {
        padding: 60px 20px !important;
    }

    .approach-top-row {
        margin-bottom: 32px;
    }

    .approach-label-line:first-child {
        width: 6rem;
    }

    .approach-label-line:last-child {
        width: 10rem;
    }

    .approach-mid-row {
        margin-bottom: 32px;
    }

    .approach-content-card {
        margin-left: 60px;
        padding: 14px 14px 36px 14px;
    }

    .approach-number-box {
        padding-left: 16px;
    }

    .approach-number {
        font-size: 24px;
    }
}


/* ============================================
   SERVICE AREAS SECTION
   ============================================ */

.areas-section {
    background: var(--primary-dark);
    min-height: unset !important;
    padding: 6rem 2rem !important;
    display: block !important;
    /* border-top: 1px solid rgba(255, 255, 255, 0.08) !important; */
    font-size: unset !important;
    align-items: unset !important;
    justify-content: unset !important;
    position: relative;
    overflow: hidden;
}

.areas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.areas-container {
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ── Header ── */
.areas-header {
    margin-bottom: 2rem;
}

.areas-label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.areas-label-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.areas-label-line {
    display: block;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.areas-label-line:first-child {
    width: 10rem;
}

.areas-label-line:last-child {
    width: 15rem;
}

.areas-label-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent-gold);
    text-transform: uppercase;
}

.areas-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.areas-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 720px;
}

/* ── Accordion ── */
.areas-accordion {
    display: flex;
    flex-direction: row;
    gap: 6px;
    height: 360px;
    margin-bottom: 1.25rem;
    border-radius: 14px;
    overflow: hidden;
}

/* Each card */
.area-card {
    position: relative;
    flex: 0 0 80px;
    /* collapsed width */
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.area-card.active {
    flex: 1 1 auto;
    /* expanded takes remaining space */
    cursor: default;
}

/* BG image */
.area-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #0B2238;
    /* fallback if no image */
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.area-card:not(.active):hover .area-card-bg {
    transform: scale(1.04);
}

/* Dark overlay */
.area-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(8, 18, 40, 0.35) 0%,
            rgba(8, 18, 40, 0.75) 60%,
            rgba(8, 18, 40, 0.92) 100%);
    transition: background 0.4s ease;
}

.area-card.active .area-card-overlay {
    background: linear-gradient(to bottom,
            rgba(8, 18, 40, 0.25) 0%,
            rgba(8, 18, 40, 0.55) 50%,
            rgba(8, 18, 40, 0.88) 100%);
}

/* Collapsed vertical label */
.area-card-collapsed-label {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%) rotate(-90deg);
    white-space: nowrap;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-white);
    text-transform: uppercase;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.area-card.active .area-card-collapsed-label {
    opacity: 0;
}

/* Expanded content */
.area-card-expanded {
    position: absolute;
    inset: 0;
    padding: 1.4rem 1.6rem;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.area-card.active .area-card-expanded {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.area-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1.5px solid var(--accent-gold);
    border-radius: 7px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.area-card-icon svg {
    width: 16px;
    height: 16px;
}

.area-card-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1.1;
    text-transform: uppercase;
}

/* icon + name wrapper */
.area-card-expanded .area-card-title-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.area-card-subdesc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
    margin-bottom: 0;
    flex: 1;
}

/* View Map button — pinned bottom-right */
.area-view-map-btn {
    position: absolute;
    bottom: 1.25rem;
    right: 1.4rem;
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.6rem 1.6rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.area-view-map-btn:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.35);
}

/* ── Info bar ── */
.areas-info-bar {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background: rgba(14, 32, 64, 0.7);
    border: 1px solid rgba(30, 63, 106, 0.6);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
}

.areas-info-icon {
    flex-shrink: 0;
    color: var(--accent-gold);
    margin-top: 2px;
}

.areas-info-icon svg {
    width: 18px;
    height: 18px;
}

.areas-info-bar p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.areas-info-link {
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.areas-info-link:hover {
    color: var(--accent-gold-hover);
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE — SERVICE AREAS
   ============================================ */

/* Vertical stack below 700px */
@media (max-width: 700px) {
    .areas-accordion {
        flex-direction: column;
        height: auto;
        gap: 6px;
    }

    .area-card {
        flex: 0 0 60px;
        /* collapsed height in vertical mode */
        border-radius: 10px;
        transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .area-card.active {
        flex: 0 0 240px;
    }

    /* Vertical mode: rotate label back to horizontal */
    .area-card-collapsed-label {
        bottom: auto;
        top: 50%;
        left: 1.25rem;
        transform: translateY(-50%) rotate(0deg);
        font-size: 0.8rem;
    }

    .area-card.active .area-card-collapsed-label {
        opacity: 0;
    }

    .area-card-expanded {
        padding: 1.1rem 1.25rem;
    }

    .area-card-name {
        font-size: 1.1rem;
    }

    .area-view-map-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1.25rem;
        bottom: 0.9rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .areas-section {
        padding: 4rem 1.25rem !important;
    }

    .areas-label-line:first-child {
        width: 6rem;
    }

    .areas-label-line:last-child {
        width: 10rem;
    }

    .areas-title {
        font-size: 1.4rem;
    }
}



/* ============================================
   QUOTE SECTION
   ============================================ */

.quote-section {
    background: #081A2B;
    min-height: unset !important;
    padding: 6rem 2rem !important;
    display: block !important;
    /* border-top: 1px solid rgba(255, 255, 255, 0.08) !important; */
    font-size: unset !important;
    align-items: unset !important;
    justify-content: unset !important;
    position: relative;
    overflow: hidden;
}

/* Dot texture — small tight dots matching reference exactly */
.quote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.096) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
    z-index: 0;
}

.quote-outer {
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ── Main card ── */
.quote-card {
    background: #050E17;
background: linear-gradient(180deg, rgba(5, 14, 23, 1) 0%, rgba(11, 34, 56, 1) 100%);
    /* border: 1px solid #162840; */
    border-radius: 16px;
    display: grid;
    grid-template-columns: 360px 1fr;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.322), 0 0 0 1px rgba(255, 255, 255, 0.041);
}

/* ── LEFT ── */
.quote-left {
    padding: 2.5rem 2.25rem;
    /* border-right: 1px solid #162840; */
    /* background: rgba(0, 0, 0, 0.192); */
    display: flex;
    flex-direction: column;
}

/* Label — matches approach/services/about */
.quote-label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.quote-label-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.quote-label-line {
    display: block;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.quote-label-line:first-child {
    width: 10rem;
}

.quote-label-line:last-child {
    width: 15rem;
}

.quote-label-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent-gold);
    text-transform: uppercase;
}

.quote-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 0.85rem;
}

.quote-desc {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

/* Feature list — separator matches about-license-box style */
.quote-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.quote-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.82);
    padding: 0.65rem 0;
    border-bottom: 1px solid #162840;
}

.quote-features li:last-child {
    border-bottom: none;
}

.quote-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-gold);
    width: 20px;
}

.quote-check svg {
    width: 16px;
    height: 16px;
}

/* ── RIGHT ── */
.quote-right {
    padding: 2.5rem 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    background: rgba(0, 0, 0, 0.10);
}

.quote-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.quote-field--full {
    grid-column: 1 / -1;
}

/* Field label — same weight/tracking as service-card-title style */
.quote-field-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0.8rem;
    letter-spacing: 0.3px;
}

.quote-required {
    color: var(--accent-gold);
}

.quote-optional {
    color: #6b8fb5;
    font-weight: 400;
}

/* Input — near-transparent field matching reference image */
.quote-input-wrap {
    position: relative;
}

.quote-input {
    width: 100%;
    background: #0e1c34;
    border: 1px solid #1a3358;
    border-radius: 8px;
    padding: 0.65rem 0.95rem;
    font-size: 0.85rem;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    min-height: 44px;
    line-height: 1.5;
    cursor: text;
}

.quote-input:empty::before {
    content: attr(data-placeholder);
    color: #3d5a7a;
    pointer-events: none;
}

.quote-input:focus {
    border-color: rgba(201, 162, 39, 0.5);
    background: #102040;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.07);
}

/* Textarea */
.quote-textarea {
    min-height: 110px;
    resize: none;
    overflow-y: auto;
}

/* Custom select — same style as input */
.quote-select-wrap {
    position: relative;
}

.quote-select {
    width: 100%;
    background: #0e1c34;
    border: 1px solid #1a3358;
    border-radius: 8px;
    padding: 0.65rem 0.95rem;
    font-size: 0.85rem;
    color: #3d5a7a;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    user-select: none;
}

.quote-select.open,
.quote-select:hover {
    border-color: rgba(201, 162, 39, 0.5);
    background: #102040;
}

.quote-select.selected {
    color: var(--text-white);
}

.quote-select-arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #3d5a7a;
    transition: transform 0.25s ease;
}

.quote-select.open .quote-select-arrow {
    transform: rotate(180deg);
}

.quote-select-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #0c1528;
    border: 1px solid #1a3358;
    border-radius: 8px;
    z-index: 100;
    overflow: hidden;
    display: none;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.quote-select-dropdown.open {
    display: block;
}

.quote-select-option {
    padding: 0.65rem 0.95rem;
    font-size: 0.85rem;
    color: #7a9fc0;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    border-bottom: 1px solid #162840;
}

.quote-select-option:last-child {
    border-bottom: none;
}

.quote-select-option:hover {
    background: rgba(201, 162, 39, 0.08);
    color: var(--accent-gold);
}

.quote-select-option.selected {
    color: var(--accent-gold);
    background: rgba(201, 162, 39, 0.06);
}

/* Submit — matches btn-gold exactly */
.quote-submit-row {
    margin-top: 0.25rem;
}

.quote-submit-btn {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.85rem 2.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    user-select: none;
    letter-spacing: 0.3px;
    border: 2px solid var(--accent-gold);
}

.quote-submit-btn:hover {
    background: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.3);
}

.quote-submit-btn:active {
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE — QUOTE SECTION
   ============================================ */

@media (max-width: 1090px) {
    .quote-card {
        grid-template-columns: 1fr;
    }

    .quote-left {
        border-right: none;
        border-bottom: 1px solid rgba(30, 58, 95, 0.4);
        padding: 2rem 1.75rem;
    }

    .quote-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .quote-features li {
        border-bottom: none;
        padding: 0.4rem 0;
    }

    .quote-right {
        padding: 2rem 1.75rem;
    }
}

@media (max-width: 714px) {
    .quote-section {
        padding: 4rem 1.25rem !important;
    }

    .quote-row {
        grid-template-columns: 1fr;
    }

    .quote-features {
        grid-template-columns: 1fr;
    }

    .quote-left {
        padding: 1.75rem 1.25rem;
    }

    .quote-right {
        padding: 1.75rem 1.25rem;
    }

    .quote-submit-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .quote-label-line:first-child {
        width: 6rem;
    }

    .quote-label-line:last-child {
        width: 10rem;
    }
}

/* ============================================
   DATE PICKER — Quote Section
   style.css ඒකේ DATE PICKER section replace කරන්න
   ============================================ */

.quote-date-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.quote-date-toggle {
    display: flex;
    background: #0a1628;
    border: 1px solid #1a3358;
    border-radius: 6px;
    overflow: hidden;
    width: fit-content;
}

.quote-date-tab {
    font-size: 0.75rem;
    font-weight: 600;
    color: #3d5a7a;
    padding: 0.35rem 0.85rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    user-select: none;
    letter-spacing: 0.3px;
}

.quote-date-tab.active {
    background: #1a3358;
    color: var(--accent-gold);
}

.quote-date-tab:hover:not(.active) {
    color: rgba(255,255,255,0.6);
}

.quote-date-inputs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* ── Native input — hidden but still functional ── */
.quote-date-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

/* ── Custom date button (replaces visible input) ── */
.qd-trigger {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    min-height: 44px;
    background: #0e1c34;
    border: 1px solid #1a3358;
    border-radius: 8px;
    padding: 0.65rem 0.95rem;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    color: #3d5a7a;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    text-align: left;
    user-select: none;
    box-sizing: border-box;
}

.qd-trigger:hover,
.qd-trigger.open {
    border-color: rgba(201,162,39,0.5);
    background: #102040;
}

.qd-trigger.open {
    box-shadow: 0 0 0 3px rgba(201,162,39,0.07);
}

.qd-trigger.has-value {
    color: var(--text-white);
}

.qd-trigger-icon {
    flex-shrink: 0;
    opacity: 0.45;
}

.qd-trigger-text {
    flex: 1;
}

.qd-trigger-chevron {
    flex-shrink: 0;
    color: #3d5a7a;
    transition: transform 0.25s ease;
}

.qd-trigger.open .qd-trigger-chevron {
    transform: rotate(180deg);
}

/* ── Wrapper that holds trigger + popup ── */
.qd-wrap {
    position: relative;
    flex: 1;
}

/* ── Range row ── */
.quote-date-range {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quote-date-sep {
    color: var(--accent-gold);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ── Calendar popup ── */
.qd-popup {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 600;
    width: 272px;
    background: #0d1c35;
    border: 1px solid #1e3f6a;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 16px 48px rgba(0,0,0,0.65);
}

.qd-popup--right {
    left: auto;
    right: 0;
}

.qd-popup.open {
    display: block;
}

/* ── Popup header ── */
.qd-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.qd-nav-btn {
    width: 28px;
    height: 28px;
    background: none;
    border: 1px solid #1a3358;
    border-radius: 5px;
    color: #3d5a7a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1;
    transition: border-color 0.2s, color 0.2s;
    flex-shrink: 0;
    font-family: sans-serif;
}

.qd-nav-btn:hover {
    border-color: rgba(201,162,39,0.5);
    color: var(--accent-gold);
}

.qd-month-label {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 0.3px;
}

/* ── Calendar grid ── */
.qd-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.qd-dow {
    font-size: 0.62rem;
    font-weight: 600;
    color: #3d5a7a;
    text-align: center;
    padding: 0.28rem 0;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.qd-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.4);
    border-radius: 5px;
    position: relative;
    transition: background 0.15s, color 0.15s;
}

.qd-day:not(.qd-empty):not(.qd-other):not(.qd-disabled) {
    cursor: pointer;
}

.qd-day:not(.qd-empty):not(.qd-other):not(.qd-disabled):not(.qd-selected):not(.qd-range-start):not(.qd-range-end):hover {
    background: #1a3358;
    color: var(--text-white);
}

.qd-day.qd-other {
    opacity: 0.18;
    cursor: default;
}

.qd-day.qd-disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

.qd-day.qd-empty {
    cursor: default;
}

/* Today dot */
.qd-day.qd-today::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--accent-gold);
}

/* Single selected */
.qd-day.qd-selected {
    background: var(--accent-gold);
    color: #0a1628;
    font-weight: 700;
}

/* Range */
.qd-day.qd-in-range {
    background: rgba(201,162,39,0.13);
    color: var(--text-white);
    border-radius: 0;
}

.qd-day.qd-range-start {
    background: var(--accent-gold);
    color: #0a1628;
    font-weight: 700;
    border-radius: 5px 0 0 5px;
}

.qd-day.qd-range-end {
    background: var(--accent-gold);
    color: #0a1628;
    font-weight: 700;
    border-radius: 0 5px 5px 0;
}

.qd-day.qd-range-start.qd-range-end {
    border-radius: 5px;
}

/* ── Popup footer ── */
.qd-footer {
    margin-top: 0.8rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.qd-foot-btn {
    font-size: 0.73rem;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #1a3358;
    background: none;
    color: #3d5a7a;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s, color 0.2s;
}

.qd-foot-btn:hover {
    border-color: rgba(201,162,39,0.5);
    color: var(--accent-gold);
}

.qd-foot-btn.qd-primary {
    background: var(--accent-gold);
    color: #0a1628;
    border-color: var(--accent-gold);
}

.qd-foot-btn.qd-primary:hover {
    background: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
}

.hidden {
    display: none !important;
}




/* ============================================
   CONTACT INFO SECTION
   ============================================ */

.contact-section {
    background: var(--primary-dark);
    min-height: unset !important;
    padding: 6rem 2rem !important;
    display: block !important;
    /* border-top: 1px solid rgba(255, 255, 255, 0.08) !important; */
    font-size: unset !important;
    align-items: unset !important;
    justify-content: unset !important;
    position: relative;
    overflow: hidden;
}

/* Dot texture background — matches quote-card::before exactly */
.contact-info-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
    z-index: 0;
}

.contact-info-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.089) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
    z-index: 0;
}

.contact-outer {
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ── Main card — matches quote-card structure ── */
.contact-card {
    background: #050E17;
background: linear-gradient(180deg, rgba(5, 14, 23, 1) 0%, rgba(11, 34, 56, 1) 100%);
    border: 1px solid #15293f27;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.03);
    position: relative;
}

/* Dot texture on card itself */
.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
    z-index: 0;
}

/* ── LEFT: Info Items ── */
.contact-info-left {
    padding: 2.75rem 2.5rem;
    /* border-right: 1px solid #162840; */
    background: #0000001e;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 1;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.1rem 0;
}

/* Icon box — dark bordered square matching screenshot */
.contact-icon-box {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: #0e1c34;
    border: 1px solid #1a3358;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-info-item:hover .contact-icon-box {
    border-color: rgba(201, 162, 39, 0.45);
    background: #102040;
}

.contact-icon-box svg {
    width: 20px;
    height: 20px;
    color: var(--text-white);
    stroke: var(--text-white);
    transition: stroke 0.3s ease;
}

.contact-info-item:hover .contact-icon-box svg {
    stroke: #c9a227;
}

/* Text stack */
.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-info-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #0066b4;
    text-transform: uppercase;
    line-height: 1;
}

.contact-info-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.contact-info-item:hover .contact-info-value {
    color: #c9a227;
}

/* Divider — subtle horizontal line between items */
.contact-info-divider {
    height: 1px;
    background: linear-gradient(to right, transparent 0%, #162840 30%, #162840 70%, transparent 100%);
    margin: 0;
}

/* ── RIGHT: Heading area ── */
.contact-info-right {
    padding: 3rem 3rem 3rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Label tag — matches quote-label / approach-label exactly */
.contact-info-label-tag {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.25rem;
}

.contact-info-tag-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #c9a227;
    text-transform: uppercase;
}

.contact-tag-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-tag-line {
    display: block;
    height: 2px;
    background: #c9a227;
    border-radius: 2px;
}

.contact-tag-line:first-child {
    width: 8rem;
}

.contact-tag-line:last-child {
    width: 12rem;
}

/* Title */
.contact-info-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.18;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

/* Description */
.contact-info-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.75;
    max-width: 380px;
    margin-bottom: 2rem;
}

/* CTA Button — matches btn-gold */
.contact-info-btn {
    display: inline-block;
    background: #c9a227;
    color: #0a0f1a;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid #c9a227;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    width: fit-content;
    letter-spacing: 0.2px;
}

.contact-info-btn:hover {
    background: #d4b43a;
    border-color: #d4b43a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.3);
}

/* ============================================
   RESPONSIVE — CONTACT INFO SECTION
   ============================================ */

/* Stack at 900px */
@media (max-width: 900px) {
    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-info-left {
        border-right: none;
        /* border-bottom: 1px solid #162840; */
        padding: 2rem 2rem;
    }

    .contact-info-right {
        padding: 2.25rem 2rem;
    }

    .contact-tag-line:first-child {
        width: 7rem;
    }

    .contact-tag-line:last-child {
        width: 10rem;
    }
}

/* Tighter at 600px */
@media (max-width: 600px) {
    .contact-section {
        padding: 4rem 1.25rem !important;
    }

    .contact-info-left {
        padding: 1.75rem 1.25rem;
    }

    .contact-info-right {
        padding: 1.75rem 1.25rem;
    }

    .contact-icon-box {
        width: 44px;
        height: 44px;
    }

    .contact-icon-box svg {
        width: 17px;
        height: 17px;
    }

    .contact-info-value {
        font-size: 0.88rem;
    }

    .contact-info-btn {
        width: 100%;
        text-align: center;
    }

    .contact-tag-line:first-child {
        width: 5rem;
    }

    .contact-tag-line:last-child {
        width: 8rem;
    }
}

@media (max-width: 380px) {
    .contact-info-title {
        font-size: 1.6rem;
    }

    .contact-info-item {
        gap: 0.9rem;
    }
}

/* ── Inner bottom dark bar inside card ── */
.contact-inner-bar {
    grid-column: 1 / -1;
    background: #03162A;
    /* border-top: 1px solid #0e1e35; */
    height: 3rem;
    position: relative;
    z-index: 1;
}



/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    background: var(--primary-dark);
    min-height: unset !important;
    padding: 0 !important;
    display: block !important;
    /* border-top: 1px solid rgba(255, 255, 255, 0.08) !important; */
    font-size: unset !important;
    align-items: unset !important;
    justify-content: unset !important;
    position: relative;
    overflow: visible;
    padding-bottom: 12rem !important;
}

.faq-inner {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    min-height: 560px;
}

/* ── LEFT ── */
.faq-left {
    position: relative;
    overflow: hidden;
}

.faq-left-bg {
    position: absolute;
    inset: 0;
    background-image: url('resources/large event security guards services.jpeg');
    background-size: cover;
    background-position: center top;
    z-index: 0;
}

/* Gradient: dark on right edge so it blends into right panel */
.faq-left-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(11, 33, 55, 0) 0%, rgba(11, 33, 55, 0.582) 40%, rgb(11, 33, 55) 100%),
        linear-gradient(to top, rgba(11, 33, 55, 0.85) 0%, rgba(11, 33, 55, 0.2) 50%, rgba(11, 33, 55, 0.1) 100%);
    z-index: 1;
}

.faq-left-content {
    position: relative;
    z-index: 2;
    padding: 3rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Label — matches design system */
.faq-label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.faq-label-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.faq-label-line {
    display: block;
    height: 2px;
    background: #c9a227;
    border-radius: 2px;
}

.faq-label-line:first-child {
    width: 5rem;
}

.faq-label-line:last-child {
    width: 8rem;
}

.faq-label-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #c9a227;
    text-transform: uppercase;
}

.faq-title {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.faq-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    max-width: 400px;
}

/* ── RIGHT ── */
.faq-right {
    background: #0B2137;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
}

/* ── FAQ Item ── */
.faq-item {
    border-bottom: 1px solid #0e1e35;
    overflow: hidden;
}

.faq-item:first-child {
    border-top: 1px solid #0e1e35;
}

.faq-q {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.1rem 2.5rem;
    cursor: pointer;
    transition: background 0.2s ease;
    user-select: none;
}

.faq-q:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-num {
    font-size: 1rem;
    font-weight: 700;
    color: #c9a227;
    flex-shrink: 0;
    min-width: 28px;
    line-height: 1;
}

.faq-q-text {
    font-size: 0.92rem;
    font-weight: 500;
    color: #ffffff;
    flex: 1;
    line-height: 1.4;
}

.faq-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border: 1px solid rgba(201, 163, 39, 0.164);
    border-radius: 6px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s ease, background 0.25s ease;
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    stroke: #fdc81a;
    transition: stroke 0.25s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: rgba(201, 163, 39, 0.192);
    border-color: rgba(201, 163, 39, 0.164);
}

/* Answer — animated with max-height */
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-a {
    max-height: 200px;
}

.faq-a p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.75;
    padding: 0 calc(2.5rem + 32px + 1.25rem) 1.25rem calc(2.5rem + 28px + 1.25rem);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .faq-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }

    .faq-left {
        min-height: 240px;
    }

    .faq-left-content {
        padding: 2.5rem 2rem;
    }

    .faq-left-gradient {
        background:
            linear-gradient(to bottom, rgba(8, 18, 40, 0.2) 0%, rgba(8, 18, 40, 0.88) 100%);
    }

    .faq-right {
        padding: 1.5rem 0;
    }
}

@media (max-width: 600px) {
    .faq-q {
        padding: 1rem 1.25rem;
        gap: 0.9rem;
    }

    .faq-a p {
        padding: 0 1.25rem 1rem calc(1.25rem + 28px + 0.9rem);
    }

    .faq-q-text {
        font-size: 0.85rem;
    }

    .faq-left-content {
        padding: 2rem 1.25rem;
    }

    .faq-label-line:first-child {
        width: 3rem;
    }

    .faq-label-line:last-child {
        width: 5rem;
    }
}


/* ============================================
   FOOTER STYLES
   ============================================ */

.footer {
    background: var(--footer-bg);
    position: relative;
    padding: 0 12px 12px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    border: 2px solid var(--border-color);
    border-radius: 24px;
    overflow: visible;
    background: linear-gradient(180deg, rgba(10, 15, 26, 0.98) 0%, rgba(17, 24, 39, 0.95) 100%);
    padding-bottom: 80px;
    padding-top: 80px;
}

.footer-cta-wrapper {
    position: absolute;
    top: -110px;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0 2rem;
}

.footer-cta-box {
    border: 8px solid #050E17;
    border-radius: 16px;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    margin: auto;
    max-width: 1160px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: #091B2C;
}

.footer-cta-content {
    max-width: 450px;
}

.footer-cta-content-right {
    max-width: 430px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.25rem;
}

.footer-cta-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-white);
    line-height: 1.2;
}

.footer-cta-content-right p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: right;
}

.footer-cta-btn {
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 2px solid var(--accent-gold);
    position: relative;
    z-index: 1;
}

.footer-cta-btn:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.3);
}

.footer-main {
    padding: 4rem 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.685) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.footer-dotted-v {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 2;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.footer-logo-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--text-white);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-text span:first-child {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 1px;
}

.footer-logo-text span:last-child {
    font-size: 0.7rem;
    color: var(--text-gray);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.footer-column h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item span {
    line-height: 1.5;
}

.footer-bottom-wrapper {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    max-width: 600px;
    width: 90%;
}

.footer-bottom-panel {
    background: linear-gradient(135deg, rgba(10, 15, 26, 0.98) 0%, rgba(17, 24, 39, 0.95) 100%);
    padding: 1rem 3rem;
    text-align: center;
    position: relative;
    clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
}

.footer-bottom-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--border-color);
    clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
    z-index: -1;
}

.footer-bottom-panel::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 15, 26, 0.98) 0%, rgba(17, 24, 39, 0.95) 100%);
    clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
    z-index: -1;
}

.footer-bottom-border-top {
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 2px;
    background: var(--border-color);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.copyright svg {
    width: 16px;
    height: 16px;
}

.developer {
    color: var(--text-muted);
    font-size: 0.75rem;
    position: relative;
    z-index: 1;
}

.developer a {
    color: var(--text-white);
    text-decoration: none;
    transition: ease-in 0.3s;
}

.developer a:hover {
    /* text-decoration: underline; */
    color: var(--accent-gold);
}




/* ============================================
   RESPONSIVE STYLES - FOOTER
   ============================================ */

@media (min-width: 769px) and (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-brand {
        max-width: 100%;
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand .footer-logo {
        justify-content: center;
    }

    .footer-brand .footer-description {
        max-width: 520px;
    }

    .footer-brand .footer-social {
        justify-content: center;
    }

    .footer-links a {
        font-size: 0.82rem;
        white-space: nowrap;
    }

    .footer-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .footer-cta-content-right {
        align-items: center;
    }

    .footer-cta-content-right p {
        text-align: center;
    }

    .footer-cta-content h2 {
        font-size: 1.5rem;
    }

    .footer-main {
        padding: 3rem 2rem 2rem;
    }

    .footer-main::before {
        width: 400px;
        height: 400px;
    }

    .footer-bottom-panel {
        padding: 1rem 2rem;
    }

    .footer-container {
        padding-top: 100px;
    }
}

@media (max-width: 1024px) {
    .footer-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .footer-cta-wrapper {
        padding: 0 1rem;
        top: -130px;
    }

    .footer-main {
        margin-top: 2rem;
    }

    .footer-cta-content-right {
        align-items: center;
    }

    .footer-cta-content-right p {
        text-align: center;
    }

    .footer-cta-content h2 {
        font-size: 1.5rem;
    }

    .footer-container {
        padding-top: 100px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 0 8px 8px;
    }

    .footer-container {
        border-radius: 16px;
        padding-bottom: 100px;
        padding-top: 120px;
    }

    .scroll-to-top {
        right: 20px;
    }

    .scroll-tail {
        height: 40px;
    }

    .footer-cta-wrapper {
        padding: 0 1rem;
        top: -80px;
    }

    .footer-cta-box {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-links a:hover {
        transform: translateX(0);
    }

    .footer-cta-content h2 {
        font-size: 1.25rem;
    }

    .footer-main {
        padding: 2rem 1.5rem 2rem;
        margin-top: 4rem;
    }

    .footer-main::before {
        width: 300px;
        height: 300px;
    }

    .footer-bottom-panel {
        padding: 0.75rem 1.5rem;
        clip-path: polygon(3% 0, 97% 0, 100% 100%, 0 100%);
    }

    .footer-bottom-panel::before,
    .footer-bottom-panel::after {
        clip-path: polygon(3% 0, 97% 0, 100% 100%, 0 100%);
    }

    .copyright {
        font-size: 0.75rem;
    }

    .developer {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .footer-cta-btn {
        width: 100%;
        text-align: center;
    }

    .footer-bottom-wrapper {
        max-width: 90%;
    }

    .footer-bottom-panel {
        clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
        border-radius: 12px 12px 0 0;
        padding: 1rem 1rem;
    }

    .footer-bottom-panel::before,
    .footer-bottom-panel::after {
        clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
        border-radius: 12px 12px 0 0;
    }
}

@media (max-width: 378px) {
    .footer-main {
        margin-top: 6.5rem;
    }
}

@media (max-width: 330px) {
    .footer-main {
        margin-top: 8.5rem;
    }
}




