/* 
  Design System - Carento Inspired
  Premium, Modern, Corporate Car Rental
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Colors */
    --primary-color: #ff0000; /* Accent color */
    --primary-dark: #ff0000;
    --primary-light: #e6f0ff;
    
    --dark-gray: #111111;
    --medium-gray: #4b5563;
    --light-gray: #f3f4f6;
    --soft-white: #f8f9fa;
    --pure-white: #ffffff;
    
    --bg-gradient: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    
    /* Typography */
	--font-main: 'Poppins', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Manrope', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--soft-white);
    color: var(--medium-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-gray);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

/* Typography Helpers */
.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.display-1 { font-size: 4rem; font-weight: 800; }
.display-2 { font-size: 3rem; font-weight: 800; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    font-size: 1rem;
    gap: 10px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--pure-white);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--dark-gray);
    border: 1px solid #e5e7eb;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--pure-white) !important;
}

body.sub-page header:not(.scrolled) .btn-outline:hover {
    background-color: var(--pure-white);
    border-color: var(--pure-white);
    color: var(--primary-color) !important;
}

/* Layout Layers */
.layered-bg {
    position: relative;
    z-index: 1;
}

.layered-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-gradient);
    z-index: -1;
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

[data-aos].active {
    opacity: 1;
    transform: translateY(0);
}

/* Topbar Styles */
.topbar {
    background-color: var(--primary-color);
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    width: 100%;
    z-index: 1001;
}

.topbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    gap: 15px;
}

.topbar-left a {
    color: var(--pure-white);
    transition: var(--transition-base);
}

.topbar-left a:hover {
    color: var(--pure-white);
    opacity: 0.8;
}

.topbar-right {
    display: flex;
    gap: 20px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--pure-white);
}

.topbar-item i {
    color: var(--pure-white);
}

.topbar-item a {
    color: inherit;
    transition: var(--transition-base);
}

.topbar-item a:hover {
    color: var(--pure-white);
    opacity: 0.8;
}

/* Header Adjustments */
header {
    position: absolute;
    top: 41px; /* Adjust for topbar height */
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-base);
    background: transparent;
}

/* Fix for header visibility on dark backgrounds (like page-header) */
body.sub-page header:not(.scrolled) .logo,
body.sub-page header:not(.scrolled) .nav-links a,
body.sub-page header:not(.scrolled) .mobile-toggle {
    color: var(--pure-white);
}

body.sub-page header:not(.scrolled) .nav-links .dropdown-menu a {
    color: var(--medium-gray) !important;
}

body.sub-page header:not(.scrolled) .btn-outline {
    color: var(--pure-white);
    border-color: rgba(255, 255, 255, 0.3);
}

header.scrolled {
    position: fixed;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

header.menu-opened {
    z-index: 1005;
}

/* Prevent clicking logo and nav-actions when menu is open */
header.menu-opened .logo,
header.menu-opened .nav-actions {
    pointer-events: none;
    opacity: 0.5; /* Optional: visual cue that they are disabled */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

@media (max-width: 768px) {
    .logo img {
        height: 45px;
    }
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--pure-white);
    min-width: 220px;
    padding: 15px 0;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-base);
    z-index: 1001;
    border: 1px solid var(--light-gray);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 25px;
    color: var(--medium-gray) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
}

.dropdown-menu a:hover {
    background: var(--soft-white);
    color: var(--primary-color) !important;
    padding-left: 30px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--dark-gray);
    cursor: pointer;
    z-index: 1008; /* Ensure it stays above fixed nav-links */
}

header.menu-opened .mobile-toggle {
    color: var(--dark-gray) !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px; /* Increased to account for header + space */
    padding-bottom: 80px;
    overflow: hidden;
    position: relative;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    width: 55%;
}

.hero-visual {
    width: 45%;
    position: relative;
}

