/* ============================================
   Font Imports - Brand Font
   ============================================ */
@font-face {
    font-family: "Cy Grotesk Grand";
    src: url("./brand-font/CyGrotesk-GrandRegular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cy Grotesk Grand";
    src: url("./brand-font/CyGrotesk-GrandMedium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cy Grotesk Grand";
    src: url("./brand-font/CyGrotesk-GrandDemi.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cy Grotesk Grand";
    src: url("./brand-font/CyGrotesk-GrandBold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cy Grotesk Grand";
    src: url("./brand-font/CyGrotesk-GrandHeavy.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cy Grotesk Grand";
    src: url("./brand-font/CyGrotesk-GrandThin.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   CSS Variables
   ============================================ */
:root {
    /* Colors */
    --color-white: rgb(255, 255, 255);
    --color-black: rgb(13, 1, 0);
    --color-gray: rgb(82, 78, 78);
    --color-gray-light: rgb(144, 140, 140);
    --color-orange: rgb(255, 109, 26);
    --color-bg-light: rgb(246, 245, 245);
    --color-pink-light: rgb(251, 235, 233);

    /* Typography */
    --font-primary: "Cy Grotesk Grand", sans-serif;
    --font-secondary: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 80px;
    --spacing-4xl: 120px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-secondary);
    font-size: 12px;
    line-height: 1.7;
    color: var(--color-black);
    background-color: var(--color-white);
    overflow-x: hidden;
}

/* ============================================
   /* ============================================
   Header & Navigation
   ============================================ */

/* Single Navbar - Transparent by default, visible in hero */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    background: transparent;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.3s ease, border-bottom 0.3s ease;
    border-bottom: none;
    box-shadow: none;
    transform: translateY(0);
    will-change: transform, background-color;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    opacity: 1;
}

/* Navbar with white background when past hero section */
.navbar.navbar-page {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-orange);
    opacity: 1;
}

/* Navbar when mobile menu is open */
@media (max-width: 767px) {
    .navbar.menu-open {
        background: var(--color-white);
        border-bottom: none;
    }

    /* X lines are always dark against the white overlay */
    .navbar.menu-open .hamburger-line {
        background-color: var(--color-black);
    }

    /* Swap to dark logo on home page when overlay is open */
    .navbar.menu-open #logo-dark {
        display: none !important;
    }

    .navbar.menu-open #logo-light {
        display: block !important;
    }
}

/* Navbar hidden state - positioned above viewport (for white navbar state) */
.navbar.navbar-page.navbar-hidden {
    transform: translateY(-100%);
    opacity: 1;
}

.nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    height: 60px;
    padding: 7px 30px 8px;
    margin: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 20px;
    height: 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
}

.hamburger-line {
    width: 90%;
    height: 1.5px;
    background-color: var(--color-white);
    border-radius: 1px;
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.3s ease,
                width 0.3s ease;
}

.navbar.navbar-page .hamburger-line {
    background-color: var(--color-black);
}

/* Hamburger morphs to X when active — no display toggling */
.mobile-menu-toggle.active {
    display: flex;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(3.75px) rotate(45deg);
    width: 100%;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    transform: translateY(-3.75px) rotate(-45deg);
    width: 100%;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
}

@media (max-width: 767px) {
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--color-white);
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        visibility: hidden;
        overflow-y: auto;
        overflow-x: hidden;
        will-change: transform;
    }

    .mobile-menu-overlay::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        background-color: var(--color-orange);
        transition: width 0.6s ease-out;
        transition-delay: 0.4s;
    }

    .mobile-menu-overlay.active {
        transform: translateX(0);
        visibility: visible;
    }

    .mobile-menu-overlay.active::after {
        width: 100%;
    }

    /* Overlay header hidden — navbar always sits on top showing logo + X button */
    .mobile-menu-header {
        display: none;
    }

    .mobile-menu-logo {
        display: block;
    }

    .mobile-logo-img {
        width: 80px;
        height: 37px;
        object-fit: contain;
    }

    .mobile-menu-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 14px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .mobile-menu-close .close-icon {
        font-size: 20px;
        line-height: 1;
        color: var(--color-black);
        font-weight: 300;
        font-family: Arial, sans-serif;
    }

    .mobile-menu-list {
        list-style: none;
        padding: var(--spacing-xl) 40px;
        padding-top: 68px;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .mobile-menu-list li {
        opacity: 0;
        transform: translateY(10px);
        margin-bottom: -4px;
    }

    .mobile-menu-overlay.active .mobile-menu-list li {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .mobile-menu-overlay.active .mobile-menu-list li:nth-child(1) {
        transition-delay: 0.3s;
    }

    .mobile-menu-overlay.active .mobile-menu-list li:nth-child(2) {
        transition-delay: 0.37s;
    }

    .mobile-menu-overlay.active .mobile-menu-list li:nth-child(3) {
        transition-delay: 0.44s;
    }

    .mobile-menu-overlay.active .mobile-menu-list li:nth-child(4) {
        transition-delay: 0.51s;
    }

    .mobile-nav-link {
        font-family: "Cy Grotesk Grand", sans-serif;
        font-size: 26px;
        font-weight: 500;
        color: #2e353b;
        text-decoration: none;
        display: block;
        padding: 4px 0;
        transition: color 0.3s ease;
    }

    .mobile-nav-link:hover {
        color: var(--color-orange);
    }
}

/* Logo switching */
.logo-light {
    display: none;
}

.navbar.navbar-page .logo-dark {
    display: block;
}

.navbar.navbar-page .logo-light {
    display: none;
}

.logo-link {
    display: block;
    width: 83px;
    height: 38px;
    flex-shrink: 0;
    position: relative;
}

.logo-img {
    width: 83px;
    height: 38px;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
    margin: 0 auto;
}

.nav-link {
    font-family: "Cy Grotesk Grand", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2e3b43;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0;
}

/* Slot Machine Animation Container */
.nav-link-text {
    display: inline-block;
    overflow: hidden;
    height: 1.4em;
    line-height: 1.4;
    vertical-align: top;
    position: relative;
    width: auto;
    min-width: fit-content;
}

.nav-link-text .nav-link-inner {
    display: block;
    white-space: nowrap;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.4;
    padding: 0;
    margin: 0;
}

.nav-link-text .nav-link-inner:first-child {
    transform: translateY(0);
    color: var(--color-white);
}

.nav-link-text .nav-link-inner:last-child {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    width: 100%;
    color: var(--color-orange);
}

/* Nav links when navbar has white background */
.navbar.navbar-page .nav-link-text .nav-link-inner:first-child {
    color: #2e3b43;
}

/* Slot Machine Animation on Hover */
.nav-link:hover .nav-link-text .nav-link-inner:first-child {
    animation: slotScrollUp 0.4s ease-out forwards;
    color: var(--color-white);
}

/* Nav link hover when navbar has white background */
.navbar.navbar-page .nav-link:hover .nav-link-text .nav-link-inner:first-child {
    color: #2e3b43;
}

.nav-link:hover .nav-link-text .nav-link-inner:last-child {
    animation: slotScrollIn 0.4s ease-out forwards;
    color: var(--color-orange);
}

.nav-link:hover {
    color: var(--color-orange);
}

/* Reset when not hovering */
.nav-link:not(:hover) .nav-link-text .nav-link-inner:first-child {
    animation: slotResetDown 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    color: var(--color-white);
}

/* Nav link styles when navbar has white background */
.navbar.navbar-page .nav-link:not(:hover) .nav-link-text .nav-link-inner:first-child {
    color: #2e3b43;
}

.nav-link:not(:hover) .nav-link-text .nav-link-inner:last-child {
    animation: slotResetOut 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    color: var(--color-orange);
}

@keyframes slotScrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%);
    }
}

