/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #0052cc;
    --primary-dark: #003d99;
    --primary-light: #e6f0ff;
    --secondary: #00b894;
    --secondary-dark: #009b7d;
    --dark: #0a1628;
    --dark-lighter: #111d33;
    --accent: #ff6b35;
    --accent-dark: #e55a2b;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --shadow-xl: 0 16px 60px rgba(0,0,0,0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 1.05rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* ===== SECTION COMMON ===== */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--primary);
    background: var(--primary-light);
    margin-bottom: 16px;
}

.section-tag.light {
    color: var(--secondary);
    background: rgba(0, 184, 148, 0.15);
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 900px;
    margin: 0 auto;
}

.bg-light-custom {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 50%, var(--primary-light) 100%);
}

.bg-dark-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-lighter) 50%, #0d2137 100%);
}

/* ===== NAVBAR ===== */
.navbar {
    padding: 10px 0;
    transition: var(--transition);
    background: transparent;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-icon {
    font-size: 2rem;
    color: var(--secondary);
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.brand-highlight {
    color: var(--secondary);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-sales-portal {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
}

.btn-sales-portal:hover {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 8px 12px;
}

.navbar-toggler-icon {
    width: 1.8em;
    height: 1.8em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--dark) 0%, #0d2844 40%, var(--primary-dark) 100%);
    overflow: hidden;
    min-height: 100vh;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: -80px;
    left: -80px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    animation: float 12s ease-in-out infinite;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: var(--primary);
    bottom: 20%;
    right: 10%;
    animation: float 9s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(0, 184, 148, 0.15);
    border: 1px solid rgba(0, 184, 148, 0.3);
    border-radius: 50px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.8;
    max-width: 560px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 184, 148, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 184, 148, 0.5);
    color: var(--white);
}

.btn-hero-secondary {
    padding: 16px 36px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--secondary);
    font-size: 1.1rem;
}

/* Hero Visual Card */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.tracker-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 36px;
    width: 100%;
    max-width: 380px;
    position: relative;
}

.tracker-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 20px;
}

.tracker-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.tracker-label {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

.tracker-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
}

.tracker-status.active {
    color: var(--secondary);
    background: rgba(0, 184, 148, 0.15);
}

.tracker-status.active i {
    font-size: 0.5rem;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.tracker-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
}

.detail-row i {
    color: var(--secondary);
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.tracker-pulse {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
    box-shadow: 0 0 20px rgba(0, 184, 148, 0.5);
}

.floating-badge {
    position: absolute;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: floatBadge 4s ease-in-out infinite;
}

.badge-ais {
    top: 20px;
    right: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.badge-govt {
    bottom: 40px;
    left: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 82, 204, 0.4);
    animation-delay: -2s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.stat-icon {
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 12px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--white);
    display: inline;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    display: inline;
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    font-weight: 500;
    margin-top: 8px;
}

/* ===== ABOUT SECTION ===== */
.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.about-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 360px;
}

.about-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 36px 28px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.about-icon-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-icon-item i {
    font-size: 2.6rem;
    color: var(--primary);
}

