/* ===================================
   Türkei Mietwagen - Main Styles
   Corporate & Clean Design System
   Premium Quality Design
   =================================== */

:root {
    --primary-color: #083164;
    --primary-dark: #061f3d;
    --primary-light: #0a3d7a;
    --primary-lighter: #1a4a8a;
    --accent-color: #0066cc;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --lighter-gray: #fafbfc;
    --text-dark: #1a1a1a;
    --text-gray: #6c757d;
    --text-light: #9ca3af;
    --border-color: #e5e7eb;
    --border-light: #f0f1f3;
    --shadow-sm: 0 1px 3px rgba(8, 49, 100, 0.04);
    --shadow-md: 0 4px 12px rgba(8, 49, 100, 0.08);
    --shadow-lg: 0 8px 24px rgba(8, 49, 100, 0.12);
    --shadow-xl: 0 12px 32px rgba(8, 49, 100, 0.15);
    --shadow-2xl: 0 20px 48px rgba(8, 49, 100, 0.18);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance Optimizations */
* {
    -webkit-tap-highlight-color: transparent;
}

button, a {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    font-weight: 400;
    letter-spacing: -0.015em;
    margin: 0;
    padding: 0;
    padding-top: 137px;
    overflow-x: hidden;
}

.mobile-menu-header {
    display: none;
}

@media (max-width: 991px) {
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100vh;
        touch-action: none;
        -webkit-overflow-scrolling: touch;
    }
    
    /* GPU Acceleration for smooth animations */
    .navbar-collapse,
    .navbar-collapse * {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-font-smoothing: antialiased;
    }
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Styling */
::selection {
    background-color: var(--primary-color);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Container Genişlik Ayarları */
.container {
    max-width: 1400px;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1600px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1800px;
    }
}

/* ===================================
   Header Wrapper - Fixed Container
   =================================== */

.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

/* Mobile menu should be above header */
@media (max-width: 991px) {
    .navbar-collapse {
        z-index: 10000 !important;
    }
}

/* ===================================
   Top Bar
   =================================== */

.topbar {
    background: var(--primary-color);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar .container {
    max-width: 1600px;
}

.topbar-link {
    color: rgba(255, 255, 255, 0.95);
    margin: 0 10px;
    font-weight: 400;
    transition: var(--transition-fast);
    text-decoration: none;
    font-size: 13px;
}

.topbar-link:hover {
    color: var(--white);
    text-decoration: none;
}

.topbar-separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 4px;
}

/* ===================================
   Header & Navigation
   =================================== */

.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 16px rgba(8, 49, 100, 0.06);
    border-bottom: 1px solid rgba(229, 231, 235, 0.6);
}

.header.scrolled {
    box-shadow: 0 4px 24px rgba(8, 49, 100, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

.navbar {
    padding: 18px 0;
    position: relative;
    transition: var(--transition-fast);
}

.navbar .container {
    max-width: 1600px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.navbar-brand {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.logo {
    height: 48px;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(8, 49, 100, 0.1));
}

.logo:hover {
    opacity: 1;
}

.navbar-collapse {
    flex-grow: 1;
}

.navbar-nav {
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 16px;
    margin: 0;
    position: relative;
    font-size: 15px;
    letter-spacing: -0.01em;
    transition: var(--transition-fast);
    border-radius: var(--radius-sm);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(8, 49, 100, 0.04);
}

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

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
    background: linear-gradient(135deg, rgba(8, 49, 100, 0.08) 0%, rgba(0, 102, 204, 0.06) 100%);
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

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

/* Header Rezervasyon Yap Button - COMPLETELY REBUILT */
.navbar-actions .btn-primary-custom {
    background: #083164 !important;
    background-image: linear-gradient(135deg, #083164 0%, #0066cc 100%) !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 22px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    letter-spacing: 0.5px !important;
    display: inline-block !important;
    text-transform: uppercase !important;
    box-shadow: 0 4px 12px rgba(8, 49, 100, 0.25) !important;
    text-decoration: none !important;
    position: relative !important;
    transition: all 0.2s ease !important;
}

.navbar-actions .btn-primary-custom:hover {
    background: #083164 !important;
    background-image: linear-gradient(135deg, #083164 0%, #0066cc 100%) !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(8, 49, 100, 0.35) !important;
    text-decoration: none !important;
}

.navbar-actions .btn-primary-custom:active {
    background: #083164 !important;
    background-image: linear-gradient(135deg, #083164 0%, #0066cc 100%) !important;
    color: #fff !important;
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px rgba(8, 49, 100, 0.2) !important;
    text-decoration: none !important;
}

.navbar-actions .btn-primary-custom:focus {
    background: #083164 !important;
    background-image: linear-gradient(135deg, #083164 0%, #0066cc 100%) !important;
    color: #fff !important;
    outline: none !important;
    text-decoration: none !important;
}

.navbar-actions .btn-primary-custom:visited {
    background: #083164 !important;
    background-image: linear-gradient(135deg, #083164 0%, #0066cc 100%) !important;
    color: #fff !important;
    text-decoration: none !important;
}

/* Remove any pseudo-elements that might hide text */
.navbar-actions .btn-primary-custom::before,
.navbar-actions .btn-primary-custom::after {
    display: none !important;
    content: none !important;
}

/* Force all link states to have white text */
.navbar-actions a.btn-primary-custom,
.navbar-actions a.btn-primary-custom:link,
.navbar-actions a.btn-primary-custom:visited,
.navbar-actions a.btn-primary-custom:hover,
.navbar-actions a.btn-primary-custom:active,
.navbar-actions a.btn-primary-custom:focus {
    color: #fff !important;
    text-decoration: none !important;
}

/* Maximum specificity override */
header .navbar .navbar-actions a[href*="rezervasyon"].btn-primary-custom,
header .navbar .navbar-actions a[href*="rezervasyon"].btn-primary-custom:hover,
header .navbar .navbar-actions a[href*="rezervasyon"].btn-primary-custom:focus,
header .navbar .navbar-actions a[href*="rezervasyon"].btn-primary-custom:active,
header .navbar .navbar-actions a[href*="rezervasyon"].btn-primary-custom:visited {
    color: #fff !important;
    background: #083164 !important;
    background-image: linear-gradient(135deg, #083164 0%, #0066cc 100%) !important;
    text-decoration: none !important;
}

.btn-lang {
    background: var(--white);
    border: 1.5px solid var(--border-color);
    color: var(--text-dark);
    padding: 9px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 6px rgba(8, 49, 100, 0.04);
}

.btn-lang i {
    font-size: 16px;
}

.btn-lang:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(8, 49, 100, 0.04) 0%, rgba(0, 102, 204, 0.03) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 49, 100, 0.12);
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white) !important;
    border: none;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-fast);
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(8, 49, 100, 0.25);
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary-custom:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(8, 49, 100, 0.35);
    color: var(--white) !important;
    text-decoration: none !important;
}

.btn-primary-custom:hover::before {
    opacity: 1;
}

.btn-primary-custom:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px rgba(8, 49, 100, 0.2);
}

.btn-primary-custom > * {
    position: relative;
    z-index: 1;
    color: var(--white) !important;
}

/* Ensure text stays white on all states */
.btn-primary-custom,
.btn-primary-custom:hover,
.btn-primary-custom:focus,
.btn-primary-custom:active,
.btn-primary-custom:visited {
    color: var(--white) !important;
    text-decoration: none !important;
}

/* Force all child elements to be white */
.btn-primary-custom *,
.btn-primary-custom:hover *,
.btn-primary-custom:focus *,
.btn-primary-custom:active *,
.btn-primary-custom:visited * {
    color: var(--white) !important;
}

.navbar-toggler {
    border: 1.5px solid var(--border-color);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    background: var(--white);
    transition: var(--transition-fast);
    box-shadow: 0 2px 6px rgba(8, 49, 100, 0.04);
}

.navbar-toggler:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(8, 49, 100, 0.04) 0%, rgba(0, 102, 204, 0.03) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(8, 49, 100, 0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 4px rgba(8, 49, 100, 0.12);
    border-color: var(--primary-color);
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23083164' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 22px;
    height: 22px;
}

/* ===================================
   Search Section
   =================================== */

.search-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--accent-color) 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.search-section .container {
    max-width: 1600px;
}

.search-form-wrapper {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 48px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(8, 49, 100, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    border: 1px solid rgba(229, 231, 235, 0.4);
    max-width: 1600px;
    margin: 0 auto;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid transparent;
    background: linear-gradient(90deg, var(--border-color) 0%, transparent 100%) bottom / 100% 2px no-repeat;
}

.search-title {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0;
    position: relative;
}

.btn-owner {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: var(--white) !important;
    border: none;
    padding: 10px 20px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition-fast);
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-owner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff8c42 0%, #ffa35c 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.btn-owner i {
    font-size: 16px;
    position: relative;
    z-index: 1;
    color: var(--white) !important;
}

.btn-owner-text {
    position: relative;
    z-index: 1;
    color: var(--white) !important;
}

.btn-owner:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: var(--white) !important;
}

.btn-owner:hover::before {
    opacity: 1;
}

.btn-owner:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.25);
}

