:root {
    --navy: #03143e;
    --navy-dark: #01091e;
    --navy-light: #09266e;
    --orange: #fd7b12;
    --orange-light: #ff9438;
    --orange-dark: #d65f00;
    --teal: #fd7b12;
    --teal-light: #ff9438;
    --green: #fd7b12;
    --green-light: #ff9438;
    --grey: #F6F8FA;
    --grey-dark: #e4e8ec;
    --text-dark: #03143e;
    --text-body: #4a5568;
    --text-light: #718096;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(3, 20, 62, 0.06);
    --shadow-md: 0 8px 24px rgba(3, 20, 62, 0.08);
    --shadow-lg: 0 20px 60px rgba(3, 20, 62, 0.12);
    --shadow-xl: 0 30px 80px rgba(3, 20, 62, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/* Custom modern selection color */
::selection {
    background: rgba(253, 123, 18, 0.22);
    color: var(--navy);
}

::-moz-selection {
    background: rgba(253, 123, 18, 0.22);
    color: var(--navy);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    -webkit-tap-highlight-color: transparent;
}

section,
[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

a:focus,
a:active,
button:focus,
button:active {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

button,
.btn,
.nav-links a,
.service-card,
.faq-question,
.mobile-menu-toggle,
.dropdown-toggle,
.floating-whatsapp,
.synergy-card,
.industry-card {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    outline: none !important;
}

button:focus-visible,
a:focus-visible {
    outline: none !important;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--orange);
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--navy), var(--orange));
    border-radius: 2px;
}

.section-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-title span {
    background: linear-gradient(135deg, var(--navy), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    max-width: 760px;
    color: var(--text-body);
    line-height: 1.8;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.btn:focus,
.btn:active,
.btn:focus-visible {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    box-shadow: 0 8px 24px rgba(3, 20, 62, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(3, 20, 62, 0.35);
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}

.btn-secondary {
    background: var(--white);
    color: var(--navy);
    border-color: var(--navy);
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-teal {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
    box-shadow: 0 8px 24px rgba(253, 123, 18, 0.25);
}

.btn-teal:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(253, 123, 18, 0.35);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: transform 0.25s ease-out, background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    max-height: 90px;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-bar {
    width: 100%;
    height: 3px;
    background-color: var(--navy);
    border-radius: 3px;
    transition: var(--transition);
    transform-origin: left center;
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
    transform: rotate(45deg) translate(1px, -1px);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
    transform: rotate(-45deg) translate(1px, 1px);
}

.mobile-nav-cta {
    display: none;
    margin-top: 12px;
    width: 100%;
}

.mobile-nav-cta .btn {
    width: 100%;
    justify-content: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--navy), var(--orange));
    transition: width 0.3s;
    border-radius: 2px;
}

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

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: 270px;
    background: #ffffff;
    border: 1px solid rgba(3, 20, 62, 0.08);
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(3, 20, 62, 0.14);
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1100;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-top: 1px solid rgba(3, 20, 62, 0.08);
    border-left: 1px solid rgba(3, 20, 62, 0.08);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(6px);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #03143e;
    transition: all 0.2s ease;
    border-radius: 0;
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a:hover {
    background: #f0f4fa;
    color: #fd7b12;
    padding-left: 24px;
}

/* Button Variants */
.btn-orange-pill {
    background: linear-gradient(135deg, #fd7b12, #ff9438);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 40px;
    border: none;
    box-shadow: 0 10px 28px rgba(253, 123, 18, 0.35);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-orange-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(253, 123, 18, 0.5);
    background: linear-gradient(135deg, #e06300, #fd7b12);
}

.btn-navy-outline {
    background: transparent;
    color: #03143e;
    border: 2px solid #03143e;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 30px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-navy-outline:hover {
    background: #03143e;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-inquiry-orange {
    background: linear-gradient(135deg, #fd7b12, #ff9438);
    color: #ffffff;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 28px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    box-shadow: 0 10px 28px rgba(253, 123, 18, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.btn-inquiry-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(253, 123, 18, 0.6);
    background: linear-gradient(135deg, #e06300, #fd7b12);
}

/* Hero Section */
.hero-style {
    position: relative;
    min-height: 720px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 140px;
    padding-bottom: 90px;
    background: #f0f4fa;
    overflow: visible;
}

.hero-bg-media {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #f0f4fa 0%, #f0f4fa 31%, rgba(240, 244, 250, 0.92) 37%, rgba(240, 244, 250, 0.2) 57%, transparent 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1380px;
    width: 100%;
    margin: 0 auto;
    padding-top: 10px;
    padding-bottom: 20px;
}

.hero-content-box {
    max-width: 480px;
    margin-left: 0;
    position: relative;
    z-index: 5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    background: rgba(253, 123, 18, 0.12);
    border: 1px solid rgba(253, 123, 18, 0.28);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #d65f00;
    margin-bottom: 20px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #fd7b12;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(253, 123, 18, 0.25);
    animation: pulse 2s infinite;
}

.hero-title-main {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 800;
    color: #03143e;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.text-gradient-orange {
    background: linear-gradient(135deg, #fd7b12, #ff9438);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc-main {
    font-size: 15px;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
    margin-top: 6px;
}

.hero-partners-bar {
    position: relative;
    z-index: 2;
    background: rgba(3, 20, 62, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 22px 0;
    margin-top: auto;
}

.partners-subtext {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.partners-logo-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.partner-logo-item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.partner-logo-item small {
    font-size: 9px;
    font-weight: 700;
    color: #fd7b12;
    display: block;
    line-height: 1;
}

.partner-logo-item:hover {
    color: #FFFFFF;
    transform: scale(1.05);
}

.hero-desc {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 40px;
    max-width: 560px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-trust-icon {
    width: 44px;
    height: 44px;
    background: rgba(253, 123, 18, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
}

.hero-trust-text {
    font-size: 13px;
    color: var(--text-body);
}

.hero-trust-text strong {
    display: block;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-visual {
    position: relative;
    height: 540px;
}

.hero-main-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 18px 20px;
    animation: float 6s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    top: 24px;
    left: -20px;
    width: 210px;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    bottom: 40px;
    left: -10px;
    width: 230px;
    animation-delay: 2s;
}

.hero-floating-card.card-3 {
    top: 120px;
    right: -15px;
    width: 175px;
    animation-delay: 4s;
}

@keyframes float {

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

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

.floating-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.card-1 .floating-card-icon {
    background: rgba(3, 20, 62, 0.1);
    color: var(--navy);
}

.card-2 .floating-card-icon {
    background: rgba(253, 123, 18, 0.1);
    color: var(--orange);
}

.card-3 .floating-card-icon {
    background: rgba(3, 20, 62, 0.1);
    color: var(--navy);
}

.floating-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
}

.floating-card-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--navy);
}

.floating-card-label {
    font-size: 12px;
    color: var(--text-light);
}

.floating-card-bar {
    height: 6px;
    background: var(--grey-dark);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 10px;
}

.floating-card-progress {
    height: 100%;
    border-radius: 3px;
}

.card-1 .floating-card-progress {
    width: 85%;
    background: linear-gradient(90deg, var(--navy), var(--orange));
}

.card-2 .floating-card-progress {
    width: 92%;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

/* Stats Section */
.stats-section {
    position: relative;
    margin-top: -50px;
    z-index: 10;
    padding: 0 24px;
    margin-bottom: 40px;
}

.stats-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.stat-card {
    padding: 32px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 36px rgba(3, 20, 62, 0.08);
    border: 1px solid rgba(3, 20, 62, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s;
}

.stat-card:nth-child(1)::before {
    background: var(--navy);
}

.stat-card:nth-child(2)::before {
    background: var(--orange);
}

.stat-card:nth-child(3)::before {
    background: var(--navy-light);
}

.stat-card:nth-child(4)::before {
    background: linear-gradient(180deg, var(--navy), var(--orange));
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(3, 20, 62, 0.14);
    border-color: rgba(253, 123, 18, 0.25);
}

.stat-card:hover::before {
    transform: scaleY(1);
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 26px;
    flex-shrink: 0;
}

.stat-card:nth-child(1) .stat-icon {
    background: rgba(3, 20, 62, 0.08);
    color: var(--navy);
}

.stat-card:nth-child(2) .stat-icon {
    background: rgba(253, 123, 18, 0.1);
    color: var(--orange);
}

.stat-card:nth-child(3) .stat-icon {
    background: rgba(3, 20, 62, 0.08);
    color: var(--navy-light);
}

.stat-card:nth-child(4) .stat-icon {
    background: linear-gradient(135deg, rgba(3, 20, 62, 0.08), rgba(253, 123, 18, 0.1));
    color: var(--orange);
}

.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.stat-suffix {
    color: var(--orange);
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-body);
    line-height: 1.4;
}

/* About Section */
.about-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: flex-start;
}

.about-visual {
    position: sticky;
    top: 120px;
    width: 100%;
}

.about-accent-shape {
    position: absolute;
    top: -24px;
    left: -24px;
    width: 300px;
    height: 300px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='grad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23fd7b12'/%3E%3Cstop offset='100%25' stop-color='%2303143e'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cstyle%3E@keyframes march %7B to %7B stroke-dashoffset: -32; %7D %7D .moving-dash %7B animation: march 4s linear infinite; %7D%3C/style%3E%3Crect x='2' y='2' width='296' height='296' fill='none' rx='54' ry='54' stroke='url(%23grad)' stroke-width='2.5' stroke-dasharray='12, 20' stroke-linecap='round' class='moving-dash'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 1;
}

.about-image-main {
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-main img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.about-image-secondary {
    width: 55%;
    margin-top: -180px;
    margin-left: auto;
    margin-right: -50px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
    border: 8px solid var(--white);
}

.about-image-secondary img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(253, 123, 18, 0.35);
}

.about-badge-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.about-badge-text {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.95;
}

.about-accent-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px dashed rgba(27, 167, 183, 0.3);
    border-radius: 50%;
    top: -20px;
    right: 40%;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-features {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-feature {
    display: flex;
    gap: 16px;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.about-feature:nth-child(1) .about-feature-icon {
    background: rgba(8, 46, 103, 0.08);
    color: var(--navy);
}

.about-feature:nth-child(2) .about-feature-icon {
    background: rgba(27, 167, 183, 0.08);
    color: var(--teal);
}

.about-feature:nth-child(3) .about-feature-icon {
    background: rgba(109, 170, 61, 0.08);
    color: var(--green);
}

.about-feature:nth-child(4) .about-feature-icon {
    background: rgba(8, 46, 103, 0.08);
    color: var(--navy-light);
}

.about-feature-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.about-feature-desc {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    background: var(--grey);
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 72px;
}

.services-header .section-label {
    justify-content: center;
}

.services-header .section-subtitle {
    margin: 0 auto;
}

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

.service-card {
    position: relative;
    padding: 40px 36px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(8, 46, 103, 0.06);
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.service-card:focus,
.service-card:active {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
}

.service-card-bg-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
}

.service-card-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 46, 103, 0.92), rgba(8, 46, 103, 0.85));
}

.service-card>* {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition);
    font-size: 34px;
}

.service-card:nth-child(1) .service-icon-wrap {
    background: rgba(8, 46, 103, 0.1);
    color: var(--navy);
}

.service-card:nth-child(2) .service-icon-wrap {
    background: rgba(27, 167, 183, 0.1);
    color: var(--teal);
}

.service-card:nth-child(3) .service-icon-wrap {
    background: rgba(109, 170, 61, 0.1);
    color: var(--green);
}

.service-card:nth-child(4) .service-icon-wrap {
    background: rgba(8, 46, 103, 0.08);
    color: var(--navy-light);
}

.service-card:nth-child(5) .service-icon-wrap {
    background: rgba(27, 167, 183, 0.1);
    color: var(--teal);
}

.service-card:nth-child(6) .service-icon-wrap {
    background: rgba(253, 123, 18, 0.1);
    color: var(--orange);
}

.service-card:hover .service-icon-wrap {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.service-number {
    position: absolute;
    top: 32px;
    right: 32px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: rgba(8, 46, 103, 0.05);
    line-height: 1;
    transition: var(--transition);
}

.service-card:hover .service-number {
    color: rgba(255, 255, 255, 0.1);
}

.service-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    transition: var(--transition);
}

.service-card:hover .service-title {
    color: var(--white);
}

.service-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 28px;
    transition: var(--transition);
}

.service-card:hover .service-desc {
    color: rgba(255, 255, 255, 0.85);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--teal);
    transition: var(--transition);
}

.service-card:hover .service-link {
    color: var(--teal-light);
}

.service-link svg {
    transition: transform 0.3s;
}

.service-card:hover .service-link svg {
    transform: translateX(6px);
}

.service-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.service-card.featured>.service-content {
    padding: 48px 40px;
}

.service-card.featured .service-image {
    height: 100%;
    min-height: 350px;
}

.service-card.featured .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Why Choose Us */
.why-section {
    background: var(--white);
    position: relative;
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-visual {
    position: relative;
    height: 620px;
}

.why-image-lg {
    position: absolute;
    top: 0;
    left: 0;
    width: 78%;
    height: 70%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-image-lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-image-sm {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52%;
    height: 45%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 8px solid var(--white);
}

.why-image-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-stats-card {
    position: absolute;
    bottom: 50px;
    left: -20px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(8, 46, 103, 0.08);
    z-index: 3;
}

.why-stats-row {
    display: flex;
    gap: 24px;
    align-items: center;
}

.why-stat-item {
    text-align: left;
}

.why-stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.why-stat-label {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
    white-space: nowrap;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.why-feature {
    padding: 24px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(8, 46, 103, 0.08);
    transition: var(--transition);
}

.why-feature:hover {
    border-color: rgba(27, 167, 183, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.why-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
}

.why-feature:nth-child(1) .why-feature-icon {
    background: rgba(8, 46, 103, 0.1);
    color: var(--navy);
}

.why-feature:nth-child(2) .why-feature-icon {
    background: rgba(27, 167, 183, 0.1);
    color: var(--teal);
}

.why-feature:nth-child(3) .why-feature-icon {
    background: rgba(109, 170, 61, 0.1);
    color: var(--green);
}

.why-feature:nth-child(4) .why-feature-icon {
    background: rgba(8, 46, 103, 0.08);
    color: var(--navy-light);
}

.why-feature:nth-child(5) .why-feature-icon {
    background: rgba(27, 167, 183, 0.08);
    color: var(--teal);
}

.why-feature:nth-child(6) .why-feature-icon {
    background: rgba(109, 170, 61, 0.08);
    color: var(--green);
}

.why-feature-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.why-feature-desc {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
}

/* Process Section */
.process-section {
    background: linear-gradient(180deg, var(--grey) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-header .section-label {
    justify-content: center;
}

.process-header .section-subtitle {
    margin: 0 auto;
}

.process-timeline {
    position: relative;
    padding: 0 40px;
}

.process-line {
    position: absolute;
    top: 80px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--navy), var(--orange), var(--navy));
    border-radius: 1px;
    z-index: 1;
}

.process-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--navy), var(--orange));
    border-radius: 1px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step-icon {
    width: 160px;
    height: 160px;
    margin: 0 auto 32px;
    position: relative;
}

.process-step-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--grey-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.process-step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fd7b12, #ff9438);
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(253, 123, 18, 0.4);
    z-index: 3;
}

.process-step:nth-child(1) .process-step-circle {
    color: var(--navy);
}

.process-step:nth-child(2) .process-step-circle {
    color: var(--orange);
}

.process-step:nth-child(3) .process-step-circle {
    color: var(--navy);
}

.process-step:nth-child(4) .process-step-circle {
    color: var(--orange);
}

.process-step:nth-child(5) .process-step-circle {
    color: var(--navy);
}

.process-step:hover .process-step-circle {
    transform: scale(1.06);
    background: var(--white);
}

.process-step:nth-child(1):hover .process-step-circle {
    border-color: var(--navy);
    box-shadow: 0 14px 36px rgba(3, 20, 62, 0.18);
}

.process-step:nth-child(2):hover .process-step-circle {
    border-color: var(--orange);
    box-shadow: 0 14px 36px rgba(253, 123, 18, 0.25);
}

.process-step:nth-child(3):hover .process-step-circle {
    border-color: var(--navy);
    box-shadow: 0 14px 36px rgba(3, 20, 62, 0.18);
}

.process-step:nth-child(4):hover .process-step-circle {
    border-color: var(--orange);
    box-shadow: 0 14px 36px rgba(253, 123, 18, 0.25);
}

.process-step:nth-child(5):hover .process-step-circle {
    border-color: var(--teal);
    box-shadow: 0 14px 36px rgba(27, 167, 183, 0.22);
}

.process-step-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.process-step-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-body);
}

/* Warehousing Section */
.warehouse-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.warehouse-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 72px;
    gap: 60px;
}

.warehouse-header-content {
    max-width: 600px;
}

.warehouse-showcase {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.warehouse-main-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 520px;
    box-shadow: var(--shadow-xl);
}

.warehouse-main-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.warehouse-overlay-card {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.warehouse-overlay-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.warehouse-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.warehouse-mini-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-body);
}

.warehouse-mini-feature svg {
    color: var(--green);
    flex-shrink: 0;
}

.warehouse-side-cards {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.warehouse-side-card {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    min-height: 240px;
    box-shadow: var(--shadow-lg);
}

.warehouse-side-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.warehouse-side-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(8, 46, 103, 0.92) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.warehouse-side-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal-light);
    margin-bottom: 10px;
}

.warehouse-side-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.warehouse-side-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.floating-stat-card {
    position: absolute;
    top: 32px;
    right: 32px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.floating-stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.floating-stat-label {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 6px;
}

/* Industries Section */
.industries-section {
    background: var(--grey);
}

.industries-header {
    text-align: center;
    margin-bottom: 64px;
}

.industries-header .section-label {
    justify-content: center;
}

.industries-header .section-subtitle {
    margin: 0 auto;
}

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

.industry-card {
    padding: 40px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.industry-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--green));
    transition: transform 0.4s;
    border-radius: 3px;
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(8, 46, 103, 0.06);
}

.industry-card:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.industry-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grey);
    transition: var(--transition);
    font-size: 38px;
}

