/**
 * İlgi Evden Eve Nakliyat - Ana Stil Dosyası
 * Modern, Responsive Tasarım
 */

/* ========================================
   VARIABLES
======================================== */
:root {
    --primary-color: #667eea;
    --primary-dark: #5a67d8;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --success-color: #48bb78;
    --warning-color: #ed8936;
    --danger-color: #f56565;
    --dark-color: #1a202c;
    --light-color: #f7fafc;
    --gray-color: #718096;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s ease;
}

/* ========================================
   BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background: var(--white);
    overflow-x: hidden;
}

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

a:hover {
    color: var(--primary-color);
}

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

/* ========================================
   PRELOADER
======================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader {
    text-align: center;
}

.loader i {
    font-size: 60px;
    color: var(--primary-color);
    animation: bounce 1s infinite;
}

.loader span {
    display: block;
    margin-top: 15px;
    color: var(--gray-color);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ========================================
   TOP BAR
======================================== */
.top-bar {
    background: var(--dark-color);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-info {
    display: flex;
    gap: 20px;
}

.top-bar-info a {
    color: rgba(255,255,255,0.8);
}

.top-bar-info a:hover {
    color: var(--white);
}

.top-bar-info i {
    margin-right: 8px;
    color: var(--primary-color);
}

.top-bar-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.top-bar-social a {
    color: rgba(255,255,255,0.8);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: var(--transition);
}

.top-bar-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* ========================================
   NAVIGATION
======================================== */
.main-navbar {
    background: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.main-navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand i {
    font-size: 35px;
    color: var(--primary-color);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.brand-tagline {
    font-size: 11px;
    color: var(--gray-color);
    font-weight: 500;
}

.navbar-nav {
    gap: 5px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    padding: 10px 18px !important;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    background: var(--gradient-primary);
    color: var(--white) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    padding: 10px;
}

.dropdown-item {
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--gradient-primary);
    color: var(--white);
}

.navbar-cta .btn {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 30px;
}

/* ========================================
   FIXED BUTTONS
======================================== */
.fixed-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.fixed-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.fixed-btn:hover {
    transform: scale(1.1);
    color: var(--white);
}

.phone-btn {
    background: var(--primary-color);
}

.whatsapp-btn {
    background: #25d366;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(102, 126, 234, 0); }
    100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0); }
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23667eea" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
}