/* Ensure text stays white on all states */
.btn-owner,
.btn-owner:hover,
.btn-owner:focus,
.btn-owner:active,
.btn-owner:visited {
    color: var(--white) !important;
    text-decoration: none !important;
}

/* Force all child elements to be white */
.btn-owner *,
.btn-owner:hover *,
.btn-owner:focus *,
.btn-owner:active *,
.btn-owner:visited * {
    color: var(--white) !important;
}

.rental-form {
    background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(229, 231, 235, 0.6);
    box-shadow: inset 0 2px 8px rgba(8, 49, 100, 0.03);
}

.rental-form .form-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rental-form .form-control,
.rental-form .form-select {
    border: 1.5px solid var(--border-color);
    padding: 13px 16px;
    font-size: 15px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    background: var(--white);
    font-weight: 500;
    letter-spacing: -0.01em;
    box-shadow: 0 1px 3px rgba(8, 49, 100, 0.02);
}

.rental-form .form-control:hover,
.rental-form .form-select:hover {
    border-color: rgba(8, 49, 100, 0.3);
    box-shadow: 0 2px 6px rgba(8, 49, 100, 0.06);
}

.rental-form .form-control:focus,
.rental-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(8, 49, 100, 0.12), 0 2px 8px rgba(8, 49, 100, 0.08);
    outline: none;
    background: var(--white);
    transform: translateY(-1px);
}

.btn-search {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white) !important;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-fast);
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(8, 49, 100, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-search::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.btn-search i {
    font-size: 16px;
    position: relative;
    z-index: 1;
    color: var(--white) !important;
}

.btn-search span {
    position: relative;
    z-index: 1;
    color: var(--white) !important;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 49, 100, 0.35);
    color: var(--white) !important;
}

.btn-search:hover::before {
    opacity: 1;
}

.btn-search:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(8, 49, 100, 0.2);
}

/* Ensure text stays white on all states */
.btn-search,
.btn-search:hover,
.btn-search:focus,
.btn-search:active {
    color: var(--white) !important;
}

/* Force all child elements to be white */
.btn-search *,
.btn-search:hover *,
.btn-search:focus *,
.btn-search:active * {
    color: var(--white) !important;
}

/* ===================================
   Sections
   =================================== */

.popular-cars,
.testimonials,
.faq {
    padding: 80px 0;
    position: relative;
}

.popular-cars .container,
.testimonials .container,
.faq .container {
    max-width: 1600px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: -0.03em;
    position: relative;
    padding-bottom: 0;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 44px;
    line-height: 1.6;
}

/* ===================================
   Car Cards
   =================================== */

.car-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(8, 49, 100, 0.04);
    position: relative;
}

.car-card:hover {
    box-shadow: 0 12px 32px rgba(8, 49, 100, 0.12);
    border-color: #e5e7eb;
    transform: translateY(-6px);
    background: #fafbfc;
}

.car-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.car-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.car-card:hover .car-image::after {
    opacity: 1;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.car-card:hover .car-image img {
    transform: scale(1.05);
}

.car-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
    position: relative;
}

.car-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.car-name {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.car-card:hover .car-name {
    color: var(--primary-color);
}

.car-features {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.car-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(8, 49, 100, 0.04) 0%, rgba(8, 49, 100, 0.06) 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(8, 49, 100, 0.08);
}

.car-card:hover .car-features span {
    background: linear-gradient(135deg, rgba(8, 49, 100, 0.08) 0%, rgba(8, 49, 100, 0.1) 100%);
    border-color: rgba(8, 49, 100, 0.12);
}

.car-features i {
    font-size: 15px;
    color: var(--primary-color);
}

.car-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.car-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    line-height: 1;
}

.period {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.btn-car-detail {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white) !important;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-fast);
    letter-spacing: 0.02em;
    margin-top: auto;
    box-shadow: 0 4px 12px rgba(8, 49, 100, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-car-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-car-detail span {
    position: relative;
    z-index: 2;
    color: var(--white) !important;
}

.btn-car-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 49, 100, 0.3);
    color: var(--white) !important;
}

.btn-car-detail:hover::before {
    opacity: 1;
}

.btn-car-detail:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(8, 49, 100, 0.15);
}

/* Ensure text stays white on all states */
.btn-car-detail,
.btn-car-detail:hover,
.btn-car-detail:focus,
.btn-car-detail:active,
.btn-car-detail:visited {
    color: var(--white) !important;
    text-decoration: none !important;
}

/* Force all child elements and text to be white */
.btn-car-detail *,
.btn-car-detail:hover *,
.btn-car-detail:focus *,
.btn-car-detail:active *,
.btn-car-detail:visited * {
    color: var(--white) !important;
}

/* ===================================
   Testimonials
   =================================== */