@keyframes slotScrollIn {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes slotResetDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes slotResetOut {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(100%);
    }
}

.nav-link.active {
    color: var(--color-white);
}

.navbar.navbar-page .nav-link.active {
    color: #2e3b43;
}

.nav-cta {
    background-color: transparent;
    color: var(--color-white) !important;
    padding: 0 14px;
    border: 1.5px solid var(--color-white);
    border-radius: 26px;
    transition: background-color var(--transition-base), border-color var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    flex-shrink: 0;
}

.nav-cta-mobile {
    display: none;
}

.nav-cta .nav-link-text .nav-link-inner {
    color: var(--color-white);
}

.nav-cta:hover {
    background-color: var(--color-orange);
    border-color: var(--color-orange);
}

.nav-cta:hover .nav-link-text .nav-link-inner {
    color: var(--color-white) !important;
}

/* CTA button when navbar has white background */
.navbar.navbar-page .nav-cta {
    background-color: transparent;
    color: #fe6e18 !important;
    border: 1.5px solid #2e353b;
}

.navbar.navbar-page .nav-cta .nav-link-text .nav-link-inner {
    color: #fe6e18;
}

/* CTA button hover when navbar has white background */
.navbar.navbar-page .nav-cta:hover {
    background-color: var(--color-orange);
    border-color: var(--color-orange);
}

.navbar.navbar-page .nav-cta:hover .nav-link-text .nav-link-inner {
    color: var(--color-white) !important;
}


/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    height: 752px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-top: 0;
    overflow: hidden;
}


.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 0 30px 0 55px;
    position: relative;
    z-index: 1;
}


.hero-content {
    max-width: 630px;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 61px;
    font-weight: 700;
    line-height: 70.15px;
    letter-spacing: -2.5px;
    color: var(--color-white);
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.hero-title.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-title.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-description {
    font-family: var(--font-primary);
    font-size: 12px;
    line-height: 1.7;
    color: var(--color-white);
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    text-align: center;
}

.hero-description.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-description.fade-in-up.visible {
    opacity: 0.9;
    transform: translateY(0);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: center;
}

.hero-buttons .btn {
    max-width: 200px;
    width: auto;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 10px 26px;
    height: 45.5px;
    border-radius: 90px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-base), color var(--transition-base);
    position: relative;
    overflow: hidden;
}


.btn-text {
    display: inline-block;
    overflow: hidden;
    height: 1.4em;
    line-height: 1.4;
    vertical-align: top;
    position: relative;
    width: auto;
    min-width: fit-content;
}

.btn-text .btn-text-inner {
    display: block;
    white-space: nowrap;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.4;
    padding: 0;
    margin: 0;
}

.btn-text .btn-text-inner:first-child {
    transform: translateY(0);
}

.btn-text .btn-text-inner:last-child {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    width: 100%;
}