.hero-content {
    color: var(--white);
    padding: 120px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(102, 126, 234, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 25px;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.hero-badge i {
    color: #ffd700;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.text-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 30px;
}

.hero-buttons .btn-primary {
    background: var(--gradient-primary);
    border: none;
}

.hero-buttons .btn-outline-light:hover {
    background: var(--white);
    color: var(--dark-color);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* Hero Form */
.hero-form-wrapper {
    padding: 120px 0;
}

.hero-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.hero-form h4 {
    color: var(--dark-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-form h4 i {
    color: var(--primary-color);
}

.hero-form .form-control,
.hero-form .form-select {
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
}

.hero-form .form-control:focus,
.hero-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.hero-form .btn {
    padding: 15px;
    font-weight: 600;
    border-radius: 10px;
}

/* ========================================
   SECTION COMMON STYLES
======================================== */
.section-header {
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-title .text-primary {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   MAP SECTION
======================================== */
.map-section {
    background: var(--white);
}

.turkey-map-container {
    position: relative;
}

.turkey-map {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    margin-bottom: 30px;
}

.turkey-svg {
    width: 100%;
    height: auto;
}

.turkey-outline {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawLine 3s ease forwards;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

.city-marker {
    cursor: pointer;
}

.city-dot {
    transition: var(--transition);
}

.city-pulse {
    animation: cityPulse 2s infinite;
    opacity: 0.5;
}

@keyframes cityPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 0; }
}

.moving-truck {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.cities-list {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.cities-list h5 {
    margin-bottom: 20px;
    color: var(--dark-color);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.city-link {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition);
}

.city-link:hover {
    background: var(--gradient-primary);
    color: var(--white);
}

.city-link.more {
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
}

/* ========================================
   SERVICES SECTION
======================================== */
.services-section {
    background: #f8fafc;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 35px;
    color: var(--white);
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--dark-color);
}

.service-features i {
    color: var(--success-color);
}

.service-card .btn {
    border-radius: 30px;
    padding: 10px 25px;
}

/* ========================================
   VEHICLES SECTION
======================================== */
.vehicles-section {
    background: var(--white);
}

.vehicle-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.vehicle-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.vehicle-image {
    height: 180px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.vehicle-anim {
    font-size: 80px;
    color: var(--primary-color);
    animation: vehicleBounce 2s infinite;
}

.vehicle-anim.asansorlu {
    animation: none;
}

.asansor-platform {
    position: absolute;
    width: 40px;
    height: 4px;
    background: var(--secondary-color);
    bottom: 30px;
    animation: asansorMove 2s infinite alternate;
}

@keyframes vehicleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes asansorMove {
    0% { bottom: 30px; }
    100% { bottom: 80px; }
}

.vehicle-info {
    padding: 25px;
    text-align: center;
}

.vehicle-info h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.vehicle-capacity {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.vehicle-features .badge {
    font-size: 11px;
    padding: 5px 10px;
}

/* ========================================
   WHY US SECTION
======================================== */
.why-us-section {
    background: #f8fafc;
}

.why-us-content {
    padding-right: 50px;
}

.why-us-content .lead {
    color: var(--gray-color);
    margin-bottom: 30px;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.feature-text h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--gray-color);
    margin: 0;
}

.why-us-image {
    position: relative;
}

.image-frame {
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.truck-animation {
    font-size: 150px;
    color: rgba(255,255,255,0.3);
    animation: truckMove 3s infinite alternate;
}

@keyframes truckMove {
    0% { transform: translateX(-20px); }
    100% { transform: translateX(20px); }
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    animation: float 3s infinite ease-in-out;
}

.floating-card i {
    font-size: 24px;
    color: var(--primary-color);
}

.card-1 {
    top: 30px;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30px;
    right: -20px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials-section {
    background: var(--white);
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-content {
    position: relative;
    margin-bottom: 25px;
}

.quote-icon {
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: -5px;
}

.testimonial-content p {
    color: var(--gray-color);
    font-style: italic;
    padding-left: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
}

.author-info h6 {
    font-weight: 700;
    margin-bottom: 3px;
}

.author-info span {
    color: var(--gray-color);
    font-size: 14px;
}

/* ========================================
   BLOG SECTION
======================================== */
.blog-section {
    background: #f8fafc;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    box-shadow: var(--shadow-xl);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    margin-bottom: 15px;
}

.blog-meta span {
    color: var(--gray-color);
    font-size: 14px;
}

.blog-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-content h4 a {
    color: var(--dark-color);
}

.blog-content h4 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--gray-color);
    font-size: 14px;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more i {
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    background: var(--white);
}

.cta-box {
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-box h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-box p {
    opacity: 0.9;
    margin: 0;
}

.cta-box .btn {
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 30px;
}

.cta-box .btn-light {
    color: var(--primary-color);
}

.cta-box .btn-success {
    background: #25d366;
    border-color: #25d366;
}

/* ========================================
   FOOTER
======================================== */
.main-footer {
    background: var(--dark-color);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-widget {
    margin-bottom: 30px;
}

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

.footer-logo i {
    font-size: 40px;
    color: var(--primary-color);
}

.footer-logo span {
    font-size: 22px;
    font-weight: 700;
}

.footer-about {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-widget h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links i {
    font-size: 12px;
}

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

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.7);
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
}

.copyright {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.credits {
    margin: 0;
}

.credits a {
    color: rgba(255,255,255,0.6);
}

.credits a:hover {
    color: var(--primary-color);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .why-us-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        padding: 80px 0 40px;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-form-wrapper {
        padding: 0 0 80px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-box {
        padding: 40px;
        text-align: center;
    }
    
    .cta-box .text-lg-end {
        margin-top: 25px;
    }
    
    .navbar-nav {
        padding: 20px 0;
    }
    
    .nav-link {
        padding: 12px 20px !important;
    }
    
    .navbar-cta {
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
    
    .floating-card {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin-bottom: 15px;
    }
    
    .image-frame {
        min-height: auto;
        flex-direction: column;
        padding: 30px;
    }
    
    .truck-animation {
        font-size: 80px;
    }
}

@media (max-width: 575px) {
    .top-bar-info {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .top-bar-social {
        justify-content: center;
        margin-top: 10px;
    }
    
    .hero-form {
        padding: 25px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-box .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* ========================================
   UTILITIES
======================================== */
.bg-light {
    background: #f8fafc !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

/* Animations */
[data-aos] {
    transition-timing-function: ease-out;
}