.industry-card:hover .industry-icon {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    transform: scale(1.05);
}

.industry-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 72px;
}

.testimonials-header .section-label {
    justify-content: center;
}

.testimonials-header .section-subtitle {
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    padding: 40px 36px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(8, 46, 103, 0.06);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 24px;
    right: 32px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 100px;
    font-weight: 800;
    line-height: 1;
    color: var(--grey-dark);
    opacity: 0.5;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    color: #F59E0B;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--grey-dark);
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #03143e, #09266e);
    border: 2px solid rgba(253, 123, 18, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 17px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(3, 20, 62, 0.15);
}

.testimonial-author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
}

.testimonial-author-title {
    font-size: 13px;
    color: var(--text-light);
}

.testimonial-company-logo {
    margin-left: auto;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: var(--navy);
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #03143e 0%, #010a21 100%);
    overflow: hidden;
    border-top: 1px solid rgba(253, 123, 18, 0.2);
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.5;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(253, 123, 18, 0.22) 0%, rgba(3, 20, 62, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.cta-section .section-label {
    color: #fd7b12;
    justify-content: center;
}

.cta-section .section-label::before {
    background: linear-gradient(90deg, #fd7b12, #ff9438);
}

.cta-title {
    font-size: clamp(36px, 4.5vw, 54px);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cta-title span {
    background: linear-gradient(135deg, #fd7b12, #ff9438);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-desc {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 44px;
}

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

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #fd7b12, #ff9438);
    color: #ffffff;
    box-shadow: 0 10px 28px rgba(253, 123, 18, 0.4);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    padding: 16px 36px;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(253, 123, 18, 0.6);
    background: linear-gradient(135deg, #e06300, #fd7b12);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    font-weight: 700;
    padding: 16px 36px;
}

.cta-buttons .btn-secondary:hover {
    background: #ffffff;
    color: #03143e;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #03143e 0%, #010a21 100%);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 90px;
    position: relative;
    border-top: 1px solid rgba(253, 123, 18, 0.2);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fd7b12, transparent);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 60px;
    padding-bottom: 70px;
}

.footer-brand {
    max-width: 380px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo img,
.footer-logo-img {
    filter: brightness(0) invert(1);
    max-height: 100px;
    width: auto;
    object-fit: contain;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.72);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    font-size: 16px;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #fd7b12, #ff9438);
    color: #ffffff;
    border-color: #fd7b12;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(253, 123, 18, 0.35);
}

.footer-col-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, #fd7b12, #ff9438);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.72);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    color: #fd7b12;
    opacity: 0;
    transform: translateX(-6px);
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fd7b12;
    padding-left: 6px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(253, 123, 18, 0.12);
    border: 1px solid rgba(253, 123, 18, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fd7b12;
    font-size: 18px;
}

.footer-contact-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.footer-contact-value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
}

.footer-form {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 3px solid #fd7b12;
    box-shadow: 0 16px 40px rgba(1, 9, 30, 0.4);
}

.footer-form-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-form-group {
    margin-bottom: 14px;
}

.footer-form input,
.footer-form textarea,
.footer-select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.footer-form input:focus,
.footer-form textarea:focus,
.footer-select:focus {
    border-color: #fd7b12;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 0 3px rgba(253, 123, 18, 0.25);
}

.footer-form textarea {
    resize: vertical;
    min-height: 80px;
}

.footer-form .btn {
    width: 100%;
    justify-content: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--teal-light);
}

.footer-secondary {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    align-items: start;
}

.form-inline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.working-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 15px;
}

.working-hours-row:last-child {
    border-bottom: none;
}

.cert-badge {
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-visual {
    overflow: visible;
}

.footer-select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.footer-select:focus {
    border-color: var(--teal);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(27, 167, 183, 0.15);
}

.footer-select option {
    background: var(--navy-dark);
    color: var(--white);
}

/* Responsive */
@media (max-width: 1280px) {
    .stats-grid {
        max-width: 1200px;
    }

    .hero {
        overflow-x: clip;
    }
}

@media (max-width: 1200px) {
    .hero-inner {
        gap: 60px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card.featured {
        grid-column: span 2;
    }

    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-secondary {
        grid-template-columns: 1fr 1fr;
    }

    .hero-floating-card.card-1 {
        left: -10px;
        width: 190px;
    }

    .hero-floating-card.card-2 {
        left: 0;
        width: 210px;
    }

    .hero-floating-card.card-3 {
        right: -10px;
        width: 170px;
    }

    .process-steps {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }

    .process-step-icon {
        width: 130px;
        height: 130px;
    }

    .process-step-circle {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .section-padding {
        padding: 80px 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 16px;
        box-shadow: -10px 0 30px rgba(8, 46, 103, 0.15);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        font-size: 18px;
        font-weight: 600;
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--grey-dark);
        width: 100%;
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        background: rgba(3, 20, 62, 0.03);
        border-radius: 10px;
        padding: 4px 0 4px 12px;
        margin-top: 6px;
        display: none;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        display: block;
        transform: none;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-menu a {
        font-size: 15px;
        padding: 8px 12px;
        border-bottom: none;
        color: #4a5568;
    }

    .mobile-nav-cta {
        display: block;
        padding-top: 16px;
    }

    .nav-cta {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        height: 440px;
        max-width: 640px;
        margin: 0 auto;
        width: 100%;
    }

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

    .section-padding {
        padding: 40px 0;
    }

    .about-visual {
        position: relative;
        top: auto;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }

    .about-image-secondary {
        width: 65%;
        margin-top: -80px;
        margin-right: -10px;
        border-width: 5px;
    }

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

    .why-visual {
        height: 380px;
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }

    .why-stats-card {
        left: 0;
        bottom: 20px;
    }

    .warehouse-showcase {
        grid-template-columns: 1fr;
    }

    .warehouse-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }

    .process-line {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 640px;
        margin: 0 auto;
    }

    .footer-secondary {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

@media (max-width: 768px) {

    input,
    select,
    textarea {
        font-size: 16px !important;
    }

    .logo-img,
    .navbar.scrolled .logo-img {
        max-height: 55px;
    }

    .footer-logo img,
    .footer-logo-img {
        max-height: 80px;
    }

    .section-padding {
        padding: 40px 0;
    }

    .modal-container {
        padding: 32px 24px;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
    }

    .modal-header {
        padding-top: 16px;
    }

    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 24px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 4px 12px;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: clamp(28px, 7vw, 38px);
        margin-bottom: 10px;
    }

    .hero-desc {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 12px;
    }

    .hero-cta {
        margin-bottom: 14px;
        gap: 8px;
    }

    .hero-cta .btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .hero-trust {
        gap: 12px;
    }

    .hero-trust-item {
        gap: 8px;
    }

    .hero-trust-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .hero-trust-icon svg {
        width: 18px;
        height: 18px;
    }

    .hero-trust-text {
        font-size: 12px;
    }

    .hero-inner {
        gap: 18px;
    }

    .services-header,
    .process-header,
    .testimonials-header,
    .industries-header {
        margin-bottom: 28px;
    }

    .hero-visual {
        height: 360px;
    }

    .hero-floating-card {
        padding: 12px 14px;
    }

    .hero-floating-card.card-1 {
        top: 12px;
        left: 0px;
        width: 150px;
    }

    .hero-floating-card.card-1 .floating-card-value {
        font-size: 18px;
    }

    .hero-floating-card.card-2 {
        bottom: 30px;
        left: 10px;
        width: 160px;
    }

    .hero-floating-card.card-2 .floating-card-value {
        font-size: 16px;
    }

    .hero-floating-card.card-3 {
        display: none;
    }

    .stats-section {
        margin-top: -20px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-card {
        padding: 24px 18px;
    }

    .stat-number {
        font-size: 26px;
    }

    .about-visual {
        width: 100%;
    }

    .about-image-main {
        width: 100%;
    }

    .about-badge {
        padding: 14px 18px;
        top: 10px;
        right: 10px;
    }

    .about-badge-number {
        font-size: 28px;
    }

    .why-visual {
        height: 270px;
    }

    .why-image-lg {
        width: 82%;
        height: 78%;
        border-radius: 16px;
    }

    .why-image-sm {
        width: 48%;
        height: 50%;
        border-radius: 14px;
        border: 4px solid var(--white);
    }

    .why-stats-card {
        position: absolute;
        bottom: 8px;
        left: 8px;
        margin-top: 0;
        width: auto;
        padding: 12px 14px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(8px);
        box-shadow: 0 10px 28px rgba(3, 20, 62, 0.14);
    }

    .why-stats-row {
        gap: 14px;
    }

    .why-stat-num {
        font-size: 18px;
    }

    .why-stat-label {
        font-size: 10px;
        margin-top: 2px;
        white-space: normal;
    }

    .why-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 28px;
    }

    .why-feature {
        padding: 16px 14px;
    }

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

    .service-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .service-card.featured .service-image {
        min-height: 220px;
    }

    .service-card.featured>.service-content {
        padding: 28px 24px;
    }

    .warehouse-main-visual {
        min-height: 440px;
    }

    .warehouse-overlay-card {
        position: absolute;
        bottom: 16px;
        left: 16px;
        right: 16px;
        margin-top: 0;
        z-index: 2;
        padding: 18px 20px;
    }

    .warehouse-overlay-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .warehouse-mini-feature {
        font-size: 13px;
    }

    .floating-stat-card {
        top: 16px;
        right: 16px;
        padding: 12px 16px;
    }

    .floating-stat-number {
        font-size: 26px;
    }

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

    .why-features,
    .about-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .footer-secondary {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 32px;
    }

    .form-inline-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        justify-content: center;
    }

    .process-steps {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        justify-content: center;
        width: 100%;
    }

    .warehouse-header-content .section-title {
        font-size: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .industries-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .industry-card {
        padding: 24px 16px;
    }

    .industry-icon {
        width: 56px;
        height: 56px;
        font-size: 26px;
        margin-bottom: 16px;
    }

    .industry-name {
        font-size: 15px;
    }

    .hero-floating-card.card-1,
    .hero-floating-card.card-2 {
        display: none;
    }

    .hero-visual {
        height: 280px;
    }

    .about-visual {
        width: 100%;
    }

    .why-visual {
        height: 360px;
    }

    .warehouse-main-visual {
        min-height: 420px;
    }

    .warehouse-overlay-card {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 14px 16px;
    }

    .warehouse-features-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(5, 29, 69, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 680px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 44px;
    position: relative;
    box-shadow: 0 30px 80px rgba(8, 46, 103, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--grey);
    border: none;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--navy);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 28px;
}

.modal-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(253, 123, 18, 0.1);
    color: var(--orange);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.modal-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 8px;
}

.modal-title span {
    background: linear-gradient(135deg, var(--navy), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-subtitle {
    font-size: 14px;
    color: var(--text-body);
}

.modal-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.modal-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.modal-form label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--grey);
    border: 1.5px solid var(--grey-dark);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(253, 123, 18, 0.2);
}

.modal-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2303143e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.modal-submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
}

.modal-success {
    text-align: center;
    padding: 40px 20px;
}

.modal-success .success-icon {
    width: 72px;
    height: 72px;
    background: rgba(253, 123, 18, 0.12);
    color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-success h4 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.modal-success p {
    font-size: 15px;
    color: var(--text-body);
    margin-bottom: 24px;
}

@media (max-width: 640px) {
    .modal-container {
        padding: 32px 20px;
    }

    .modal-form .form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 80px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
    animation: pulseWhatsapp 2.5s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55);
    color: #FFFFFF;
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: var(--navy-dark);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    pointer-events: none;
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes pulseWhatsapp {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 80px;
        right: 20px;
        width: 52px;
        height: 52px;
    }

    .floating-whatsapp svg {
        width: 24px;
        height: 24px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* Page Preloader */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    animation: none;
    transition: opacity 0.4s ease-out, visibility 0.4s ease-out;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
    max-width: 380px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 28px 24px;
    background: #ffffff;
}

.preloader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    margin-bottom: 4px;
    animation: preloaderPulse 1.8s ease-in-out infinite;
}

.preloader-logo img {
    height: 160px;
    max-height: 160px;
    width: auto;
    object-fit: contain;
    display: block;
}

.preloader-bar {
    width: 100%;
    height: 6px;
    background: rgba(3, 20, 62, 0.08);
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}

.preloader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #03143e 0%, #fd7b12 100%);
    border-radius: 100px;
    transition: width 0.12s ease-out;
    box-shadow: 0 0 10px rgba(253, 123, 18, 0.5);
}

.preloader-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 13px;
    color: #03143e;
    font-weight: 600;
}