.hero-visual img {
    width: 100%;
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.hero-visual:hover img {
    transform: scale(1.02);
}

.hero-title {
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

/* Trust Bar */
.trust-bar {
    padding: 40px 0;
    background: var(--pure-white);
    border-bottom: 1px solid var(--light-gray);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.trust-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.trust-info p {
    font-size: 0.875rem;
}

/* Vehicle Showcase */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.vehicle-card {
    background: var(--pure-white);
    border-radius: 20px;
    overflow: hidden;
    padding: 24px;
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.vehicle-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}

.vehicle-tag {
    background: var(--light-gray);
    color: var(--medium-gray);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.vehicle-info h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

/* Ultra-Premium Vehicle Features */
.vehicle-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 12px;
    background: white;
    border: 1px solid #f1f3f5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Stylish Icon Box */
.feature-item i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: var(--primary-color);
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Hover Effects */
.feature-item:hover {
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.feature-item:hover i {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* 5th Item (Special Feature) - Centered & Full Width */
.vehicle-features .feature-item:nth-child(5) {
    grid-column: 1 / -1;
    justify-content: center; /* Center content horizontally */
    background: white; /* Same as others */
    border: 1px solid #f1f3f5; /* Same as others */
    margin-top: 0;
}

.vehicle-features .feature-item:nth-child(5) i {
    background: #f8f9fa; /* Same as others */
}

.vehicle-features .feature-item:nth-child(5):hover {
    border-color: var(--primary-light);
    /* Keep other hover effects consistent with standard items */
}

.vehicle-features .feature-item:nth-child(5):hover i {
    background: var(--primary-color);
    color: white;
}

.vehicle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--light-gray);
    padding-top: 20px;
}

.vehicle-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-gray);
}

.vehicle-price span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--medium-gray);
}

/* Testimonials Slider - Premium Carousel */
.testimonials-slider-container {
    width: 100%;
    position: relative;
    padding: 20px 0; /* Remove side padding */
}

/* New Viewport Wrapper for Strict Clipping */
.testimonials-viewport {
    width: 100%;
    overflow: hidden; /* This clips content strictly */
    padding: 20px 70px; /* Internal padding for spacing */
    /* Use margin if padding causes issues, but padding is safer for shadows */
    box-sizing: border-box;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.testimonials-track {
    display: flex;
    gap: 30px;
    width: 100%;
    /* Transition handled in JS */
}

.testimonial-card {
    background: white;
    padding: 35px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    /* 
       Desktop: 3 items visible.
       Gap is 30px.
       Viewport has 70px padding on each side.
       Width calculation needs to be precise based on the content box of viewport.
       But since viewport has padding, flex basis % is based on content box.
       So logic remains: (100% - 60px) / 3
    */
    flex: 0 0 calc((100% - 60px) / 3);
    min-width: calc((100% - 60px) / 3);
    max-width: calc((100% - 60px) / 3);
    height: 380px; /* Fixed height for uniformity */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.1);
}

/* Quote Icon Watermark */
.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 3rem;
    color: rgba(0, 102, 255, 0.05);
    z-index: 0;
}

.testimonial-card .stars {
    color: #ffc107;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.testimonial-card .comment {
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1; /* Allow comment to take available space */
    display: flex;
    align-items: center; /* Center text vertically if short */
    overflow: hidden;
    text-overflow: ellipsis;
    /* Optional: Limit lines if needed, but flex-grow usually handles it well with fixed height */
    position: relative;
    z-index: 1;
}

.testimonial-card .user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
    margin-top: auto; /* Push to bottom */
}

.testimonial-card .avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0eaff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 102, 255, 0.1);
    flex-shrink: 0;
}

.testimonial-card .details h4 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--dark-gray);
    font-weight: 700;
}

.testimonial-card .details p {
    display: none; /* Hide occupation */
}

@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc((100% - 30px) / 2); /* 2 items */
        min-width: calc((100% - 30px) / 2);
        max-width: calc((100% - 30px) / 2);
    }
}