.testimonials {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
    box-shadow: 0 2px 8px rgba(8, 49, 100, 0.04);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 24px;
    left: 28px;
    font-size: 56px;
    font-weight: 700;
    color: rgba(8, 49, 100, 0.05);
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    box-shadow: 0 12px 32px rgba(8, 49, 100, 0.1);
    border-color: #e5e7eb;
    transform: translateY(-4px);
    background: #fafbfc;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 16px;
    font-size: 15px;
    display: flex;
    gap: 3px;
    filter: drop-shadow(0 1px 2px rgba(255, 193, 7, 0.3));
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
    position: relative;
    padding-left: 20px;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 3px;
    font-size: 15px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

/* ===================================
   FAQ Accordion
   =================================== */

.faq .accordion {
    max-width: 100%;
    margin: 0 auto;
}

.accordion-item {
    border: none;
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(8, 49, 100, 0.06);
    transition: var(--transition);
}

.accordion-item:hover {
    box-shadow: 0 4px 16px rgba(8, 49, 100, 0.1);
    background: #fafbfc;
}

.accordion-button {
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    padding: 20px 24px;
    font-size: 16px;
    transition: var(--transition);
    letter-spacing: -0.01em;
    border: none;
    box-shadow: none;
}

.accordion-button:hover {
    background: #fafbfc;
}

.accordion-button:not(.collapsed) {
    background: #f8f9fa;
    color: var(--primary-color);
    box-shadow: none;
    border-bottom: 1px solid var(--border-color);
}

.accordion-button::after {
    width: 1.5rem;
    height: 1.5rem;
    background-size: 1.5rem;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
    outline: none;
}

.accordion-body {
    padding: 20px 24px 24px;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 15px;
    background: #f8f9fa;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.footer .container {
    max-width: 1600px;
}

.footer-main {
    padding: 56px 0 36px;
}

.footer-widget {
    margin-bottom: 0;
}

.footer-widget-brand .footer-desc {
    display: block;
}

.footer-widget-brand .social-links {
    display: flex;
}

.footer-widget-contact {
    /* İletişim widget'ı için özel stiller */
}

.footer-logo {
    height: 40px;
    margin-bottom: 18px;
    transition: var(--transition-fast);
}

.footer-logo:hover {
    opacity: 0.9;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 20px;
    opacity: 0.92;
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 15px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-sm);
}

.social-links a:hover {
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.social-links a:hover::before {
    transform: scale(1);
}

.social-links a i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.social-links a:hover i {
    color: var(--primary-color);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--white), transparent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: var(--white);
    font-size: 14px;
    opacity: 0.88;
    transition: var(--transition-fast);
    display: inline-block;
    letter-spacing: -0.01em;
    position: relative;
    padding-left: 12px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--white);
    padding-left: 16px;
    transform: translateX(2px);
}

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

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    align-items: flex-start;
    transition: var(--transition-fast);
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-contact i {
    font-size: 15px;
    color: var(--white);
    opacity: 0.92;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact span {
    font-size: 14px;
    color: var(--white);
    opacity: 0.88;
    line-height: 1.6;
}

.footer-contact a {
    font-size: 14px;
    color: var(--white);
    opacity: 0.88;
    transition: var(--transition-fast);
    text-decoration: none;
}

.footer-contact a:hover {
    opacity: 1;
    color: var(--white);
}

.footer-company {
    text-align: center;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.2);
    position: relative;
}

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

.footer-company .company-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.footer-company .company-details {
    font-size: 12px;
    color: var(--white);
    opacity: 0.78;
    letter-spacing: 0.01em;
    line-height: 1.6;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    position: relative;
}

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

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    opacity: 0.88;
    letter-spacing: 0.01em;
    color: var(--white);
}

.footer-bottom strong {
    font-weight: 700;
    background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-links-mobile {
    justify-content: center;
    gap: 10px;
    padding: 24px 0 0;
}

.social-links-mobile a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 17px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.social-links-mobile a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-sm);
}

.social-links-mobile a:hover {
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.social-links-mobile a:hover::before {
    transform: scale(1);
}

.social-links-mobile a i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.social-links-mobile a:hover i {
    color: var(--primary-color);
}

/* ===================================
   Language Modal
   =================================== */

.modal-content {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(8, 49, 100, 0.2);
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 24px;
    background: var(--white);
    position: relative;
}

.modal-title {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 17px;
    letter-spacing: -0.01em;
}

.modal-body {
    padding: 24px;
}

.lang-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lang-item {
    padding: 16px 20px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    display: block;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-fast);
    background: var(--white);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.lang-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 49, 100, 0.04) 0%, rgba(0, 102, 204, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lang-item:hover {
    border-color: var(--primary-color);
    transform: translateX(4px);
}

.lang-item:hover::before {
    opacity: 1;
}

.lang-item.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    border-color: transparent;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(8, 49, 100, 0.25);
}

.lang-item.active::before {
    display: none;
}