.preloader-text {
    color: #4a5568;
    font-weight: 500;
}

.preloader-percent {
    color: #fd7b12;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
}

@keyframes preloaderPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.95;
    }

    50% {
        transform: scale(1.03);
        opacity: 1;
    }
}

/* ==========================================================================
   404 ERROR PAGE STYLING
   ========================================================================== */
.error-page-section {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(180deg, #f0f4fa 0%, #ffffff 100%);
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.error-bg-glow {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(253, 123, 18, 0.12) 0%, rgba(3, 20, 62, 0.04) 55%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.error-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(3, 20, 62, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 60px rgba(3, 20, 62, 0.1);
    padding: 60px 40px;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}

.error-code-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(253, 123, 18, 0.1);
    border: 1px solid rgba(253, 123, 18, 0.25);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: var(--orange-dark);
    margin-bottom: 24px;
}

.error-number-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.error-digit {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(80px, 14vw, 140px);
    font-weight: 800;
    line-height: 0.9;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.04em;
}

.error-compass-container {
    position: relative;
    width: clamp(90px, 12vw, 130px);
    height: clamp(90px, 12vw, 130px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(3, 20, 62, 0.05), rgba(253, 123, 18, 0.08));
    border: 2px dashed rgba(3, 20, 62, 0.2);
    box-shadow: inset 0 0 20px rgba(3, 20, 62, 0.05);
}

.compass-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--orange);
    border-bottom-color: var(--navy);
    animation: spin 10s linear infinite;
}