@media (max-width: 768px) {
    .testimonials-viewport {
        padding: 20px 40px; /* Reduced side padding */
    }
    
    .testimonial-card {
        flex: 0 0 100%; /* 1 item */
        min-width: 100%;
        max-width: 100%;
        padding: 25px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn { left: 0; }
    .next-btn { right: 0; }
}

/* Stats Box Style (Infobox) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: #f0f4ff; /* Light blue bg */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.stat-box p {
    font-size: 1rem;
    color: var(--medium-gray);
    font-weight: 600;
    margin: 0;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background: #0a0a0a;
    color: var(--soft-white);
    padding: 100px 0 40px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-logo {
    color: var(--pure-white);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
    display: block;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 35px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-title {
    color: var(--pure-white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700; /* Bold links as requested */
    font-size: 0.95rem;
    transition: var(--transition-base);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-info-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.footer-info-text h5 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.footer-info-text p {
    color: var(--pure-white);
    font-weight: 600;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--pure-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

/* Accordion System - Unified & Fixed */
.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--pure-white);
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--light-gray);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.accordion-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.accordion-header {
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.accordion-header:hover {
    background: #f9fafb;
}

.accordion-header h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
}

.accordion-header > i {
    width: 30px;
    height: 30px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition-base);
    flex-shrink: 0;
    margin-left: 15px;
}

.accordion-item.active .accordion-header {
    background: #f0f4ff;
}

.accordion-item.active .accordion-header h3 {
    color: var(--primary-color);
}

.accordion-item.active .accordion-header > i {
    background: var(--primary-color);
    color: white;
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    padding: 0 35px; /* Keep side padding to prevent text reflow jumping, but vertical is 0 */
    background: var(--pure-white);
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

.accordion-item.active .accordion-content {
    max-height: 1000px; /* Large enough to fit content */
    opacity: 1;
    padding: 20px 35px 30px; /* Added top padding to separate from header */
    border-top: 1px solid rgba(0,0,0,0.03); /* Subtle separator */
}

/* Bank Account Specifics */
.bank-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.copy-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--soft-white);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.copy-field label {
    display: block;
    font-size: 0.75rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.copy-field span {
    font-weight: 600;
    color: var(--dark-gray);
    word-break: break-all;
}

.copy-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    background: var(--pure-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--primary-color);
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198, 40, 40, 0.2);
}

/* Rental Conditions Modern Layout */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.condition-card {
    background: var(--pure-white);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid var(--light-gray);
    transition: var(--transition-base);
}

.condition-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.condition-icon {
    width: 60px;
    height: 60px;
    background: var(--soft-white);
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: var(--transition-base);
}

.condition-card:hover .condition-icon {
    background: var(--primary-color);
    color: var(--pure-white);
}

.condition-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.condition-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

.condition-list {
    margin-top: 15px;
    padding-left: 0;
    list-style: none;
}

.condition-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.condition-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .conditions-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Footer - Hidden on Desktop */
.mobile-menu-footer {
    display: none;
}

/* Brands Grid - Premium Card Style */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.brand-item {
    width: 100%;
    height: 120px; /* Fixed height for uniformity */
    background: var(--pure-white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.brand-item img {
    max-width: 80%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s ease;
}

.brand-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 102, 255, 0.1);
}

.brand-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Premium shine effect on hover */
.brand-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.8), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    opacity: 0;
}

.brand-item:hover::after {
    left: 150%;
    opacity: 1;
    transition: 0.7s;
}