.lang-item span {
    position: relative;
    z-index: 1;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1199px) {
    .container {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .search-form-wrapper {
        padding: 32px 24px;
    }
    
    .search-header {
        flex-direction: row;
        gap: 16px;
        align-items: center;
        justify-content: space-between;
    }
    
    .search-title {
        font-size: 26px;
        margin: 0;
    }
    
    .btn-owner {
        padding: 8px 14px;
        font-size: 12px;
        background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
        color: var(--white);
        border: none;
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
        font-weight: 600;
        text-decoration: none;
        white-space: nowrap;
        flex-shrink: 0;
        border-radius: 20px;
        letter-spacing: 0.02em;
    }
    
    .btn-owner i {
        display: none;
    }
    
    .btn-owner-text {
        font-size: 12px;
    }
    
    .btn-owner::before {
        display: none;
    }
    
    .btn-owner:hover {
        background: linear-gradient(135deg, #ff8c42 0%, #ffa35c 100%);
        color: var(--white);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
        text-decoration: none;
    }
    
    .rental-form {
        padding: 24px 20px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .popular-cars,
    .testimonials,
    .faq {
        padding: 60px 0;
    }
    
    /* Hide footer brand and contact on tablet */
    .footer-widget-brand {
        display: none !important;
    }
    
    .footer-widget-contact {
        display: none !important;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 105px;
    }
    
    .header-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
    }
    
    .topbar {
        font-size: 11px;
        padding: 6px 0;
        min-height: 32px;
        display: flex;
        align-items: center;
    }
    
    .topbar .container {
        padding: 0 12px;
    }
    
    .topbar .row {
        margin: 0;
    }
    
    .topbar-link {
        margin: 0 6px;
        font-size: 11px;
        white-space: nowrap;
    }
    
    .topbar-separator {
        margin: 0 3px;
    }
    
    .header {
        top: 32px;
    }
    
    .logo {
        height: 48px;
        filter: drop-shadow(0 2px 4px rgba(8, 49, 100, 0.1));
    }
    
    .navbar {
        padding: 14px 0;
    }
    
    .navbar-toggler {
        padding: 8px 12px;
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .navbar-toggler-icon {
        width: 20px;
        height: 20px;
    }
    
    .search-section {
        padding: 40px 0;
    }
    
    .search-form-wrapper {
        padding: 24px 16px;
    }
    
    .search-header {
        padding-bottom: 16px;
        margin-bottom: 24px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }
    
    .search-title {
        font-size: 22px;
        padding-left: 16px;
        margin: 0;
        flex: 1;
    }
    
    .search-title::before {
        width: 4px;
        height: 32px;
    }
    
    .btn-owner {
        padding: 7px 12px;
        font-size: 11px;
        background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
        color: var(--white);
        border: none;
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
        font-weight: 600;
        text-decoration: none;
        white-space: nowrap;
        flex-shrink: 0;
        border-radius: 18px;
        letter-spacing: 0.02em;
    }
    
    .btn-owner i {
        display: none;
    }
    
    .btn-owner-text {
        font-size: 11px;
    }
    
    .btn-owner::before {
        display: none;
    }
    
    .btn-owner:hover {
        background: linear-gradient(135deg, #ff8c42 0%, #ffa35c 100%);
        color: var(--white);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
        text-decoration: none;
    }
    
    .rental-form {
        padding: 20px 16px;
    }
    
    .rental-form .form-label {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .rental-form .form-control,
    .rental-form .form-select {
        padding: 11px 14px;
        font-size: 14px;
    }
    
    .btn-search {
        padding: 11px 20px;
        font-size: 14px;
    }
    
    .popular-cars,
    .testimonials,
    .faq {
        padding: 48px 0;
    }
    
    .section-title {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }
    
    .popular-cars,
    .testimonials,
    .faq {
        padding: 48px 0;
    }
    
    .car-name {
        font-size: 16px;
    }
    
    .car-features {
        font-size: 12px;
    }
    
    .price {
        font-size: 24px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
        padding-left: 16px;
    }
    
    .accordion-button {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .accordion-body {
        padding: 16px;
        font-size: 14px;
    }
    
    .footer {
        padding: 0;
    }
    
    .footer-main {
        padding: 40px 0 32px;
    }
    
    .footer-widget-brand {
        display: none !important;
    }
    
    .footer-widget-contact {
        display: none !important;
    }
    
    .footer-widget {
        text-align: left;
        margin-bottom: 40px;
    }
    
    .footer-widget:last-child {
        margin-bottom: 0;
    }
    
    .footer-title {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .footer-title::after {
        left: 0;
    }
    
    .footer-widget-brand .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .footer-company {
        padding: 24px 0;
    }
    
    .footer-company .company-name {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .footer-company .company-details {
        font-size: 11px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}

/* ===================================
   Animations & Keyframes
   =================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* ===================================
   Utility Classes
   =================================== */

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

.slide-in-up {
    animation: slideInUp 0.6s ease-out;
}

.scale-in {
    animation: scaleIn 0.5s ease-out;
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* ===================================
   Focus Visible Styles
   =================================== */

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===================================
   Scrollbar Styling
   =================================== */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
    transition: var(--transition-fast);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ===================================
   Loading States
   =================================== */

.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===================================
   Print Styles
   =================================== */

@media print {
    .topbar,
    .navbar,
    .search-section,
    .footer,
    .btn-primary-custom,
    .btn-search,
    .btn-owner {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    .car-card,
    .testimonial-card,
    .accordion-item {
        page-break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}

/* ===================================
   Accessibility Improvements
   =================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --border-color: #000;
        --text-gray: #000;
    }
    
    .car-card,
    .testimonial-card,
    .accordion-item {
        border: 2px solid #000 !important;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Uncomment to enable dark mode
    :root {
        --white: #1a1a1a;
        --text-dark: #ffffff;
        --light-gray: #2a2a2a;
        --lighter-gray: #252525;
        --border-color: #3a3a3a;
    }
    */
}

/* ===================================
   Premium Design Enhancements
   =================================== */

/* Smooth Page Load Animation */
body {
    animation: fadeIn 0.5s ease-out;
}

/* Enhanced Focus States */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Glassmorphism Effect for Cards */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Gradient Text Utility */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium Shadow Utilities */
.shadow-premium {
    box-shadow: 0 8px 32px rgba(8, 49, 100, 0.12), 0 2px 8px rgba(8, 49, 100, 0.08);
}

.shadow-premium-lg {
    box-shadow: 0 20px 60px rgba(8, 49, 100, 0.15), 0 4px 16px rgba(8, 49, 100, 0.1);
}

/* Hover Lift Effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(8, 49, 100, 0.15);
}

/* Gradient Border Effect */
.gradient-border {
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: inherit;
    z-index: -1;
}

/* Pulse Animation for CTAs */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(8, 49, 100, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(8, 49, 100, 0);
    }
}

.pulse-effect {
    animation: pulse 2s infinite;
}

/* Smooth Reveal on Scroll */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Premium Button Glow Effect */
.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-glow:hover::after {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

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

/* ===================================
   Vision & Mission Page Styles
   =================================== */

/* Hero Section */
.vision-hero-section {
    background: linear-gradient(135deg, #083164 0%, #0a3d7a 50%, #0066cc 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.vision-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.vision-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.6s ease;
}

.vision-hero-badge i {
    font-size: 16px;
}

.vision-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.vision-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Vision & Mission Cards */
.vision-mission-card {
    background: #fff;
    border-radius: 20px;
    padding: 48px 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(8, 49, 100, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #083164, #0066cc);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(8, 49, 100, 0.15);
    border-color: #d1d5db;
}

.vision-mission-card:hover::before {
    transform: scaleX(1);
}

.vm-card-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 32px;
}

.vm-card-icon {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-icon {
    background: linear-gradient(135deg, rgba(8, 49, 100, 0.1) 0%, rgba(0, 102, 204, 0.15) 100%);
    color: #083164;
}

.mission-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.15) 100%);
    color: #059669;
}

.vm-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.vision-card .vm-card-glow {
    background: radial-gradient(circle, rgba(8, 49, 100, 0.2) 0%, transparent 70%);
}

.mission-card .vm-card-glow {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
}

.vision-mission-card:hover .vm-card-glow {
    opacity: 1;
}

.vision-mission-card:hover .vm-card-icon {
    transform: scale(1.05) rotate(5deg);
}

.vm-card-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.vm-card-description {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 28px;
}

.vm-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vm-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.vm-card-list li:hover {
    background: rgba(8, 49, 100, 0.03);
    transform: translateX(4px);
}

.vm-list-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 14px;
}

.vision-card .vm-list-icon {
    background: linear-gradient(135deg, rgba(8, 49, 100, 0.1) 0%, rgba(0, 102, 204, 0.15) 100%);
    color: #083164;
}

.mission-card .vm-list-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.15) 100%);
    color: #059669;
}

.vm-card-list li span {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 500;
    line-height: 1.6;
}

/* Section Titles */
.section-title-modern {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.section-title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #083164, #0066cc);
    margin: 0 auto;
    border-radius: 2px;
}

/* Values Section */
.values-section {
    padding: 40px 0;
}

.value-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    height: 100%;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(8, 49, 100, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 49, 100, 0.02) 0%, rgba(0, 102, 204, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(8, 49, 100, 0.12);
    border-color: #d1d5db;
}

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

.value-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.value-primary {
    background: linear-gradient(135deg, rgba(8, 49, 100, 0.1) 0%, rgba(0, 102, 204, 0.15) 100%);
    color: #083164;
}

.value-danger {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(239, 68, 68, 0.15) 100%);
    color: #dc2626;
}

.value-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.15) 100%);
    color: #f59e0b;
}

.value-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.15) 100%);
    color: #059669;
}

.value-card:hover .value-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
}

.value-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.value-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Goals Section */
.goals-section {
    padding: 40px 0;
}

.goal-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    gap: 20px;
    height: 100%;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(8, 49, 100, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #083164, #0066cc);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.goal-card:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(8, 49, 100, 0.12);
    border-color: #d1d5db;
}

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