.compass-radar-sweep {
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(253, 123, 18, 0.3) 0deg, transparent 60deg, transparent 360deg);
    animation: radar-sweep 4s linear infinite;
}

.compass-icon {
    position: relative;
    z-index: 2;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 4s ease-in-out infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes radar-sweep {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.error-title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
}

.error-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    max-width: 580px;
    margin: 0 auto 36px;
}

.error-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.error-suggestions {
    border-top: 1px solid rgba(3, 20, 62, 0.08);
    padding-top: 36px;
}

.suggestions-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 20px;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.suggestion-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid rgba(3, 20, 62, 0.08);
    border-radius: var(--radius-md);
    text-align: left;
    transition: var(--transition);
}

.suggestion-card:hover {
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(3, 20, 62, 0.08);
}

.suggestion-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(3, 20, 62, 0.05);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.suggestion-card:hover .suggestion-icon {
    background: var(--orange);
    color: #ffffff;
}

.suggestion-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

.suggestion-desc {
    font-size: 12px;
    color: var(--text-light);
}

@media (max-width: 640px) {
    .error-card {
        padding: 40px 20px;
    }

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

/* ==========================================================================
   CONTACT PAGE STYLING
   ========================================================================== */
.contact-hero {
    position: relative;
    padding: 160px 0 40px;
    background: #ffffff;
    color: var(--navy);
    overflow: hidden;
    text-align: center;
}

.contact-hero .section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(253, 123, 18, 0.1);
    border: 1px solid rgba(253, 123, 18, 0.25);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: var(--orange-dark);
    margin-bottom: 20px;
}