/* Button Slot Machine Animation on Hover */
.btn:hover .btn-text .btn-text-inner:first-child {
    animation: slotScrollUp 0.4s ease-out forwards;
}

.btn:hover .btn-text .btn-text-inner:last-child {
    animation: slotScrollIn 0.4s ease-out forwards;
}

/* Reset when not hovering */
.btn:not(:hover) .btn-text .btn-text-inner:first-child {
    animation: slotResetDown 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.btn:not(:hover) .btn-text .btn-text-inner:last-child {
    animation: slotResetOut 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-white);
}

.btn-primary .btn-text .btn-text-inner:first-child {
    color: var(--color-white);
}

.btn-primary .btn-text .btn-text-inner:last-child {
    color: var(--color-orange);
}

.btn-primary:hover {
    background-color: var(--color-white);
}

.btn-primary:hover .btn-text .btn-text-inner:last-child {
    color: var(--color-orange);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-black);
}

.btn-secondary .btn-text .btn-text-inner:first-child {
    color: var(--color-black);
}

.btn-secondary .btn-text .btn-text-inner:last-child {
    color: var(--color-orange);
}

.btn-secondary:hover {
    background-color: var(--color-orange);
}

.btn-secondary:hover .btn-text .btn-text-inner:last-child {
    color: var(--color-white);
}

.btn-load-more {
    background-color: transparent;
    color: #2e353b;
    border: 1.5px solid #2e353b;
    border-radius: 26px;
    padding: 12px 24px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.4s ease-out, border-color 0.4s ease-out;
}

.btn-load-more-text {
    display: inline-block;
    overflow: hidden;
    height: 1.4em;
    line-height: 1.4;
    vertical-align: top;
    position: relative;
    width: auto;
    min-width: fit-content;
}

.btn-load-more-inner {
    display: block;
    white-space: nowrap;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.4;
    padding: 0;
    margin: 0;
}

.btn-load-more-inner:first-child {
    transform: translateY(0);
    color: #2e353b;
}

.btn-load-more-inner:last-child {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    width: 100%;
    color: var(--color-white);
}

/* Slot Machine Animation on Hover */
.btn-load-more:hover {
    background-color: var(--color-orange);
    border: none;
}

.btn-load-more:hover .btn-load-more-inner:first-child {
    animation: slotScrollUp 0.4s ease-out forwards;
    color: #2e353b;
}

.btn-load-more:hover .btn-load-more-inner:last-child {
    animation: slotScrollIn 0.4s ease-out forwards;
    color: var(--color-white);
}

/* Reset when not hovering */
.btn-load-more:not(:hover) {
    border: 1.5px solid #2e353b;
}

.btn-load-more:not(:hover) .btn-load-more-inner:first-child {
    animation: slotResetDown 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    color: #2e353b;
}

.btn-load-more:not(:hover) .btn-load-more-inner:last-child {
    animation: slotResetOut 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    color: var(--color-white);
}

/* ============================================
   Features Section
   ============================================ */
.features-section {
    padding: 80px 30px 120px;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 40px;
    background-color: var(--color-bg-light);
    border-radius: 16px;
    width: 100%;
    max-width: 410.656px;
}

.feature-card-orange {
    background-color: var(--color-orange);
}

.feature-icon-wrapper {
    margin-bottom: 0;
}

.feature-icon-bg {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.feature-icon-bg-transparent {
    background-color: transparent;
}

.feature-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.feature-icon-bg-white {
    background-color: transparent;
}

.feature-icon-white {
    filter: none;
}

.feature-icon-bg-white-circle {
    background-color: var(--color-white);
}

.feature-icon-orange-no-filter {
    filter: none !important;
}

.feature-icon-reliability {
    filter: none !important;
}

.feature-icon-orange {
    filter: none !important;
}

.feature-title {
    font-family: var(--font-primary);
    font-size: 31px;
    font-weight: 500;
    line-height: 43.4px;
    letter-spacing: -1px;
    color: var(--color-black);
    margin: 0;
    text-align: start;
}

.feature-description {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 400;
    line-height: 22.1px;
    color: rgb(111, 111, 111);
    margin: 0;
    text-align: start;
}

.feature-title-white {
    color: var(--color-white);
}

.feature-description-white {
    color: var(--color-white);
    opacity: 0.9;
}

/* Feature Card Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(1).fade-in-up.visible {
    transition-delay: 0.1s;
}

.feature-card:nth-child(2).fade-in-up.visible {
    transition-delay: 0.2s;
}

.feature-card:nth-child(3).fade-in-up.visible {
    transition-delay: 0.3s;
}

/* Service Card Animations */
.service-card.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.service-card.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(1).fade-in-up {
    transition-delay: 0s;
}

.service-card:nth-child(2).fade-in-up {
    transition-delay: 0.1s;
}

.service-card:nth-child(3).fade-in-up {
    transition-delay: 0.2s;
}

.service-card:nth-child(4).fade-in-up {
    transition-delay: 0.3s;
}

.service-card:nth-child(5).fade-in-up {
    transition-delay: 0.4s;
}

.service-card:nth-child(6).fade-in-up {
    transition-delay: 0.5s;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    padding: var(--spacing-4xl) 30px;
    background-color: var(--color-white);
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--spacing-3xl);
}

.about-image {
    flex: 0 0 50%;
    aspect-ratio: 1.09 / 1;
    border-radius: 16px;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    flex: 1;
}