.goal-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.goal-primary {
    background: linear-gradient(135deg, rgba(8, 49, 100, 0.1) 0%, rgba(0, 102, 204, 0.15) 100%);
    color: #083164;
}

.goal-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.15) 100%);
    color: #059669;
}

.goal-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.15) 100%);
    color: #f59e0b;
}

.goal-info {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(14, 165, 233, 0.15) 100%);
    color: #0891b2;
}

.goal-card:hover .goal-icon {
    transform: scale(1.1) rotate(5deg);
}

.goal-content {
    flex: 1;
}

.goal-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.goal-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.vision-cta-section {
    padding: 40px 0 0;
}

.vision-cta-card {
    background: linear-gradient(135deg, #083164 0%, #0a3d7a 50%, #0066cc 100%);
    border-radius: 20px;
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(8, 49, 100, 0.2);
}

.vision-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.vision-cta-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.vision-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.vision-cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.vision-cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

.vision-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #083164 !important;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.vision-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
}

.vision-cta-btn i {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .vision-hero-title {
        font-size: 36px;
    }
    
    .vision-hero-subtitle {
        font-size: 16px;
    }
    
    .vision-mission-card {
        padding: 36px 28px;
        margin-bottom: 24px;
    }
    
    .vm-card-title {
        font-size: 24px;
    }
    
    .section-title-modern {
        font-size: 28px;
    }
    
    .goal-card {
        flex-direction: column;
        text-align: center;
    }
    
    .goal-icon {
        margin: 0 auto;
    }
    
    .vision-cta-card {
        padding: 40px 28px;
    }
    
    .vision-cta-title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .vision-hero-section {
        padding: 60px 0 80px;
    }
    
    .vision-hero-title {
        font-size: 28px;
    }
    
    .vm-card-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
    
    .value-icon-wrapper {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }
}

/* ===================================
   Agreement Page Styles
   =================================== */

/* Agreement Hero Section */
.agreement-hero-section {
    background: linear-gradient(135deg, #083164 0%, #0a3d7a 50%, #0066cc 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.agreement-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.agreement-hero-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.6s ease;
}

.agreement-hero-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.agreement-hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* Agreement Card */
.agreement-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(8, 49, 100, 0.08);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.agreement-card-body {
    padding: 48px;
}

/* Agreement Content */
.agreement-content {
    position: relative;
}

/* Agreement Section */
.agreement-section {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.agreement-section:last-of-type {
    border-bottom: none;
    margin-bottom: 32px;
    padding-bottom: 0;
}

.agreement-section-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #083164 0%, #0066cc 100%);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(8, 49, 100, 0.2);
    position: relative;
}

.agreement-section-number::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + 40px);
    background: linear-gradient(180deg, #e5e7eb 0%, transparent 100%);
}

.agreement-section:last-of-type .agreement-section-number::after {
    display: none;
}

.agreement-section-content {
    flex: 1;
    padding-top: 4px;
}

.agreement-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #083164;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.agreement-text {
    font-size: 15px;
    color: #1a1a1a;
    line-height: 1.8;
    text-align: justify;
    margin: 0;
}

.agreement-text strong {
    color: #083164;
    font-weight: 600;
}

/* Agreement List */
.agreement-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.agreement-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(8, 49, 100, 0.02) 0%, rgba(0, 102, 204, 0.03) 100%);
    border-radius: 10px;
    border-left: 3px solid #0066cc;
    font-size: 15px;
    color: #1a1a1a;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.agreement-list li:hover {
    background: linear-gradient(135deg, rgba(8, 49, 100, 0.04) 0%, rgba(0, 102, 204, 0.05) 100%);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(8, 49, 100, 0.08);
}

.agreement-list li:last-child {
    margin-bottom: 0;
}

.list-number {
    flex-shrink: 0;
    font-weight: 700;
    color: #083164;
    min-width: 32px;
}

/* Agreement Footer */
.agreement-footer {
    background: linear-gradient(135deg, rgba(8, 49, 100, 0.04) 0%, rgba(0, 102, 204, 0.06) 100%);
    border: 1px solid rgba(8, 49, 100, 0.1);
    border-radius: 16px;
    padding: 28px 32px;
    text-align: center;
    margin-top: 40px;
}

.agreement-footer-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.agreement-footer-text {
    font-size: 15px;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 991px) {
    .agreement-hero-title {
        font-size: 32px;
    }
    
    .agreement-card-body {
        padding: 32px 24px;
    }
    
    .agreement-section {
        gap: 16px;
        margin-bottom: 32px;
        padding-bottom: 32px;
    }
    
    .agreement-section-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .agreement-section-title {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .agreement-hero-section {
        padding: 40px 0 60px;
    }
    
    .agreement-hero-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }
    
    .agreement-hero-title {
        font-size: 24px;
    }
    
    .agreement-hero-subtitle {
        font-size: 14px;
    }
    
    .agreement-card-body {
        padding: 24px 16px;
    }
    
    .agreement-section {
        flex-direction: column;
        gap: 12px;
    }
    
    .agreement-section-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .agreement-section-number::after {
        display: none;
    }
    
    .agreement-section-title {
        font-size: 16px;
    }
    
    .agreement-text,
    .agreement-list li {
        font-size: 14px;
    }
    
    .agreement-list li {
        padding: 12px 14px;
    }
    
    .agreement-footer {
        padding: 20px 16px;
    }
    
    .agreement-footer-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .agreement-footer-text {
        font-size: 14px;
    }
}

/* ===================================
   Corporate Page Styles
   =================================== */

/* Corporate Hero Section */
.corporate-hero-section {
    background: linear-gradient(135deg, #083164 0%, #0a3d7a 50%, #0066cc 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.corporate-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.corporate-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.6s ease;
}

.corporate-hero-badge i {
    font-size: 14px;
}

.corporate-hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.corporate-hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* Corporate About Section */
.corporate-about-section {
    padding: 60px 0;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.corporate-about-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(8, 49, 100, 0.12);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.corporate-about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #083164, #0066cc);
}

.corporate-about-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(8, 49, 100, 0.1) 0%, rgba(0, 102, 204, 0.15) 100%);
    color: #083164;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.corporate-about-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.corporate-about-text {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* Corporate Info Section */
.corporate-info-section {
    padding: 50px 0;
}

.corporate-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    height: 100%;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(8, 49, 100, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.corporate-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 49, 100, 0.02) 0%, rgba(0, 102, 204, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.corporate-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(8, 49, 100, 0.12);
    border-color: #d1d5db;
}

.corporate-info-card:hover::before {
    opacity: 1;
}

.corporate-info-icon {
    width: 68px;
    height: 68px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.corporate-info-primary {
    background: linear-gradient(135deg, rgba(8, 49, 100, 0.1) 0%, rgba(0, 102, 204, 0.15) 100%);
    color: #083164;
}

.corporate-info-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.15) 100%);
    color: #059669;
}

.corporate-info-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.15) 100%);
    color: #f59e0b;
}

.corporate-info-info {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(14, 165, 233, 0.15) 100%);
    color: #0891b2;
}

.corporate-info-card:hover .corporate-info-icon {
    transform: scale(1.1) rotate(-5deg);
}

.corporate-info-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.corporate-info-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Corporate Links Section */
.corporate-links-section {
    padding: 50px 0 70px;
}