/* Contact Info Grid */
.contact-info-section {
    padding: 20px 0 0;
    position: relative;
    z-index: 10;
    margin-top: 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.info-card {
    background: #ffffff;
    border: 1px solid rgba(3, 20, 62, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: 0 12px 32px rgba(3, 20, 62, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
    box-shadow: 0 20px 45px rgba(3, 20, 62, 0.14);
}

.info-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(253, 123, 18, 0.1);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: var(--transition);
}

.info-card:hover .info-card-icon {
    background: var(--orange);
    color: #ffffff;
}

.info-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.info-card-text {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.info-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--orange);
    transition: var(--transition);
}

.info-card-link:hover {
    gap: 10px;
    color: var(--navy);
}

/* Contact Main Section (Form + Map) */
.contact-main-section {
    padding: 90px 0 120px;
}

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

.contact-form-card {
    background: #ffffff;
    border: 1px solid rgba(3, 20, 62, 0.08);
    border-radius: var(--radius-xl);
    padding: 44px 40px;
    box-shadow: 0 20px 50px rgba(3, 20, 62, 0.08);
}

.form-header-box {
    margin-bottom: 30px;
}

.form-header-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-header-subtitle {
    font-size: 15px;
    color: var(--text-light);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-group {
    margin-bottom: 22px;
}

.contact-form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form-group label {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--navy);
    transition: var(--transition);
    outline: none;
}

.contact-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2303143e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: var(--orange);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(253, 123, 18, 0.15);
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-alert-box {
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 22px;
    display: none;
}

.form-alert-box.success {
    display: block;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.form-alert-box.error {
    display: block;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

/* Map & Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.map-card {
    background: #ffffff;
    border: 1px solid rgba(3, 20, 62, 0.08);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(3, 20, 62, 0.08);
}

.map-header {
    padding: 24px 28px;
    border-bottom: 1px solid rgba(3, 20, 62, 0.08);
}

.map-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.map-subtitle {
    font-size: 13px;
    color: var(--text-light);
}

.map-iframe-container {
    height: 280px;
    width: 100%;
}

.map-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.quick-support-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(3, 20, 62, 0.15);
}

.quick-support-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.quick-support-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    line-height: 1.6;
}

.quick-support-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: center;
}

.btn-whatsapp-full {
    background: #25D366;
    color: #ffffff;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
    width: 100%;
    text-align: center;
}

.btn-whatsapp-full:hover {
    background: #1eb855;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* Contact FAQ Section */
.contact-faq-section {
    background: #f8fafc;
    padding: 100px 0;
    border-top: 1px solid rgba(3, 20, 62, 0.06);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.faq-card {
    background: #ffffff;
    border: 1px solid rgba(3, 20, 62, 0.08);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(3, 20, 62, 0.04);
    transition: var(--transition);
}

.faq-card:hover {
    border-color: var(--orange);
    transform: translateY(-3px);
}

.faq-question {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

.faq-question::before {
    content: 'Q.';
    color: var(--orange);
    font-weight: 800;
}

.faq-answer {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
    padding-left: 24px;
}

@media (max-width: 992px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {

    .contact-form-grid,
    .quick-support-actions {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 30px 20px;
    }
}

.text-center {
    text-align: center;
}

/* ==========================================================================
   GALLERY PAGE STYLING
   ========================================================================== */
.gallery-hero {
    position: relative;
    padding: 160px 0 40px;
    background: #ffffff;
    color: var(--navy);
    overflow: hidden;
    text-align: center;
}

.gallery-hero .section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.gallery-hero .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.gallery-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(253, 123, 18, 0.1);
    border: 1px solid rgba(253, 123, 18, 0.25);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: var(--orange-dark);
    margin-bottom: 20px;
}

.gallery-filters-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.gallery-filter-btn {
    padding: 10px 24px;
    background: #f1f5f9;
    color: var(--navy);
    border: 1px solid rgba(3, 20, 62, 0.08);
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--navy);
    color: #ffffff;
    border-color: var(--navy);
    box-shadow: 0 6px 18px rgba(3, 20, 62, 0.18);
}

.gallery-section {
    padding: 0 0 120px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #e2e8f0;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(3, 20, 62, 0.88) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #ffffff;
}

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

.gallery-card-badge {
    align-self: flex-start;
    padding: 4px 12px;
    background: rgba(253, 123, 18, 0.9);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.gallery-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.gallery-zoom-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-zoom-icon {
    transform: scale(1);
    opacity: 1;
}

/* Lightbox Modal */
.custom-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(1, 9, 30, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

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

.lightbox-close-btn {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2010;
}

.lightbox-close-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: rotate(90deg);
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2010;
}

.lightbox-nav-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.lightbox-nav-btn.prev {
    left: 28px;
}

.lightbox-nav-btn.next {
    right: 28px;
}

.lightbox-content-box {
    max-width: 900px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: text-center;
}

.lightbox-image-wrap {
    max-height: 70vh;
    max-width: 100%;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    margin-bottom: 18px;
}

.lightbox-image-wrap img {
    max-height: 70vh;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.lightbox-info {
    color: #ffffff;
}

.lightbox-caption {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.lightbox-counter {
    font-size: 13px;
    color: var(--orange-light);
    font-weight: 600;
}

@media (max-width: 768px) {
    .lightbox-nav-btn.prev {
        left: 10px;
    }

    .lightbox-nav-btn.next {
        right: 10px;
    }

    .lightbox-close-btn {
        top: 16px;
        right: 16px;
    }
}

/* ==========================================================================
   ABOUT PAGE STYLING
   ========================================================================== */
.about-hero {
    position: relative;
    padding: 120px 0 60px;
    background: linear-gradient(180deg, #f0f4fa 0%, #ffffff 100%);
    color: var(--navy);
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid rgba(3, 20, 62, 0.05);
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 600px;
    background: radial-gradient(circle, rgba(253, 123, 18, 0.07) 0%, rgba(240, 244, 250, 0) 70%);
    pointer-events: none;
}

.about-hero .section-title {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.about-hero .section-subtitle {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(253, 123, 18, 0.12);
    border: 1px solid rgba(253, 123, 18, 0.28);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: var(--orange-dark);
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}

.about-stats-banner {
    padding: 0 0 60px;
}

.about-values-section {
    padding: 100px 0;
    background: #f8fafc;
    border-top: 1px solid rgba(3, 20, 62, 0.06);
    border-bottom: 1px solid rgba(3, 20, 62, 0.06);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.value-card {
    background: #ffffff;
    border: 1px solid rgba(3, 20, 62, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    box-shadow: 0 10px 30px rgba(3, 20, 62, 0.06);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
    box-shadow: 0 20px 45px rgba(3, 20, 62, 0.12);
}

.value-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(253, 123, 18, 0.1);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--orange);
    color: #ffffff;
}

.value-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.value-desc {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
}

.accreditation-section {
    padding: 90px 0;
    text-align: center;
}

.accreditation-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.accreditation-badge {
    padding: 16px 32px;
    background: #ffffff;
    border: 1px solid rgba(3, 20, 62, 0.1);
    border-radius: var(--radius-md);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    box-shadow: 0 8px 20px rgba(3, 20, 62, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.accreditation-badge:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-3px);
}

/* ==========================================================================
   SERVICE DETAIL PAGES STYLING
   ========================================================================== */
.service-hero {
    position: relative;
    padding: 120px 0 60px;
    background: linear-gradient(180deg, #f0f4fa 0%, #ffffff 100%);
    color: var(--navy);
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid rgba(3, 20, 62, 0.05);
}

.service-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 600px;
    background: radial-gradient(circle, rgba(3, 20, 62, 0.05) 0%, rgba(240, 244, 250, 0) 70%);
    pointer-events: none;
}

.service-hero .section-title {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.service-hero .section-subtitle {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.service-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(253, 123, 18, 0.12);
    border: 1px solid rgba(253, 123, 18, 0.28);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: var(--orange-dark);
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}

.service-detail-section {
    padding: 80px 0 120px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    align-items: stretch;
}

.service-visual-box {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(3, 20, 62, 0.12);
    border: 4px solid #ffffff;
    height: 100%;
    min-height: 480px;
    display: flex;
    flex-direction: column;
}

.service-visual-box img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
    flex: 1;
}

.service-floating-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: 0 16px 40px rgba(3, 20, 62, 0.15);
    display: flex;
    align-items: center;
    gap: 14px;
}

.service-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(253, 123, 18, 0.12);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-badge-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}

.service-badge-subtitle {
    font-size: 12px;
    color: var(--text-light);
}

.service-feature-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.service-feature-card {
    background: #ffffff;
    border: 1px solid rgba(3, 20, 62, 0.08);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    display: flex;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(3, 20, 62, 0.04);
    transition: var(--transition);
}

.service-feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--orange);
    box-shadow: 0 16px 40px rgba(3, 20, 62, 0.1);
}

.feature-num-pill {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--navy);
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.service-feature-card:hover .feature-num-pill {
    background: var(--orange);
}

.feature-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.feature-card-desc {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
}

/* Workflow Steps */
.workflow-section {
    background: #f8fafc;
    padding: 100px 0;
    border-top: 1px solid rgba(3, 20, 62, 0.06);
    border-bottom: 1px solid rgba(3, 20, 62, 0.06);
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.workflow-card {
    background: #ffffff;
    border: 1px solid rgba(3, 20, 62, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 24px rgba(3, 20, 62, 0.04);
    transition: var(--transition);
}

.workflow-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
    box-shadow: 0 18px 40px rgba(3, 20, 62, 0.1);
}

.workflow-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(253, 123, 18, 0.1);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.workflow-card:hover .workflow-icon-wrap {
    background: var(--orange);
    color: #ffffff;
}

.workflow-step-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--text-light);
    opacity: 0.6;
}

.workflow-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.workflow-card-desc {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   GLOBAL REACH & TRADE ROUTES SECTION (ABOUT PAGE)
   ========================================================================== */
.about-reach-section {
    padding: 50px 0 80px;
    background: #f8fafc;
    border-top: 1px solid rgba(3, 20, 62, 0.06);
    border-bottom: 1px solid rgba(3, 20, 62, 0.06);
    position: relative;
}

.reach-header {
    max-width: 800px;
    margin: 0 auto 48px;
}

.reach-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(253, 123, 18, 0.1);
    border: 1px solid rgba(253, 123, 18, 0.25);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: var(--orange-dark);
    margin-bottom: 16px;
}

.reach-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.reach-title span {
    background: linear-gradient(135deg, var(--navy), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reach-subtitle {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.75;
}

.reach-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.reach-card {
    background: #ffffff;
    border: 1px solid rgba(3, 20, 62, 0.08);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(3, 20, 62, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.reach-card:hover {
    transform: translateY(-6px);
    border-color: rgba(253, 123, 18, 0.4);
    box-shadow: 0 20px 50px rgba(3, 20, 62, 0.12);
}

.reach-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.reach-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(253, 123, 18, 0.12);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.reach-card:hover .reach-icon-wrap {
    background: var(--orange);
    color: #ffffff;
}

.reach-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orange);
    display: block;
}

.reach-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin-top: 2px;
}

.reach-card-desc {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 20px;
}

.reach-pills {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.reach-pill {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    background: #f8fafc;
    padding: 10px 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(3, 20, 62, 0.06);
    transition: var(--transition);
}

.reach-card:hover .reach-pill {
    background: #f1f5f9;
}

.reach-pill:hover {
    background: #ffffff !important;
    border-color: var(--orange);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(3, 20, 62, 0.05);
}

.pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}

.route-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.route-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid rgba(3, 20, 62, 0.05);
    transition: var(--transition);
}

.route-item:hover {
    background: #ffffff;
    border-color: rgba(253, 123, 18, 0.35);
    transform: translateX(4px);
    box-shadow: 0 4px 14px rgba(3, 20, 62, 0.06);
}

.route-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.route-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.route-detail {
    font-size: 11px;
    color: var(--text-light);
}

.route-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
}

.badge-orange {
    background: rgba(253, 123, 18, 0.12);
    color: var(--orange-dark);
    border: 1px solid rgba(253, 123, 18, 0.25);
}

.badge-navy {
    background: rgba(3, 20, 62, 0.08);
    color: var(--navy);
    border: 1px solid rgba(3, 20, 62, 0.15);
}

.reach-metrics-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: auto;
}

.metric-box {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 18px 20px;
    border-radius: 14px;
    border: 1px solid rgba(3, 20, 62, 0.06);
    transition: var(--transition);
}

.metric-box:hover {
    border-color: var(--orange);
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(3, 20, 62, 0.06);
    transform: translateX(4px);
}

.metric-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 4px;
}

.metric-lbl {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-body);
}