.about-title {
    font-family: var(--font-primary);
    font-size: 61px;
    font-weight: 700;
    line-height: 70.15px;
    letter-spacing: -2.5px;
    color: var(--color-black);
    margin-bottom: var(--spacing-xl);
}

.about-title.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-title.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-description {
    font-family: var(--font-primary);
    font-size: 12px;
    line-height: 1.7;
    color: #6c6c6c;
    margin-bottom: var(--spacing-2xl);
}

.about-description.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-description.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.service-list-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.service-list-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.service-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.service-list-item p {
    font-family: "Cy Grotesk Grand", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-gray);
}

/* ============================================
   Clients Section
   ============================================ */
.clients-section {
    padding: var(--spacing-4xl) 30px;
    background-color: var(--color-bg-light);
}

.clients-container {
    max-width: 1280px;
    margin: 0 auto;
}

.clients-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.clients-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -2px;
    color: var(--color-black);
    margin-bottom: var(--spacing-md);
}

.clients-title.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.clients-title.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.clients-description {
    font-family: var(--font-primary);
    font-size: 12px;
    line-height: 1.7;
    color: #6c6c6c;
}

.clients-description.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.clients-description.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.clients-scroll-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.clients-scroll {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: scrollClients 30s linear infinite;
    width: fit-content;
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    background-color: var(--color-white);
    border-radius: 8px;
    flex-shrink: 0;
    width: 200px;
    height: 120px;
}

.client-logo:hover {
    transform: scale(1.05);
    z-index: 1;
    position: relative;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-base);
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    padding: var(--spacing-4xl) 30px;
    background-color: var(--color-white);
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -2px;
    color: var(--color-black);
    margin-bottom: var(--spacing-md);
}

.section-title.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-title.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-description {
    font-family: var(--font-primary);
    font-size: 12px;
    line-height: 1.7;
    color: #6c6c6c;
}

.section-description.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-description.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.service-card {
    background-color: transparent;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all;
    display: block;
    position: relative;
    width: 100%;
}

.service-image {
    aspect-ratio: 1.19 / 1;
    overflow: hidden;
    border-radius: 16px;
    position: relative;
}

.service-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 16px;
}

.service-card:hover .service-image > img {
    transform: scale(1.1);
}

.service-content {
    position: absolute;
    bottom: var(--spacing-md);
    left: var(--spacing-md);
    right: var(--spacing-md);
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-lg);
    background-color: var(--color-white);
    border-radius: 12px;
    transition: background-color 0.4s ease-out;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.service-card:hover .service-content {
    background-color: var(--color-orange);
}

.service-title {
    font-family: "Cy Grotesk Grand", sans-serif;
    font-size: 31px;
    font-weight: 500;
    color: #0d0100;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Service Title Slot Machine Animation */
.service-title-text {
    display: inline-block;
    overflow: visible;
    line-height: 1.2;
    vertical-align: top;
    position: relative;
    width: auto;
    min-width: fit-content;
}

.service-title-text .service-title-inner {
    display: block;
    white-space: normal;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    line-height: 1.2;
    padding: 0;
    margin: 0;
    letter-spacing: -0.5px;
    color: #0d0100;
    transition: color 0.4s ease-out;
}

.service-card:hover .service-title-text .service-title-inner {
    color: var(--color-white);
}

.service-arrow {
    display: block;
    width: 32px;
    height: auto;
    max-height: 0;
    overflow: hidden;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-10px);
    /* on mouse leave: arrow fades out instantly, then pill collapses */
    transition: opacity 0.15s ease-out, transform 0.15s ease-out, max-height 0.35s ease-out 0.1s;
}

.service-card:hover .service-arrow {
    max-height: 40px;
    opacity: 1;
    transform: translateX(0);
    /* on mouse enter: pill expands first, then arrow slides in */
    transition: max-height 0.35s ease-out, opacity 0.3s ease-out 0.3s, transform 0.3s ease-out 0.3s;
}

.load-more-container {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    position: relative;
    max-width: 1280px;
    margin: var(--spacing-2xl) auto 0;
    padding: var(--spacing-4xl);
    background-image: url('Web Resources/CTA BG - Desktop.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
}

.cta-spacer-mobile {
    display: none;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--spacing-3xl);
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -2px;
    color: var(--color-white);
    margin-bottom: var(--spacing-2xl);
    display: flex;
    flex-direction: column;
}

.cta-title-line {
    display: block;
}

.cta-title.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: transform, opacity;
}

.cta-title.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-section .btn.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: 0.2s;
    will-change: transform, opacity;
}

.cta-section .btn.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--color-white);
    padding: 60px 10px 99px;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    gap: var(--spacing-3xl);
    align-items: flex-start;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.footer-lists {
    display: flex;
    gap: var(--spacing-3xl);
    list-style: none;
    flex: 1;
}

.footer-list {
    flex: 1;
}

.footer-list-title {
    font-family: "Cy Grotesk Grand", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2e353b;
    line-height: 30.6px;
    margin-bottom: var(--spacing-md);
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-link {
    font-family: "Cy Grotesk Grand", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--color-gray);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-link:hover {
    color: var(--color-orange);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.contact-item .contact-icon {
    align-self: flex-start;
    margin-top: 4px;
}

.contact-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(18%) sepia(3%) saturate(2000%) hue-rotate(180deg) brightness(90%) contrast(95%);
}

.contact-label {
    font-family: "Cy Grotesk Grand", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2e353b;
    line-height: 30.6px;
    margin-bottom: var(--spacing-xs);
}

.contact-text {
    font-family: "Cy Grotesk Grand", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--color-gray);
    margin-bottom: var(--spacing-xs);
}