.corporate-links-section .row.mb-4 {
    margin-bottom: 40px !important;
}

.corporate-link-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(8, 49, 100, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.corporate-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 49, 100, 0.04) 0%, rgba(0, 102, 204, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.corporate-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(8, 49, 100, 0.15);
    border-color: #0066cc;
}

.corporate-link-card:hover::before {
    opacity: 1;
}

.corporate-link-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(8, 49, 100, 0.1) 0%, rgba(0, 102, 204, 0.15) 100%);
    color: #083164;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.corporate-link-card:hover .corporate-link-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #083164 0%, #0066cc 100%);
    color: #fff;
}

.corporate-link-title {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.corporate-link-card:hover .corporate-link-title {
    color: #083164;
}

.corporate-link-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.corporate-link-arrow {
    width: 38px;
    height: 38px;
    background: rgba(8, 49, 100, 0.1);
    color: #083164;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.corporate-link-card:hover .corporate-link-arrow {
    background: #083164;
    color: #fff;
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .corporate-hero-section {
        padding: 50px 0 70px;
    }
    
    .corporate-hero-title {
        font-size: 34px;
    }
    
    .corporate-hero-subtitle {
        font-size: 16px;
    }
    
    .corporate-about-section {
        padding: 50px 0;
        margin-top: -25px;
    }
    
    .corporate-about-card {
        padding: 32px 28px;
    }
    
    .corporate-about-title {
        font-size: 24px;
    }
    
    .corporate-about-text {
        font-size: 15px;
    }
    
    .corporate-info-section {
        padding: 40px 0;
    }
    
    .corporate-links-section {
        padding: 40px 0 60px;
    }
}

@media (max-width: 767px) {
    .corporate-hero-section {
        padding: 40px 0 60px;
    }
    
    .corporate-hero-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .corporate-hero-subtitle {
        font-size: 15px;
    }
    
    .corporate-about-section {
        padding: 40px 0;
        margin-top: -20px;
    }
    
    .corporate-about-card {
        padding: 28px 20px;
    }
    
    .corporate-about-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
        margin-bottom: 16px;
    }
    
    .corporate-about-title {
        font-size: 22px;
        margin-bottom: 14px;
    }
    
    .corporate-about-text {
        font-size: 14px;
    }
    
    .corporate-info-section {
        padding: 30px 0;
    }
    
    .corporate-info-card {
        padding: 24px 18px;
    }
    
    .corporate-info-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
        margin-bottom: 14px;
    }
    
    .corporate-info-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .corporate-info-text {
        font-size: 13px;
    }
    
    .corporate-links-section {
        padding: 30px 0 50px;
    }
    
    .corporate-links-section .row.mb-4 {
        margin-bottom: 30px !important;
    }
    
    .corporate-link-card {
        padding: 28px 20px;
    }
    
    .corporate-link-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
        margin-bottom: 14px;
    }
    
    .corporate-link-title {
        font-size: 17px;
        margin-bottom: 8px;
    }
    
    .corporate-link-text {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .corporate-link-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* ===================================
   Complaint Form Page Styles
   =================================== */

/* Complaint Hero Section */
.complaint-hero-section {
    background: linear-gradient(135deg, #083164 0%, #0a3d7a 50%, #0066cc 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.complaint-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.complaint-hero-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.6s ease;
}

.complaint-hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.complaint-hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* Modern Alert Styles */
.alert-modern {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 12px;
    border: none;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.alert-modern.alert-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.15) 100%);
    border-left: 4px solid #10b981;
}

.alert-modern.alert-danger {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.15) 100%);
    border-left: 4px solid #ef4444;
}

.alert-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.alert-success .alert-icon {
    background: #10b981;
    color: #fff;
}

.alert-danger .alert-icon {
    background: #ef4444;
    color: #fff;
}

.alert-content {
    flex: 1;
}

.alert-content strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.alert-content p {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
}

/* Complaint Form Card */
.complaint-form-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(8, 49, 100, 0.08);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.complaint-form-header {
    background: linear-gradient(135deg, rgba(8, 49, 100, 0.04) 0%, rgba(0, 102, 204, 0.06) 100%);
    padding: 32px 40px;
    border-bottom: 1px solid #e5e7eb;
}

.complaint-form-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.complaint-form-title i {
    color: #083164;
    font-size: 26px;
}

.complaint-form-subtitle {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.complaint-form {
    padding: 40px;
}

/* Modern Form Styles */
.form-group-modern {
    margin-bottom: 0;
}

.form-label-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.form-label-modern i {
    color: #083164;
    font-size: 16px;
}

.form-control-modern {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #fff;
    color: #1a1a1a;
}

.form-control-modern:hover {
    border-color: rgba(8, 49, 100, 0.3);
}

.form-control-modern:focus {
    outline: none;
    border-color: #083164;
    box-shadow: 0 0 0 4px rgba(8, 49, 100, 0.1);
    background: #fff;
}

.form-control-modern::placeholder {
    color: #9ca3af;
}

textarea.form-control-modern {
    resize: vertical;
    min-height: 120px;
}

/* Modern Checkbox */
.form-check-modern {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(8, 49, 100, 0.02) 0%, rgba(0, 102, 204, 0.03) 100%);
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.form-check-input-modern {
    width: 20px;
    height: 20px;
    border: 2px solid #083164;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-check-input-modern:checked {
    background-color: #083164;
    border-color: #083164;
}

.form-check-label-modern {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    cursor: pointer;
}

.form-check-label-modern a {
    color: #083164;
    font-weight: 600;
    text-decoration: none;
}

.form-check-label-modern a:hover {
    text-decoration: underline;
}

/* Submit Button */
.btn-submit-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #083164 0%, #0066cc 100%);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(8, 49, 100, 0.25);
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 49, 100, 0.35);
}

.btn-submit-modern:active {
    transform: translateY(0);
}

.btn-submit-modern i {
    font-size: 18px;
}

/* Contact Info Section */
.contact-info-section {
    margin-top: 40px;
}

.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    height: 100%;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(8, 49, 100, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(8, 49, 100, 0.12);
    border-color: #d1d5db;
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
    transition: all 0.4s ease;
}

.contact-info-primary {
    background: linear-gradient(135deg, rgba(8, 49, 100, 0.1) 0%, rgba(0, 102, 204, 0.15) 100%);
    color: #083164;
}

.contact-info-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.15) 100%);
    color: #059669;
}

.contact-info-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.15) 100%);
    color: #f59e0b;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(-5deg);
}

.contact-info-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-info-text {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 991px) {
    .complaint-hero-section {
        padding: 50px 0 70px;
    }
    
    .complaint-hero-title {
        font-size: 34px;
    }
    
    .complaint-form-header {
        padding: 28px 32px;
    }
    
    .complaint-form {
        padding: 32px 28px;
    }
}