@media (max-width: 1024px) {
    .reach-grid {
        grid-template-columns: 1fr;
    }
}

/* Mission & Vision Cards Hover Animations */
.mission-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mission-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(253, 123, 18, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    transform: translate(50%, -50%) scale(0.5);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.mission-card:nth-child(2)::after {
    background: radial-gradient(circle, rgba(3, 20, 62, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(3, 20, 62, 0.08);
}

.mission-card:hover::after {
    transform: translate(20%, -20%) scale(2);
}

.mission-card svg {
    transition: transform 0.4s ease;
}

.mission-card:hover svg {
    transform: scale(1.15) rotate(5deg);
}

/* ==========================================================================
   Group of Companies (Sadashiv Shipping) Section
   ========================================================================== */
.group-companies-section {
    background: linear-gradient(180deg, #f7f9fc 0%, #edf2f8 100%);
    position: relative;
    overflow: hidden;
}

.group-header {
    margin-bottom: 48px;
}

.group-showcase-card {
    background: var(--white);
    border-radius: 28px;
    padding: 56px 52px;
    box-shadow: 0 20px 60px rgba(3, 20, 62, 0.06);
    border: 1px solid rgba(8, 46, 103, 0.08);
    position: relative;
    overflow: hidden;
}

.group-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--orange) 0%, var(--navy) 100%);
}

.group-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.group-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(253, 123, 18, 0.1);
    color: var(--orange);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.group-company-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.group-company-tagline {
    font-size: 16px;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 18px;
}

.group-company-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 28px;
}