.footer-line {
    height: 1px;
    background-color: rgb(180, 180, 180);
    margin: var(--spacing-3xl) 0 var(--spacing-xl) 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-arrow {
    width: auto;
    height: auto;
    font-size: 12px;
    color: var(--color-gray);
    opacity: 1;
}

.footer-copyright-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--spacing-sm);
}

.footer-copyright {
    font-family: "Cy Grotesk Grand", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgb(180, 180, 180);
    text-align: right;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    justify-content: flex-end;
}

.credits-text {
    font-family: "Cy Grotesk Grand", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--color-gray);
}

.credits-logo {
    height: 16px;
    width: auto;
    object-fit: contain;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 48px;
        line-height: 1.2;
        letter-spacing: -1.5px;
    }

    .about-title {
        font-size: 48px;
        line-height: 1.2;
        letter-spacing: -1.5px;
    }

    .about-container {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-container {
        flex-direction: column;
    }

    .cta-image {
        width: 100%;
    }
}

@media (max-width: 767px) {

    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        padding: 7px 40px 8px;
    }

    .logo-link {
        width: 80px;
        height: 37px;
    }

    .logo-img {
        width: 80px;
        height: 37px;
    }

    .nav-menu {
        display: none;
    }

    .nav-link {
        font-size: 16px;
        width: 100%;
        justify-content: flex-start;
        height: auto;
        padding: var(--spacing-sm) 0;
        color: var(--color-black);
    }

    .nav-link-text .nav-link-inner:first-child {
        color: var(--color-black);
    }

    .nav-link-text .nav-link-inner:last-child {
        color: var(--color-orange);
    }

    .nav-cta {
        display: none;
    }

    .nav-cta-mobile {
        display: flex !important;
        width: 100%;
        margin-top: var(--spacing-md);
        padding: var(--spacing-md);
        background-color: var(--color-orange);
        color: var(--color-white) !important;
        border: none;
        border-radius: 8px;
        justify-content: center;
    }

    .nav-cta-mobile .nav-link-text .nav-link-inner {
        color: var(--color-white) !important;
    }

    .navbar.navbar-page .nav-link-text .nav-link-inner:first-child {
        color: var(--color-black);
    }

    /* Ensure mobile menu is always white background */
    .navbar .nav-menu {
        background-color: var(--color-white);
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        letter-spacing: -1px;
        margin-bottom: var(--spacing-lg);
    }

    .hero-description {
        font-size: 12px;
        margin-bottom: var(--spacing-xl);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: var(--spacing-md);
        justify-content: center;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        text-align: center;
    }

    .hero-description {
        text-align: center;
    }

    .hero-buttons .btn {
        max-width: 180px;
        width: auto;
    }

    .btn {
        width: auto;
        justify-content: center;
    }

    .features-section {
        padding: 60px 20px 80px;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .feature-card {
        padding: var(--spacing-xl);
        max-width: 100%;
    }

    .feature-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .feature-description {
        font-size: 12px;
    }

    .about-section {
        padding: 60px 20px;
    }

    .about-container {
        flex-direction: column;
        gap: var(--spacing-xl);
    }

    .about-image {
        width: 100%;
        flex: none;
    }

    .about-title {
        font-size: 32px;
        line-height: 1.2;
        letter-spacing: -1px;
        margin-bottom: var(--spacing-lg);
    }

    .about-description {
        margin-bottom: var(--spacing-lg);
    }

    .about-services {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .clients-section {
        padding: 60px 20px;
    }

    .clients-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .clients-scroll-wrapper {
        margin-top: var(--spacing-xl);
    }

    .client-logo {
        width: 150px;
        height: 90px;
        padding: var(--spacing-md);
    }

    .services-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .section-description {
        margin-bottom: var(--spacing-xl);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .service-content {
        padding: var(--spacing-md);
        bottom: var(--spacing-md);
        left: var(--spacing-md);
        right: var(--spacing-md);
    }

    .service-title {
        font-size: 24px;
        line-height: 1.2;
    }

    .service-image {
        aspect-ratio: 1.19 / 1;
    }

    .cta-section {
        padding: 60px 24px !important;
        margin: 20px 20px 60px;
        border-radius: 16px;
        position: relative;
        background-image: url('Web Resources/CTA BG - Mobile.jpg');
        background-size: 130%;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 400px;
        margin-top: 60px !important;
    }

    .cta-section::before {
        display: none;
    }

    .cta-container {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .cta-spacer-mobile {
        display: block;
        flex: 1;
        min-height: 250px;
    }

    .cta-content {
        text-align: center;
        flex: 0 0 auto;
    }

    .cta-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: var(--spacing-xl);
        text-align: center;
    }

    .footer {
        padding: 40px 20px 60px;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--spacing-2xl);
    }

    .footer-lists {
        flex-direction: column;
        gap: var(--spacing-2xl);
        width: 100%;
    }

    .footer-list {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .footer-social {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-copyright-wrapper {
        align-items: center;
        width: 100%;
    }

    .footer-copyright {
        text-align: center;
    }

    .footer-credits {
        justify-content: center;
    }
}

/* ============================================
   Services Page Styles
   ============================================ */

/* Services Hero Section */
.services-hero-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-top: 60px;
    overflow: hidden;
}

.services-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.services-hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.services-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.services-hero-content {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.services-hero-title {
    font-family: var(--font-primary);
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -2px;
    color: var(--color-white);
    margin-bottom: 20px;
    text-align: center;
}

.services-hero-description {
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-white);
    margin-bottom: 32px;
    opacity: 0.95;
    text-align: center;
}

/* Services Grid Section */
.services-grid-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.services-grid-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Quote Section */
.quote-section {
    padding: 80px 0;
    background-color: var(--color-bg-light);
}

.quote-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.quote-image {
    position: relative;
    width: 100%;
    min-height: 100%;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.quote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
}

.quote-image-title {
    font-family: var(--font-primary);
    font-size: 30px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-white);
    margin-bottom: 16px;
}

.quote-image-description {
    font-family: var(--font-primary);
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-white);
    opacity: 0.9;
    margin-bottom: 20px;
}