@media (max-width: 1024px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info-card {
    background: var(--pure-white);
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-form-card {
    background: var(--pure-white);
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.info-item:hover .info-icon {
    background: var(--primary-color);
    color: var(--pure-white);
    transform: rotate(15deg);
}

.info-content h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.info-content p, .info-content a {
    color: var(--medium-gray);
    margin-bottom: 2px;
    display: block;
    line-height: 1.5;
}

.info-content a:hover {
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    font-family: var(--font-body);
    transition: var(--transition-base);
    font-size: 1rem;
    color: var(--dark-gray); /* Darker text color */
}

.form-control::placeholder {
    color: #9ca3af; /* Medium gray placeholder */
    opacity: 1;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px var(--primary-light);
}

/* Page Header & Breadcrumbs */
.page-header {
    background: var(--dark-gray);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
}

.page-header h1 {
    color: var(--pure-white);
    font-size: 3.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs i {
    font-size: 0.75rem;
    opacity: 0.5;
}

.breadcrumbs span {
    color: var(--primary-color);
    font-weight: 600;
}

/* =========================================
   NEW SECTIONS STYLING (Restored & Enhanced)
   ========================================= */

/* Search Widget */
.search-wrapper {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    margin-bottom: 50px;
}

.search-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.search-item { flex: 1; min-width: 200px; }

.search-item label { 
    display: block; 
    font-weight: 700; 
    margin-bottom: 10px; 
    color: var(--dark-gray); 
    font-size: 0.9rem; 
}

.search-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f9fafb;
    color: var(--dark-gray);
    outline: none;
    transition: all 0.3s;
    font-family: var(--font-main);
    font-size: 0.95rem;
}

.search-input:focus { border-color: var(--primary-color); background: white; }

.search-btn {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    height: 44px; /* Match input height roughly */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 1rem;
}

.search-btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }


/* Why Choose Us */
.wcu-section { padding: 80px 0; }
.wcu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.wcu-img img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-lg); }

.wcu-list { list-style: none; padding: 0; margin-top: 30px; }
.wcu-list li { display: flex; gap: 15px; margin-bottom: 25px; align-items: flex-start; }

.wcu-icon {
    width: 50px; height: 50px; background: rgba(0,102,255,0.1); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; color: var(--primary-color); flex-shrink: 0;
    font-size: 1.2rem;
}

.wcu-text h4 { margin: 0 0 5px; font-size: 1.1rem; font-weight: 700; }
.wcu-text p { margin: 0; color: var(--medium-gray); font-size: 0.9rem; line-height: 1.5; }


/* Services */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 40px; }

.service-card {
    background: white; padding: 35px 25px; border-radius: 20px; border: 1px solid #f0f0f0;
    transition: all 0.3s; text-align: center;
}

.service-card:hover { 
    transform: translateY(-10px); 
    box-shadow: var(--shadow-md); 
    border-color: var(--primary-color); 
}

.service-icon { font-size: 3rem; color: var(--primary-color); margin-bottom: 20px; display: inline-block; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; font-weight: 700; }
.service-card p { font-size: 0.9rem; color: var(--medium-gray); line-height: 1.6; }


/* Process (How It Works) */
.process-grid { 
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; 
    position: relative; margin-top: 50px; 
}

.process-item { position: relative; z-index: 2; }

.process-icon-box {
    width: 100px; height: 100px; background: white; border-radius: 50%; box-shadow: var(--shadow-md);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 25px;
    font-size: 2.5rem; color: var(--primary-color); position: relative; border: 4px solid #f0f4ff;
    transition: all 0.3s;
}

.process-item:hover .process-icon-box { border-color: var(--primary-color); transform: scale(1.05); }

.process-step {
    position: absolute; top: 0; right: 0; background: var(--primary-color); color: white;
    width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem; border: 3px solid white;
}

.process-grid::before {
    content: ''; position: absolute; top: 50px; left: 0; width: 100%; height: 3px;
    background: transparent; z-index: 1; border-top: 3px dashed #e5e7eb;
}


/* FAQ - Styles inherited from main Accordion System */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

/* Responsive FAQ Grid */
@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}


/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }

.blog-card { 
    background: white; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); 
    transition: all 0.3s; border: 1px solid #f0f0f0; 
}

.blog-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.blog-img { height: 220px; overflow: hidden; position: relative; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.1); }