.about-icon-item span {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--dark);
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.about-content p {
    margin-bottom: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.highlight-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.highlight-item i {
    font-size: 1.6rem;
    color: var(--primary);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 50%;
    flex-shrink: 0;
}

.highlight-item strong {
    display: block;
    color: var(--dark);
    font-size: 1.05rem;
}

.highlight-item span {
    font-size: 0.95rem;
    color: var(--gray-500);
}

/* ===== FEATURE CARDS ===== */
.feature-card {
    padding: 40px 32px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrap {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-light), rgba(0, 184, 148, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: var(--transition);
}

.feature-icon-wrap i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrap {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.feature-card:hover .feature-icon-wrap i {
    color: var(--white);
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.7;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: var(--transition);
    height: 100%;
    position: relative;
    text-align: center;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: rgba(0, 184, 148, 0.3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.service-step {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.service-card h5 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.7;
}

/* ===== RFC SECTION ===== */
.rfc-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.rfc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
}

.rfc-info-card h3 {
    font-size: 1.7rem;
    margin-bottom: 16px;
}

.rfc-info-card p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.rfc-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rfc-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.rfc-detail-item:hover {
    background: var(--primary-light);
}

.rfc-detail-icon {
    width: 46px;
    height: 46px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rfc-detail-icon i {
    color: var(--white);
    font-size: 1.05rem;
}

.rfc-detail-item strong {
    display: block;
    color: var(--dark);
    font-size: 1.05rem;
}

.rfc-detail-item span {
    font-size: 0.95rem;
    color: var(--gray-500);
}

/* RFC Process */
.rfc-process {
    position: relative;
}

.rfc-process h3 {
    font-size: 1.7rem;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 55px;
    width: 2px;
    height: calc(100% - 20px);
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.process-number {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--white);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.process-content h5 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.process-content p {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin: 0;
}

/* ===== VEHICLE CARDS ===== */
.vehicle-card {
    padding: 44px 36px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
}

.vehicle-card:hover,
.vehicle-card.active-vehicle:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.vehicle-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-light), rgba(0, 184, 148, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}

.vehicle-icon i {
    font-size: 2.4rem;
    color: var(--primary);
}

.vehicle-card h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.vehicle-card p {
    color: var(--gray-600);
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.vehicle-status {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
}

.vehicle-status.available {
    background: rgba(0, 184, 148, 0.1);
    color: var(--secondary);
}

.coming-soon-badge {
    display: inline-block;
    padding: 14px 32px;
    background: var(--white);
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-md);
    color: var(--gray-600);
    font-weight: 500;
    font-size: 1.05rem;
}

/* ===== LOCATION CARDS ===== */
.location-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    height: 100%;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 28px 0;
}

.location-pin {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-pin i {
    font-size: 1.4rem;
    color: var(--white);
}

.location-header h4 {
    font-size: 1.45rem;
    margin-bottom: 2px;
}

.location-type {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 500;
}

.location-body {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.location-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    color: var(--gray-600);
}

.location-detail i {
    color: var(--primary);
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.location-footer {
    padding: 0 28px 28px;
}

.btn-location {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1.05rem;
    width: 100%;
    text-align: center;
}

.btn-location:hover {
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.4);
    transform: translateY(-2px);
}

/* ===== WHY CHOOSE US ===== */
.why-card {
    padding: 40px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: rgba(0, 184, 148, 0.3);
}

.why-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}

.why-icon i {
    font-size: 1.6rem;
    color: var(--white);
}

.why-card h5 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.why-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.7;
}

/* ===== CONTACT SECTION ===== */
.contact-info-card {
    background: linear-gradient(135deg, var(--dark), var(--dark-lighter));
    border-radius: var(--radius-lg);
    padding: 44px;
    height: 100%;
    color: var(--white);
}

.contact-info-card h4 {
    color: var(--white);
    font-size: 1.7rem;
    margin-bottom: 12px;
}

.contact-info-card > p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 184, 148, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.contact-item strong {
    display: block;
    font-size: 1.05rem;
}

.contact-item span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
}

.contact-social {
    display: flex;
    gap: 14px;
}

.contact-social a {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    font-size: 1.05rem;
    transition: var(--transition);
    background: var(--gray-100);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.1);
    background: var(--white);
}

.btn-submit {
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 82, 204, 0.4);
    color: var(--white);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.6);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand h3 span {
    color: var(--secondary);
}

.footer-brand p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h5 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.05rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--secondary);
    padding-left: 6px;
}

.footer-contact h5 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.footer-contact-item i {
    color: var(--secondary);
    margin-top: 4px;
    width: 18px;
    text-align: center;
    font-size: 1.05rem;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.95rem;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.4);
}

.back-to-top:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 82, 204, 0.5);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-padding {
        padding: 70px 0;
    }

    .navbar-collapse {
        background: rgba(10, 22, 40, 0.98);
        border-radius: var(--radius-md);
        padding: 20px;
        margin-top: 12px;
    }

    .rfc-info-card {
        padding: 28px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 28px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-section {
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-badge {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.4rem;
    }

    .stat-suffix {
        font-size: 1.4rem;
    }

    .about-icon-grid {
        max-width: 280px;
    }

    .about-icon-item {
        padding: 24px 18px;
    }

    .location-card {
        margin-bottom: 0;
    }

    .footer-top {
        padding: 50px 0 30px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
    }

    .stat-card {
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 2rem;
    }
}