.quote-arrow-icon {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    object-fit: contain;
    display: inline-block;
}

.quote-form {
    background-color: #2e353b;
    padding: 50px 40px;
    border-radius: 12px;
}

.quote-form-title {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-white);
    margin-bottom: 12px;
}

.quote-form-description {
    font-family: var(--font-primary);
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.service-quote-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;
    color: var(--color-white);
    opacity: 0.9;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-primary);
    font-size: 13px;
    padding: 12px 0;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--color-orange);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M1.41 0L6 4.59L10.59 0L12 1.41l-6 6l-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 20px;
}

.form-group select option {
    background-color: #2e353b;
    color: var(--color-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    font-family: var(--font-primary);
}

.btn-submit {
    width: 100%;
    margin-top: 8px;
}

/* Expert CTA Section */
.expert-cta-section {
    padding: 0;
    background-color: #374046;
}

.expert-cta-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.expert-cta-content {
    padding: 80px 60px;
}

.expert-cta-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1.5px;
    color: var(--color-white);
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.expert-cta-title-line {
    display: block;
}

.expert-cta-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.expert-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Responsive Styles */
@media (max-width: 767px) {
    .services-hero-section {
        height: 500px;
        margin-top: 60px;
    }

    .services-hero-title {
        font-size: 36px;
        letter-spacing: -1px;
        margin-bottom: 16px;
    }

    .services-hero-description {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .services-grid-section {
        padding: 60px 0;
    }

    .quote-section {
        padding: 60px 0;
    }

    .quote-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0;
    }

    .quote-image {
        height: auto;
        min-height: 350px;
        margin: 0 20px;
        width: auto;
    }

    .quote-image-overlay {
        padding: 30px;
    }

    .quote-image-title {
        font-size: 24px;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .quote-image-description {
        font-size: 11px;
        font-weight: 400;
        font-style: normal;
        line-height: 1.5;
        opacity: 0.85;
        margin-bottom: 15px;
    }

    .quote-form {
        padding: 40px 30px;
        margin: 0 20px;
    }

    .quote-form-title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .quote-form-description {
        font-size: 12px;
        margin-bottom: 24px;
    }

    .quote-image,
    .quote-form {
        min-width: 0;
        width: 90%;
        margin: 0 auto;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        font-size: 12px;
        padding: 10px 12px;
    }

    .form-group select option {
        font-size: 12px;
        max-width: 90vw;
    }

    .service-quote-form {
        gap: 20px;
    }

    .expert-cta-container {
        grid-template-columns: 1fr;
    }

    .expert-cta-content {
        padding: 60px 30px;
    }

    .expert-cta-title {
        font-size: 32px;
        letter-spacing: -1px;
        margin-bottom: 24px;
    }

    .expert-cta-image {
        min-height: 350px;
    }
}

/* ============================================
   Form Success Message
   ============================================ */
.form-success-message {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(255, 109, 26, 0.05) 0%, rgba(255, 109, 26, 0.1) 100%);
    border-radius: 16px;
    border: 2px solid var(--color-orange);
    animation: successFadeIn 0.6s ease-out;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background-color: var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--color-white);
    font-weight: bold;
    animation: successIconPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.form-success-message h3 {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 12px;
}

.form-success-message p {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.6;
    max-width: 450px;
    margin: 0 auto;
}

@keyframes successFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes successIconPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .form-success-message {
        padding: 40px 20px;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }

    .form-success-message h3 {
        font-size: 24px;
    }

    .form-success-message p {
        font-size: 12px;
    }
}

/* ============================================
   Contact Page Styles
   ============================================ */