.blog-tag {
    position: absolute; top: 15px; left: 15px; background: var(--primary-color); color: white;
    padding: 5px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
}

.blog-content { padding: 25px; }
.blog-meta { display: flex; gap: 15px; font-size: 0.8rem; color: var(--medium-gray); margin-bottom: 10px; }
.blog-meta i { color: var(--primary-color); margin-right: 5px; }

.blog-content h3 { font-size: 1.2rem; margin-bottom: 15px; line-height: 1.4; font-weight: 700; }
.blog-link { 
    color: var(--primary-color); font-weight: 600; font-size: 0.9rem; 
    display: inline-flex; align-items: center; gap: 5px; 
}
.blog-link:hover { gap: 8px; }


/* Mobile App */
.app-section { 
    background: var(--dark-gray); color: white; padding: 0; overflow: hidden; 
    border-radius: 30px; margin: 0 auto; max-width: 1200px; position: relative; 
}

.app-overlay { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: linear-gradient(45deg, rgba(0,0,0,0.8), transparent); z-index: 1; 
}

.app-grid { 
    display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: center; 
    position: relative; z-index: 2; 
}

.app-content { padding: 80px 60px; }
.app-buttons { display: flex; gap: 15px; margin-top: 30px; flex-wrap: wrap; }

.app-btn { 
    background: white; color: black; padding: 12px 25px; border-radius: 12px; 
    display: flex; align-items: center; gap: 12px; font-weight: 700; transition: all 0.3s; 
}

.app-btn:hover { 
    background: #f0f0f0; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); 
}