.group-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.group-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.group-highlight-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(253, 123, 18, 0.12);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.group-highlight-item strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 2px;
}

.group-highlight-item span {
    font-size: 13px;
    color: var(--text-light);
}

.group-synergy-box {
    background: linear-gradient(135deg, #03143e 0%, #082e67 100%);
    border-radius: 20px;
    padding: 36px 32px;
    color: var(--white);
    box-shadow: 0 16px 40px rgba(3, 20, 62, 0.18);
    position: relative;
    overflow: hidden;
}

.group-synergy-box::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(253, 123, 18, 0.2) 0%, rgba(253, 123, 18, 0) 70%);
    pointer-events: none;
}

.group-synergy-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.group-synergy-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.group-synergy-badge {
    font-size: 12px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    color: var(--teal-light);
    font-weight: 600;
}

.group-synergy-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.synergy-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 16px 18px;
    transition: all 0.3s ease;
}

.synergy-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
    border-color: rgba(253, 123, 18, 0.5);
}

.synergy-card-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--orange);
    margin-bottom: 8px;
}

.synergy-card-inner {
    display: flex;
    align-items: center;
    gap: 14px;
}

.synergy-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(253, 123, 18, 0.18);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.synergy-card:nth-child(2) .synergy-icon {
    background: rgba(27, 167, 183, 0.2);
    color: var(--teal-light);
}