@media (max-width: 767px) {
    .complaint-hero-section {
        padding: 40px 0 60px;
    }
    
    .complaint-hero-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }
    
    .complaint-hero-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .complaint-hero-subtitle {
        font-size: 15px;
    }
    
    .complaint-form-card {
        margin-top: -20px;
    }
    
    .complaint-form-header {
        padding: 24px 20px;
    }
    
    .complaint-form-title {
        font-size: 20px;
    }
    
    .complaint-form-title i {
        font-size: 22px;
    }
    
    .complaint-form {
        padding: 24px 20px;
    }
    
    .form-label-modern {
        font-size: 13px;
    }
    
    .form-control-modern {
        padding: 11px 14px;
        font-size: 14px;
    }
    
    .btn-submit-modern {
        width: 100%;
        justify-content: center;
        padding: 13px 28px;
        font-size: 15px;
    }
    
    .contact-info-card {
        padding: 24px 20px;
    }
    
    .contact-info-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
}

/* ===================================
   How It Works Page Styles
   =================================== */

/* ============================================
   HOW IT WORKS PAGE - MODERN DESIGN
   ============================================ */

/* Hero Section */
.how-it-works-hero-section {
    background: linear-gradient(135deg, #083164 0%, #0a3d7a 50%, #0066cc 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

.how-it-works-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.how-it-works-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.6s ease;
}

.how-it-works-hero-badge i {
    font-size: 16px;
}

.how-it-works-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.how-it-works-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.how-it-works-hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.hero-feature-item i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* Steps Section */
.steps-section {
    margin-bottom: 80px;
}

.step-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    height: 100%;
    border: 2px solid #f0f2f5;
    box-shadow: 0 4px 20px rgba(8, 49, 100, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 49, 100, 0.03) 0%, rgba(0, 102, 204, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(8, 49, 100, 0.15);
    border-color: #e0e4e8;
}

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

.step-number-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.step-number-badge span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #083164 0%, #0066cc 100%);
    color: #fff;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(8, 49, 100, 0.3);
    border: 3px solid #fff;
}

.step-icon-wrapper {
    position: relative;
    display: inline-block;
    margin: 24px auto 24px;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.step-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.15;
    transition: all 0.4s ease;
    z-index: 1;
}

.step-icon-primary {
    background: linear-gradient(135deg, rgba(8, 49, 100, 0.12) 0%, rgba(0, 102, 204, 0.18) 100%);
    color: #083164;
}

.step-card-1 .step-icon-bg {
    background: #083164;
}

.step-icon-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(5, 150, 105, 0.18) 100%);
    color: #059669;
}

.step-card-2 .step-icon-bg {
    background: #10b981;
}

.step-icon-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(251, 191, 36, 0.18) 100%);
    color: #f59e0b;
}

.step-card-3 .step-icon-bg {
    background: #f59e0b;
}

.step-icon-info {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.12) 0%, rgba(14, 165, 233, 0.18) 100%);
    color: #0891b2;
}

.step-card-4 .step-icon-bg {
    background: #0891b2;
}

.step-card:hover .step-icon {
    transform: scale(1.15) rotate(-8deg);
}

.step-card:hover .step-icon-bg {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.25;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.step-text {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.step-connector {
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    width: 80px;
    z-index: 0;
}

.connector-line {
    height: 2px;
    background: linear-gradient(90deg, #083164 0%, transparent 100%);
    position: relative;
}

.connector-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #083164;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.connector-dot {
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #0066cc;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.2);
}

.step-card-4 .step-connector {
    display: none;
}

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(8, 49, 100, 0.08) 0%, rgba(0, 102, 204, 0.12) 100%);
    padding: 10px 20px;
    border-radius: 50px;
    color: #083164;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(8, 49, 100, 0.15);
}

.section-badge i {
    font-size: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: #6c757d;
    max-width: 600px;
    margin: 12px auto 0;
    line-height: 1.6;
}

/* Detailed Process Section */
.detailed-process-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 50%, #fafbfc 100%);
}

.process-timeline {
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: linear-gradient(180deg, #083164, #0066cc, #083164);
    border-radius: 2px;
}

.process-item {
    display: flex;
    gap: 28px;
    margin-bottom: 48px;
    position: relative;
}

.process-item:last-child {
    margin-bottom: 0;
}

.process-number {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #083164 0%, #0066cc 100%);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 6px 16px rgba(8, 49, 100, 0.3);
    position: relative;
    z-index: 2;
    border: 3px solid #fff;
}

.process-content {
    flex: 1;
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 2px solid #f0f2f5;
    box-shadow: 0 4px 16px rgba(8, 49, 100, 0.08);
    transition: all 0.3s ease;
}

.process-content:hover {
    box-shadow: 0 8px 24px rgba(8, 49, 100, 0.12);
    transform: translateX(8px);
    border-color: #e0e4e8;
}

.process-title {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.process-title i {
    color: #083164;
    font-size: 22px;
    flex-shrink: 0;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-list li {
    padding: 10px 0 10px 32px;
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
    position: relative;
}

.process-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-list li::after {
    content: '✓';
    position: absolute;
    left: 5px;
    top: 14px;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-section .accordion-item {
    border: 2px solid #f0f2f5;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-section .accordion-item:hover {
    border-color: #e0e4e8;
    box-shadow: 0 4px 16px rgba(8, 49, 100, 0.08);
}

.faq-section .accordion-button {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 20px 24px;
    background: #fff;
    border: none;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(8, 49, 100, 0.05) 0%, rgba(0, 102, 204, 0.08) 100%);
    color: #083164;
}

.faq-section .accordion-button::after {
    width: 28px;
    height: 28px;
    background-color: #083164;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
}

.faq-section .accordion-body {
    padding: 20px 24px 24px;
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
}

/* CTA Section */
.how-it-works-cta-section {
    padding: 80px 0 0;
}

.how-it-works-cta-card {
    background: linear-gradient(135deg, #083164 0%, #0a3d7a 50%, #0066cc 100%);
    border-radius: 24px;
    padding: 70px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(8, 49, 100, 0.25);
}

.how-it-works-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-icon-decoration {
    position: absolute;
    top: -30px;
    right: 50px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: rgba(255, 255, 255, 0.15);
}

.how-it-works-cta-decoration {
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.how-it-works-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.how-it-works-cta-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.how-it-works-cta-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 36px;
    line-height: 1.6;
}

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

.how-it-works-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.how-it-works-cta-btn.primary {
    background: #fff;
    color: #083164 !important;
}

.how-it-works-cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
}

.how-it-works-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.how-it-works-cta-btn.secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.how-it-works-cta-btn i {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .how-it-works-hero-section {
        padding: 60px 0 80px;
        margin-bottom: 60px;
    }
    
    .how-it-works-hero-title {
        font-size: 38px;
    }
    
    .how-it-works-hero-features {
        gap: 24px;
    }
    
    .step-connector {
        display: none;
    }
    
    .steps-section {
        margin-bottom: 60px;
    }
    
    .detailed-process-section {
        padding: 60px 0;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .how-it-works-cta-section {
        padding: 60px 0 0;
    }
    
    .how-it-works-cta-card {
        padding: 56px 40px;
    }
    
    .cta-icon-decoration {
        width: 100px;
        height: 100px;
        font-size: 40px;
        right: 30px;
    }
}

@media (max-width: 767px) {
    .how-it-works-hero-section {
        padding: 50px 0 70px;
        margin-bottom: 50px;
    }
    
    .how-it-works-hero-badge {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .how-it-works-hero-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .how-it-works-hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .how-it-works-hero-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .steps-section {
        margin-bottom: 50px;
    }
    
    .step-card {
        padding: 32px 24px;
    }
    
    .step-number-badge span {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    
    .step-icon {
        width: 72px;
        height: 72px;
        font-size: 32px;
    }
    
    .step-icon-bg {
        width: 90px;
        height: 90px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .step-text {
        font-size: 14px;
    }
    
    .detailed-process-section {
        padding: 50px 0;
    }
    
    .process-timeline::before {
        left: 16px;
    }
    
    .process-item {
        gap: 20px;
        margin-bottom: 36px;
    }
    
    .process-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .process-content {
        padding: 24px;
    }
    
    .process-title {
        font-size: 17px;
    }
    
    .process-list li {
        font-size: 14px;
        padding: 8px 0 8px 28px;
    }
    
    .process-list li::before {
        width: 18px;
        height: 18px;
    }
    
    .process-list li::after {
        left: 4px;
        top: 12px;
    }
    
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-section .accordion-button {
        font-size: 16px;
        padding: 18px 20px;
    }
    
    .faq-section .accordion-body {
        font-size: 14px;
        padding: 18px 20px 20px;
    }
    
    .how-it-works-cta-section {
        padding: 50px 0 0;
    }
    
    .how-it-works-cta-card {
        padding: 48px 32px;
    }
    
    .cta-icon-decoration {
        display: none;
    }
    
    .how-it-works-cta-title {
        font-size: 28px;
    }
    
    .how-it-works-cta-text {
        font-size: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .how-it-works-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }
}



/* ============================================
   CONTACT PAGE - MODERN DESIGN
   ============================================ */

/* Hero Section */
.contact-hero-section {
    background: linear-gradient(135deg, #083164 0%, #0a3d7a 50%, #0066cc 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
    margin-bottom: -40px;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-hero-badge i {
    font-size: 16px;
}

.contact-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px;
}

.contact-hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-hero-features .hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.contact-hero-features .hero-feature-item i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* Quick Contact Cards */
.contact-quick-cards {
    margin-top: -40px;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}

.contact-quick-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    border: 2px solid #f0f2f5;
    box-shadow: 0 4px 20px rgba(8, 49, 100, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-quick-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(8, 49, 100, 0.15);
    border-color: #e0e4e8;
}

.quick-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 18px;
    transition: all 0.4s ease;
}

.quick-card-icon.primary {
    background: linear-gradient(135deg, rgba(8, 49, 100, 0.12) 0%, rgba(0, 102, 204, 0.18) 100%);
    color: #083164;
}

.quick-card-icon.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(5, 150, 105, 0.18) 100%);
    color: #059669;
}

.quick-card-icon.warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(251, 191, 36, 0.18) 100%);
    color: #f59e0b;
}

.contact-quick-card:hover .quick-card-icon {
    transform: scale(1.15) rotate(-8deg);
}

.quick-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.quick-card-link {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: #083164;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.quick-card-link:hover {
    color: #0066cc;
}

.quick-card-address {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.6;
}

.quick-card-text {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 0;
}

/* Contact Content Section */
.contact-content-section {
    padding: 60px 0 80px;
}

/* Contact Form Card */
.contact-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    border: 2px solid #f0f2f5;
    box-shadow: 0 4px 20px rgba(8, 49, 100, 0.08);
    height: 100%;
}

.contact-form-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f2f5;
}

.form-header-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #083164 0%, #0066cc 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
}