.app-btn i { font-size: 1.8rem; }
.app-btn span { display: block; font-size: 0.7rem; font-weight: 400; color: #666; margin-bottom: 2px; }
.app-btn strong { display: block; font-size: 1rem; }

.app-img { 
    height: 100%; display: flex; align-items: flex-end; justify-content: center; 
    position: relative; min-height: 400px; 
}

.app-img img { 
    max-width: 80%; position: absolute; bottom: -50px; transition: transform 0.5s; 
}
.app-section:hover .app-img img { transform: translateY(-20px); }


/* Responsive Adjustments */
@media (max-width: 1024px) {
    header { top: 41px; position: absolute; }
    .topbar { position: relative; z-index: 1002; }
    .topbar-right { display: none; }
    .topbar-container { justify-content: center; }
    
    .hero { 
        padding-top: 120px; 
        padding-bottom: 60px;
        min-height: auto;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content, .hero-visual { 
        width: 100%; 
    }
    
    .hero-subtitle { 
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-btns { 
        justify-content: center; 
    }
    
    .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .wcu-grid, .faq-grid, .app-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid, .blog-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid::before { display: none; }
    .app-img { display: none; }
    .app-content { padding: 50px 30px; text-align: center; }
    .app-buttons { justify-content: center; }
}

@media (max-width: 768px) {
    header { top: 0; position: absolute; }
    .topbar { display: none; }
    .display-1 { font-size: 2.5rem; }
    .display-2 { font-size: 2rem; }
    
    .hero { 
        padding-top: 140px; 
        padding-bottom: 60px;
        min-height: auto;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content, .hero-visual { 
        width: 100%; 
    }
    
    .hero-subtitle { 
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px; 
    }
    
    .hero-btns { 
        justify-content: center; 
    }

    .vehicle-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    
    .mobile-toggle {
        display: block;
    }

    .value-card {
        padding: 15px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .value-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .value-card h3 {
        font-size: 0.9rem;
        margin-bottom: 5px;
        white-space: nowrap; /* Prevent title wrapping */
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .value-card p {
        font-size: 0.75rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 3; /* Limit text to 3 lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 0;
    }

    /* Modern Mobile Menu Overlay */
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%; /* Hidden by default */
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--pure-white);
        flex-direction: column;
        padding: 100px 30px 40px;
        gap: 15px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1004;
        transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        align-items: flex-start;
        text-align: left;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    /* Menu Backdrop - Blur affects the content UNDER the menu */
    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        z-index: 1003;
        pointer-events: all;
        backdrop-filter: blur(5px); /* Blur only the background */
        -webkit-backdrop-filter: blur(5px);
    }

    /* Ensure menu is clearly above backdrop and zero to zero */
    .nav-links {
        z-index: 1007;
        background: var(--pure-white) !important;
        top: 0 !important;
        height: 100vh !important;
        padding-top: 100px;
    }

    .nav-links a {
        color: var(--dark-gray) !important;
        font-size: 1.05rem;
        font-weight: 700;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--soft-white);
        display: flex;
        justify-content: space-between;
        align-items: center;
        white-space: nowrap;
    }

    .nav-links a.active {
        color: var(--primary-color) !important;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        display: none;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 5px 0 10px 15px;
        width: 100%;
        background: transparent;
        margin-top: 0;
    }

    .dropdown.mobile-opened .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        font-size: 0.9rem;
        font-weight: 600;
        border-bottom: none;
        padding: 8px 0;
        color: var(--medium-gray) !important;
    }

    .nav-actions {
        display: flex;
        z-index: 1006;
    }

    .nav-actions .btn-primary {
        display: none; 
    }

    .nav-actions .btn-outline {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .fleet-banner h2 {
        font-size: 1.5rem; /* Reduced further */
        margin-bottom: 8px;
    }

    .fleet-banner p {
        font-size: 0.85rem !important; /* Reduced further */
        margin-bottom: 20px !important;
        line-height: 1.4;
    }

    .fleet-banner {
        padding: 50px 20px !important; /* Reduced padding */
    }

    .fleet-banner .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    /* Mobile Menu Footer - Ultra Clean Design */
    .mobile-menu-footer {
        display: flex;
        flex-direction: column;
        margin-top: auto;
        padding: 20px 0 15px;
        width: 100%;
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    /* Contact Grid (Phone & Mail) - MOVED TO TOP */
    .nav-links .mobile-menu-contact {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 15px;
        order: 1; /* First element */
    }

    /* Phone & Mail - Blue Button Style */
    .nav-links .mobile-menu-contact a {
        display: flex !important;
        flex-direction: row; 
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        color: white !important;
        background-color: var(--primary-color) !important; /* Blue Color */
        border: none !important;
        padding: 14px 10px !important;
        text-align: center;
        width: 100%;
        border-radius: 12px !important;
        box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2); /* Blue Shadow */
    }

    .nav-links .mobile-menu-contact a i {
        color: white !important;
        font-size: 1.1rem;
        background: transparent;
        width: auto;
        height: auto;
    }

    /* WhatsApp - MOVED TO BOTTOM */
    .nav-links .mobile-menu-whatsapp {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background-color: #25D366;
        color: white !important;
        padding: 14px !important;
        border-radius: 12px;
        font-weight: 700 !important;
        margin-bottom: 12px;
        text-decoration: none;
        font-size: 1rem !important;
        border: none !important;
        width: 100%;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
        order: 2; /* Second element */
    }

    .nav-links .mobile-menu-whatsapp i {
        color: white !important;
        font-size: 1.3rem;
    }

    /* Active States */
    .nav-links .mobile-menu-whatsapp:active,
    .nav-links .mobile-menu-contact a:active {
        transform: scale(0.96);
        opacity: 0.9;
    }

    /* Social Media in Menu */
    .mobile-menu-social {
        display: flex;
        justify-content: center;
        gap: 20px;
        padding-top: 10px;
        border-top: 1px dashed rgba(0,0,0,0.1);
        order: 3; /* Last element */
    }

    .mobile-menu-social a {
        width: 45px;
        height: 45px;
        background: transparent;
        color: var(--medium-gray) !important;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        border: 1px solid rgba(0,0,0,0.1) !important;
        transition: all 0.3s ease;
    }

    .mobile-menu-social a:active {
        background: var(--primary-color);
        color: white !important;
        border-color: var(--primary-color) !important;
        transform: translateY(-3px);
    }


    .footer-grid { grid-template-columns: 1fr; }
    
    .page-header { padding: 120px 0 60px; }
    .page-header h1 { font-size: 2.5rem; }

    /* Mobile Footer Redesign - Premium Grid Layout */
    footer {
        padding: 50px 0 30px;
        text-align: center;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Two columns for links */
        gap: 30px 20px;
        margin-bottom: 30px;
        text-align: left; /* Default left align for inner content */
    }

    /* 1. Logo & Social (Full Width) */
    .footer-grid > div:first-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 10px;
    }

    .footer-logo {
        margin-bottom: 15px;
    }
    
    .footer-logo img {
        height: 45px;
    }

    .footer-desc {
        display: none; /* Hide description to save space */
    }

    .social-links {
        justify-content: center;
        margin-top: 10px;
        gap: 15px;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* 2. Menu Links (Side by Side) */
    .footer-grid > div:nth-child(2),
    .footer-grid > div:nth-child(3) {
        padding: 0 5px;
    }

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    
    /* Adjust underline for mobile */
    .footer-title::after {
        width: 30px;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 500;
    }

    /* 3. Contact Section (Full Width) */
    .footer-grid > div:last-child {
        grid-column: 1 / -1;
        margin-top: 10px;
    }

    .footer-grid > div:last-child .footer-title {
        text-align: center;
        display: inline-block;
        margin-bottom: 25px;
    }
    
    .footer-grid > div:last-child .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-info-item {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        padding: 15px;
        border-radius: 16px;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 20px;
        max-width: 100%;
        transition: var(--transition-base);
    }

    .footer-info-item:active {
        background: rgba(255, 255, 255, 0.08);
        border-color: var(--primary-color);
    }

    .footer-info-icon {
        background: transparent;
        color: var(--primary-color);
        width: auto;
        height: auto;
        font-size: 1.5rem;
    }

    .footer-info-text {
        text-align: left;
    }

    .footer-info-text h5 {
        margin-bottom: 2px;
        color: rgba(255, 255, 255, 0.4);
    }

    .footer-info-text p {
        font-size: 1rem;
        color: var(--pure-white);
    }

    /* Footer Bottom */
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-top: 25px;
        font-size: 0.8rem;
    }

    /* Contact Page Mobile Enhancements */
    .contact-grid {
        gap: 30px;
    }

    /* Hide Social Media on Mobile */
    .contact-social-media {
        display: none !important;
    }

    /* Stack form rows on mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-info-card, .contact-form-card {
        padding: 25px;
        border-radius: 20px;
    }

    /* Better input spacing */
    .form-group {
        margin-bottom: 25px;
    }
    
    .form-control {
        padding: 18px 20px; /* Taller inputs for easier tapping */
        font-size: 1.05rem; /* Slightly larger text */
        background: var(--soft-white); /* Slightly darker bg for contrast */
    }

    .info-item {
        background: var(--soft-white);
        padding: 15px;
        border-radius: 16px;
        margin-bottom: 15px;
        align-items: center;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        background: var(--pure-white); /* White bg on light gray card */
    }

    .info-content h4 {
        font-size: 0.9rem;
        margin-bottom: 2px;
        opacity: 0.7;
    }

    .info-content p, .info-content a {
        font-size: 1rem;
        font-weight: 600;
        color: var(--dark-gray);
    }

    /* Make social icons bigger on mobile */
    .contact-info-card .info-icon[href] {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .services-grid, .blog-grid, .process-grid { grid-template-columns: 1fr; }
    .search-item { width: 100%; min-width: 100%; }
    .search-box { flex-direction: column; gap: 15px; }
    .search-btn { width: 100%; }
}