.synergy-card:nth-child(2) .synergy-card-badge {
    color: var(--teal-light);
}

.synergy-card-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 3px 0;
}

.synergy-card-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.group-stats-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 14px 18px;
}

.group-stat-mini {
    text-align: center;
    flex: 1;
}

.stat-mini-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--orange);
    line-height: 1.1;
}

.stat-mini-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 2px;
}

.group-stat-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 991px) {
    .group-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .group-showcase-card {
        padding: 40px 32px;
        border-radius: 24px;
    }

    .group-company-name {
        font-size: 28px;
    }

    .group-synergy-box {
        padding: 28px 24px;
    }
}

@media (max-width: 767px) {
    .group-header {
        margin-bottom: 28px;
    }

    .group-showcase-card {
        padding: 26px 18px;
        border-radius: 18px;
    }

    .group-showcase-card::before {
        width: 4px;
    }

    .group-badge-pill {
        font-size: 12px;
        padding: 5px 12px;
        margin-bottom: 12px;
    }

    .group-company-name {
        font-size: 24px;
        line-height: 1.25;
    }

    .group-company-tagline {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .group-company-desc {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 22px;
    }

    .group-highlights {
        gap: 14px;
    }

    .group-highlight-item {
        gap: 12px;
    }

    .group-highlight-icon {
        width: 28px;
        height: 28px;
        border-radius: 6px;
    }

    .group-highlight-icon svg {
        width: 16px;
        height: 16px;
    }

    .group-highlight-item strong {
        font-size: 14px;
    }

    .group-highlight-item span {
        font-size: 12px;
    }

    .group-synergy-box {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .group-synergy-header {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 18px;
        padding-bottom: 12px;
    }

    .group-synergy-title {
        font-size: 16px;
    }

    .group-synergy-badge {
        font-size: 11px;
        padding: 3px 10px;
    }

    .group-synergy-cards {
        gap: 12px;
        margin-bottom: 20px;
    }

    .synergy-card {
        padding: 14px 14px;
        border-radius: 12px;
    }

    .synergy-card-inner {
        gap: 12px;
    }

    .synergy-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .synergy-icon svg {
        width: 20px;
        height: 20px;
    }

    .synergy-card-name {
        font-size: 15px;
    }

    .synergy-card-desc {
        font-size: 12px;
        line-height: 1.45;
    }

    .group-stats-strip {
        padding: 12px 10px;
        border-radius: 10px;
    }

    .stat-mini-val {
        font-size: 18px;
    }

    .stat-mini-lbl {
        font-size: 10px;
    }

    .group-stat-divider {
        height: 22px;
    }
}

@media (max-width: 480px) {
    .group-showcase-card {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .group-company-name {
        font-size: 22px;
    }

    .group-synergy-box {
        padding: 18px 14px;
    }

    .stat-mini-val {
        font-size: 16px;
    }

    .stat-mini-lbl {
        font-size: 9.5px;
    }
}

/* ==========================================================================
   FAQ Section (AEO & Local Search)
   ========================================================================== */
.faq-section {
    background: var(--white);
    position: relative;
}

.faq-item {
    border: 1px solid rgba(8, 46, 103, 0.08);
    border-radius: 16px;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
}

.faq-item:hover {
    border-color: rgba(253, 123, 18, 0.3);
    box-shadow: 0 8px 24px rgba(3, 20, 62, 0.04);
}

.faq-item.active {
    border-color: rgba(253, 123, 18, 0.5);
    box-shadow: 0 10px 30px rgba(3, 20, 62, 0.06);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    transition: color 0.2s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
}

.faq-question:focus,
.faq-question:active,
.faq-question:focus-visible {
    outline: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

.faq-question:hover {
    color: var(--orange);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--orange);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 22px;
    display: none;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-body);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
}

.faq-answer strong {
    color: var(--navy);
}

@media (max-width: 380px) {
    .why-visual {
        height: 240px;
    }

    .why-stats-card {
        padding: 10px 8px;
    }

    .why-stats-row {
        gap: 8px;
    }

    .why-stat-num {
        font-size: 15px;
    }

    .why-stat-label {
        font-size: 9px;
    }
}

/* ==========================================================================
   Contact Page FAQ Section
   ========================================================================== */
.contact-faq-section {
    background: #f7f9fc;
    border-top: 1px solid rgba(8, 46, 103, 0.06);
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.contact-faq-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    border: 1px solid rgba(8, 46, 103, 0.08);
    box-shadow: 0 10px 30px rgba(3, 20, 62, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.contact-faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(3, 20, 62, 0.08);
    border-color: rgba(253, 123, 18, 0.4);
}

.contact-faq-badge {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(253, 123, 18, 0.12);
    color: var(--orange);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-faq-question {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 14px;
}

.contact-faq-answer {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--text-body);
    margin: 0;
}

.contact-faq-answer strong {
    color: var(--navy);
}

@media (max-width: 991px) {
    .contact-faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-faq-card {
        padding: 28px 24px;
        border-radius: 18px;
    }
}