.form-header-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.form-header-subtitle {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Modern Form Styles */
.contact-form {
    margin: 0;
}

.form-group-modern {
    margin-bottom: 0;
}

.form-label-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.form-label-modern i {
    color: #083164;
    font-size: 16px;
}

.form-control-modern {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    color: #1a1a1a;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.form-control-modern:focus {
    outline: none;
    border-color: #083164;
    box-shadow: 0 0 0 4px rgba(8, 49, 100, 0.1);
}

.form-control-modern:hover {
    border-color: #d1d5db;
}

textarea.form-control-modern {
    resize: vertical;
    min-height: 150px;
}

/* Submit Button */
.contact-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    background: linear-gradient(135deg, #083164 0%, #0066cc 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(8, 49, 100, 0.25);
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(8, 49, 100, 0.35);
}

.contact-submit-btn .btn-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-submit-btn .btn-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover .btn-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(4px);
}

/* Contact Info Card */
.contact-info-card {
    background: linear-gradient(135deg, #083164 0%, #0a3d7a 50%, #0066cc 100%);
    border-radius: 16px;
    padding: 36px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(8, 49, 100, 0.2);
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.contact-info-header {
    position: relative;
    z-index: 2;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.info-header-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-header-title i {
    font-size: 28px;
}

/* Contact Info List */
.contact-info-list {
    position: relative;
    z-index: 2;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.info-item-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-item-content {
    flex: 1;
}

.info-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.info-item-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

.info-item-link {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-item-link:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateX(4px);
}

/* Social Section */
.contact-social-section {
    position: relative;
    z-index: 2;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.social-section-title {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

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

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    color: #fff;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-hero-section {
        padding: 50px 0 70px;
        margin-bottom: -35px;
    }
    
    .contact-hero-title {
        font-size: 38px;
    }
    
    .contact-hero-features {
        gap: 24px;
    }
    
    .contact-quick-cards {
        margin-top: -35px;
        padding-bottom: 50px;
    }
    
    .contact-content-section {
        padding: 50px 0 70px;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 30px;
    }
    
    .contact-form-header {
        margin-bottom: 28px;
        padding-bottom: 18px;
    }
    
    .contact-info-header {
        margin-bottom: 24px;
        padding-bottom: 18px;
    }
}

@media (max-width: 767px) {
    .contact-hero-section {
        padding: 40px 0 60px;
        margin-bottom: -30px;
    }
    
    .contact-hero-badge {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .contact-hero-title {
        font-size: 30px;
        margin-bottom: 14px;
    }
    
    .contact-hero-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }
    
    .contact-hero-features {
        flex-direction: column;
        gap: 14px;
    }
    
    .contact-quick-cards {
        margin-top: -30px;
        padding-bottom: 40px;
    }
    
    .contact-quick-card {
        padding: 28px 20px;
    }
    
    .quick-card-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .quick-card-title {
        font-size: 17px;
        margin-bottom: 10px;
    }
    
    .quick-card-link {
        font-size: 16px;
    }
    
    .contact-content-section {
        padding: 40px 0 60px;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 24px;
    }
    
    .contact-form-header {
        flex-direction: column;
        gap: 14px;
        margin-bottom: 24px;
        padding-bottom: 16px;
    }
    
    .form-header-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
    
    .form-header-title {
        font-size: 22px;
        margin-bottom: 4px;
    }
    
    .form-header-subtitle {
        font-size: 14px;
    }
    
    .info-header-title {
        font-size: 22px;
    }
    
    .contact-info-header {
        margin-bottom: 20px;
        padding-bottom: 16px;
    }
    
    .contact-info-item {
        gap: 14px;
        padding: 16px 0;
    }
    
    .info-item-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .info-item-title {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .info-item-text,
    .info-item-link {
        font-size: 14px;
    }
    
    .contact-social-section {
        margin-top: 24px;
        padding-top: 24px;
    }
    
    .social-section-title {
        font-size: 16px;
        margin-bottom: 14px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }
}