/* Contact Hero Section */
.contact-hero-section {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 120px;
    margin-top: 60px;
    overflow: visible;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.contact-hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.contact-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.contact-hero-content {
    max-width: 630px;
    text-align: center;
    margin: 0 auto 60px;
}

.contact-hero-title {
    font-family: var(--font-primary);
    font-size: 61px;
    font-weight: 700;
    line-height: 70.15px;
    letter-spacing: -2.5px;
    color: var(--color-white);
    margin-bottom: 24px;
    text-align: center;
}

.contact-hero-description {
    font-family: var(--font-primary);
    font-size: 12px;
    line-height: 1.7;
    color: var(--color-white);
    opacity: 0.9;
    text-align: center;
}

/* Contact Form Card */
.contact-form-card {
    max-width: 650px;
    margin: 0 auto;
    background: rgba(46, 53, 59, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 50px 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-form-title {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 12px;
    text-align: left;
}

.contact-form-description {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 400;
    color: var(--color-white);
    opacity: 0.85;
    margin-bottom: 32px;
    text-align: left;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form label {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 400;
    color: var(--color-white);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    font-family: var(--font-primary);
    font-size: 13px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-orange);
    background: rgba(255, 255, 255, 0.12);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

.contact-form select option {
    background: #2e353b;
    color: var(--color-white);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn-submit {
    margin-top: 8px;
    width: 100%;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .contact-hero-section {
        min-height: auto;
        padding: 60px 0 80px;
        margin-top: 60px;
    }

    .contact-hero-content {
        margin-bottom: 40px;
    }

    .contact-hero-title {
        font-size: 36px;
        line-height: 1.2;
        letter-spacing: -1.5px;
        margin-bottom: 16px;
    }

    .contact-hero-description {
        font-size: 11px;
    }

    .contact-form-card {
        padding: 35px 25px;
    }

    .contact-form-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .contact-form-description {
        font-size: 11px;
        margin-bottom: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-form textarea {
        font-size: 12px;
        padding: 12px 16px;
    }
}

/* ============================================
   About Us Page Styles
   ============================================ */

/* About Hero Section */
.about-hero-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    margin-top: 60px;
    background-color: #3e3e3e;
    overflow: hidden;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.about-hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.about-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.about-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.about-hero-content {
    max-width: 800px;
}

.about-hero-title {
    font-family: var(--font-primary);
    font-size: 54px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--color-white);
    margin-bottom: 0;
}

/* Company Intro Section */
.company-intro-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.company-intro-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

.company-intro-label {
    font-family: var(--font-primary);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--color-orange);
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.company-intro-headline {
    font-family: "Cy Grotesk Grand", sans-serif;
    font-size: 52px;
    font-weight: 500;
    color: var(--color-black);
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin: 0 0 60px;
}

.company-intro-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding-top: 48px;
    border-top: 1px solid #e0e0e0;
}

.company-intro-lead p {
    font-family: "Cy Grotesk Grand", sans-serif;
    font-size: 20px;
    color: var(--color-black);
    line-height: 1.55;
    font-weight: 400;
    margin: 0;
    letter-spacing: -0.3px;
}

.company-intro-detail p {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #6a6a6a;
    line-height: 1.75;
    margin: 0 0 20px;
}

.company-intro-detail p:last-child {
    margin-bottom: 0;
}

/* Business Section */
.business-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.business-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

.business-section .section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -1.5px;
    color: var(--color-black);
}

.business-section .section-subtitle {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-orange);
    margin-bottom: 40px;
    font-weight: 500;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 16px;
}

.business-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.business-icon {
    color: var(--color-orange);
    font-size: 14px;
    font-weight: bold;
}

.business-text {
    font-family: var(--font-primary);
    font-size: 13px;
    color: #4a4a4a;
    font-weight: 400;
}

/* Objective Section */
.objective-section {
    padding: 60px 0;
    background-color: var(--color-white);
}

.objective-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

.objective-section .section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: var(--color-black);
}

.objective-text {
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
    max-width: 800px;
}

/* Accordion Section */
.accordion-section {
    padding: 0 0 80px;
    background-color: var(--color-white);
}

.accordion-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    border-radius: 12px;
    overflow: hidden;
    background-color: #f5f5f5;
    transition: all 0.3s ease;
}

.accordion-item.active {
    background-color: var(--color-orange);
    color: var(--color-white);
}

.accordion-header {
    padding: 24px 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.accordion-icon-wrapper {
    margin-right: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-img-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0);
    /* Black icon default */
    transition: filter 0.3s ease;
}

.accordion-item.active .accordion-img-icon {
    filter: brightness(0) invert(1);
    /* White icon when active */
}

.accordion-title {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 600;
    flex: 1;
    color: var(--color-black);
    transition: color 0.3s ease;
    letter-spacing: -0.5px;
}

.accordion-item.active .accordion-title {
    color: var(--color-white);
}

.accordion-toggle {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
    transform: rotate(-90deg);
    transition: transform 0.3s ease, filter 0.3s ease;
    transition: transform 0.3s ease, color 0.3s ease;
}

.accordion-item.active .accordion-toggle {
    transform: rotate(0deg);
    filter: brightness(0) invert(1);
    /* Or whatever rotation fits the design */
}

.accordion-content {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 0.4s ease, opacity 0.4s ease;
}

.accordion-content p {
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 1.6;
    padding: 0 30px 30px 70px;
    /* Align with text start */
    color: #4a4a4a;
}

.accordion-item.active .accordion-content p {
    color: rgba(255, 255, 255, 0.95);
}

/* Mission List Styles */
.mission-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 30px 20px 70px;
}

.mission-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mission-icon {
    color: var(--color-white);
    font-size: 12px;
}

.mission-item p {
    padding: 0;
    font-size: 13px;
    margin: 0;
}

.mission-footer {
    padding: 10px 0 0 0 !important;
    font-size: 13px !important;
    opacity: 0.9;
    font-style: normal;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 30px 30px 70px;
    text-align: left !important;
}


/* Mobile Responsive Styles For About Page */
@media (max-width: 767px) {
    .about-hero-section {
        height: 400px;
    }

    .about-hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .company-intro-section {
        padding: 70px 0;
    }

    .company-intro-headline {
        font-size: 32px;
        letter-spacing: -0.8px;
        margin-bottom: 40px;
    }

    .company-intro-body {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .company-intro-lead p {
        font-size: 17px;
    }

    .business-section {
        padding: 60px 0;
    }

    .business-section .section-title {
        font-size: 28px;
    }

    .business-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .accordion-header {
        padding: 20px;
    }

    .accordion-title {
        font-size: 20px;
    }

    .accordion-content p,
    .mission-list,
    .mission-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .mission-list {
        padding-bottom: 20px;
    }

    /* Hide decorative iconography in accordion on mobile if needed or adjust sizing */
    .accordion-icon-wrapper {
        width: 20px;
        height: 20px;
        margin-right: 12px;
    }
}



/* Global Overflow Fix */
html,
body {
    overflow-x: hidden;
    width: 100%;
}

/* ============================================
   Footer Contact Link Display Fix
   ============================================ */

.contact-item .footer-link {
    display: block;
}

/* ============================================
   Accreditation Section — Redesigned
   ============================================ */

.accreditation-section {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.accreditation-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

.accreditation-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 56px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.accreditation-stat {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 36px 32px;
    border-right: 1px solid #e0e0e0;
}

.accreditation-stat:first-child {
    padding-left: 0;
}

.accreditation-stat:last-child {
    border-right: none;
}

.accreditation-value {
    font-family: "Cy Grotesk Grand", sans-serif;
    font-size: 22px;
    color: var(--color-black);
    font-weight: 500;
    letter-spacing: -0.3px;
}

.accreditation-label {
    font-family: var(--font-primary);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #999;
    font-weight: 500;
}

.accreditation-cidb {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.accreditation-cidb-label {
    font-family: var(--font-primary);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #999;
    font-weight: 500;
    white-space: nowrap;
}

.cidb-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cidb-badge {
    font-family: "Cy Grotesk Grand", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-orange);
    border: 1px solid var(--color-orange);
    border-radius: 100px;
    padding: 6px 14px;
    letter-spacing: 0.5px;
}

/* ============================================
   Addresses Section — Redesigned
   ============================================ */

.addresses-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.addresses-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

.addresses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 56px;
    border-top: 1px solid #e0e0e0;
}

.address-card {
    padding: 40px 40px 40px 0;
    border-right: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
}

.address-card:last-child {
    border-right: none;
}

.address-card:nth-child(n+2) {
    padding-left: 40px;
    padding-right: 40px;
}

.address-card:last-child {
    padding-right: 0;
}

.address-type {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 600;
    color: var(--color-orange);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: block;
    margin-bottom: 16px;
}

.address-city {
    font-family: "Cy Grotesk Grand", sans-serif;
    font-size: 42px;
    font-weight: 500;
    color: var(--color-black);
    line-height: 1;
    margin: 0 0 20px;
    letter-spacing: -1px;
}

.address-details {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #6a6a6a;
    line-height: 1.8;
    font-style: normal;
}

/* ============================================
   Company Contact Details Section — Redesigned
   ============================================ */

.company-contact-section {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.company-contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

.company-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid #e0e0e0;
}

.company-contact-reach {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.company-contact-label {
    font-family: var(--font-primary);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #999;
    font-weight: 500;
    display: block;
    margin-bottom: 16px;
}

.company-contact-phone {
    font-family: "Cy Grotesk Grand", sans-serif;
    font-size: 28px;
    color: var(--color-black);
    font-weight: 500;
    letter-spacing: -0.5px;
    line-height: 1;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.company-contact-phone:hover {
    color: var(--color-orange);
}

.company-contact-email {
    font-family: var(--font-primary);
    font-size: 16px;
    color: #6a6a6a;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.company-contact-email:hover {
    color: var(--color-orange);
}

.company-contact-leadership {
    display: flex;
    flex-direction: column;
}

.leadership-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 8px;
}

.leader-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 28px 0;
    border-bottom: 1px solid #e0e0e0;
}

.leader-item:first-child {
    padding-top: 0;
}

.leader-item:last-child {
    border-bottom: none;
}

.leader-role {
    font-family: var(--font-primary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--color-orange);
    font-weight: 600;
}

.leader-name {
    font-family: "Cy Grotesk Grand", sans-serif;
    font-size: 24px;
    color: var(--color-black);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .accreditation-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .accreditation-stats {
        grid-template-columns: 1fr;
    }

    .accreditation-stat {
        padding: 24px 0;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .accreditation-stat:last-child {
        border-bottom: none;
    }

    .accreditation-stat:first-child {
        padding-left: 0;
    }

    .addresses-grid {
        grid-template-columns: 1fr;
    }

    .address-card {
        padding: 32px 0;
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
    }

    .address-card:last-child {
        border-bottom: none;
        padding-right: 0;
    }

    .address-card:nth-child(n+2) {
        padding-left: 0;
        padding-right: 0;
    }

    .address-city {
        font-size: 32px;
    }

    .company-contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .company-contact-phone {
        font-size: 24px;
        letter-spacing: -0.3px;
    }
}