/* Main Styles */
:root {
    --primary-color: #e91e63;
    --secondary-color: #2196f3;
    --accent-color: #ff9800;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --danger-color: #f44336;
    --info-color: #2196f3;
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }

/* Header Styles */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.25rem;
}

.logo-img {
    height: 40px;
    width: auto;
    margin-right: 0.75rem;
}

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

.nav-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-phone {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

/* Admin Icon Styles */
.admin-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
}

.admin-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
    color: white;
}

.admin-icon i {
    font-size: 1.1rem;
}

/* Mobile Admin Button */
.mobile-admin-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    transition: var(--transition);
}

.mobile-admin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
    color: white;
}
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Buttons */
.btn {
    border-radius: var(--border-radius);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: #c2185b;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

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

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background-color: transparent;
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Forms */
.form-control {
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
}

/* Two-color header styling */
.two-color-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.two-color-title .first-word {
    color: var(--dark-color);
}

.two-color-title .second-word {
    color: var(--primary-color);
}

.two-color-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }

.bg-light { background-color: var(--light-color); }
.bg-dark { background-color: var(--dark-color); }
.bg-primary { background-color: var(--primary-color); }

.text-white { color: var(--white); }
.text-dark { color: var(--dark-color); }
.text-primary { color: var(--primary-color); }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease-out;
}

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

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
    }
}

/* Featured Fleet Section */
.featured-fleet-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.featured-car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.featured-car-card .car-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    border-radius: 15px 15px 0 0;
}

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

.default-car-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--gray-600);
    text-align: center;
}

.default-car-placeholder i {
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.default-car-placeholder p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.car-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.car-badge:nth-child(2) {
    background: var(--success-color);
}

.car-badge:nth-child(3) {
    background: var(--warning-color);
}

.featured-car-card .car-details {
    padding: 1.5rem;
}

.featured-car-card .car-details h4 {
    color: var(--dark-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.car-model {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.car-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.car-features span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--gray-600);
    font-size: 0.85rem;
}

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

.car-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.car-price .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.car-price .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 25px;
}

/* Responsive adjustments for featured fleet */
@media (max-width: 768px) {
    .featured-car-card .car-image {
        height: 220px;
    }
    
    .featured-car-card .car-details {
        padding: 1.25rem;
    }
    
    .car-features {
        gap: 0.5rem;
    }
    
    .car-price {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .car-price .btn {
        width: 100%;
    }
}


/* Homepage Header Spacing */
body.homepage {
    padding-top: 80px; /* Account for fixed header on homepage only */
}

@media (max-width: 768px) {
    body.homepage {
        padding-top: 70px; /* Reduce padding for mobile */
    }
}

@media (max-width: 576px) {
    body.homepage {
        padding-top: 60px; /* Further reduce padding for small mobile */
    }
}

/* Pages with Header Spacing */
body.page-with-header {
    padding-top: 80px; /* Account for fixed header on pages with headers */
}

@media (max-width: 768px) {
    body.page-with-header {
        padding-top: 70px; /* Reduce padding for mobile */
    }
}

@media (max-width: 576px) {
    body.page-with-header {
        padding-top: 60px; /* Further reduce padding for small mobile */
    }
}

/* Animated Car Border */
.animated-car-border {
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
    z-index: 999;
    margin-bottom: 0;
    min-height: 110px;
}

.car-track {
    position: relative;
    width: 100%;
    height: 90px;
    background: linear-gradient(90deg, 
        rgba(100, 100, 100, 0.3) 0%, 
        rgba(120, 120, 120, 0.4) 25%, 
        rgba(100, 100, 100, 0.3) 50%, 
        rgba(120, 120, 120, 0.4) 75%, 
        rgba(100, 100, 100, 0.3) 100%
    );
    border-top: 4px solid rgba(80, 80, 80, 0.6);
    border-bottom: 4px solid rgba(80, 80, 80, 0.6);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.car-track::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 3px
    );
    pointer-events: none;
}

.car-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.9) 0px,
        rgba(255, 255, 255, 0.9) 30px,
        transparent 30px,
        transparent 60px
    );
    transform: translateY(-50%);
    animation: roadLines 3s linear infinite;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes roadLines {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 0;
    }
}


.moving-car {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    animation: carMove 10s linear infinite;
    z-index: 10;
}

.car-1 {
    animation-delay: 0s;
}

.car-2 {
    animation-delay: 3s;
}

.car-3 {
    animation-delay: 6s;
}

.car-4 {
    animation-delay: 9s;
}

.car-5 {
    animation-delay: 12s;
}

.car-6 {
    animation-delay: 15s;
}

.car-7 {
    animation-delay: 18s;
}

.car-8 {
    animation-delay: 21s;
}

.car-9 {
    animation-delay: 24s;
}

.car-10 {
    animation-delay: 27s;
}

.car-image {
    width: 140px;
    height: 95px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    transform: scaleX(-1); /* Flip car horizontally to face right */
}

.car-image:hover {
    transform: scaleX(-1.1) scaleY(1.1); /* Maintain flip while scaling */
}

.car-placeholder {
    width: 140px;
    height: 95px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    transform: scaleX(-1); /* Flip placeholder horizontally to face right */
}

.car-placeholder:hover {
    transform: scaleX(-1.1) scaleY(1.1); /* Maintain flip while scaling */
}

/* Car Movement Animation */
@keyframes carMove {
    0% {
        left: -80px;
        transform: translateY(-50%) scaleX(1);
    }
    25% {
        left: 25%;
        transform: translateY(-50%) scaleX(1);
    }
    50% {
        left: 50%;
        transform: translateY(-50%) scaleX(1);
    }
    75% {
        left: 75%;
        transform: translateY(-50%) scaleX(1);
    }
    100% {
        left: calc(100% + 80px);
        transform: translateY(-50%) scaleX(1);
    }
}


/* Responsive Car Animation */
@media (max-width: 768px) {
    .car-track {
        height: 70px;
    }
    
    .car-image {
        width: 110px;
        height: 75px;
    }
    
    .car-placeholder {
        width: 110px;
        height: 75px;
        font-size: 1.5rem;
    }
    
    .moving-car {
        animation-duration: 8s;
    }
}

@media (max-width: 576px) {
    .car-track {
        height: 60px;
    }
    
    .car-image {
        width: 95px;
        height: 65px;
    }
    
    .car-placeholder {
        width: 95px;
        height: 65px;
        font-size: 1.2rem;
    }
    
    .moving-car {
        animation-duration: 6s;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
    padding: 2rem 0 !important; /* Reduced from py-5 */
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

/* New Featured Cars Grid Styles */
.car-card-new {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.car-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.car-image-new {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.car-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.no-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--gray-600);
}

.car-badge-new {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.car-info-new {
    padding: 1.25rem;
}

.car-name {
    color: var(--dark-color);
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.car-model-new {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.car-specs {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.8rem;
    background: var(--gray-100);
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    white-space: nowrap;
}

.spec-item i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

.car-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.price-new {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-book {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.car-description-new {
    color: var(--gray-600);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* About Us Page Styles */
.section-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2.5rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.story-section {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.story-text {
    color: var(--gray-700);
    font-size: 1.1rem;
    line-height: 1.6;
}

.story-icon {
    opacity: 0.8;
}

.feature-card-new {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon-new {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon-new i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card-new:hover .feature-icon-new {
    transform: scale(1.1);
}

.feature-title {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 0;
}

.mission-card, .vision-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mission-icon, .vision-icon {
    opacity: 0.8;
}

.mission-title, .vision-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
}

.mission-text, .vision-text {
    color: var(--gray-700);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 0;
}

.cta-section {
    background: linear-gradient(135deg, #e91e63, #2196f3) !important;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: white !important;
}

.cta-title {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white !important;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    color: white !important;
}

.cta-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    background-color: white !important;
    color: #333 !important;
    border: 2px solid white !important;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: #f8f9fa !important;
    color: #333 !important;
}

/* About Us Responsive Styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .story-section {
        padding: 2rem;
    }
    
    .story-text {
        font-size: 1rem;
    }
    
    .feature-card-new {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon-new {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-new i {
        font-size: 1.5rem;
    }
    
    .mission-card, .vision-card {
        padding: 2rem;
    }
    
    .mission-title, .vision-title {
        font-size: 1.5rem;
    }
    
    .cta-section {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-buttons .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .story-section {
        padding: 1.5rem;
    }
    
    .feature-card-new {
        padding: 1.25rem 0.75rem;
    }
    
    .feature-icon-new {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon-new i {
        font-size: 1.25rem;
    }
    
    .mission-card, .vision-card {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 1.5rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

/* New Contact Form Styles */
.contact-form-container-new {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-form-container-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-200);
}

.form-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 0;
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group-new {
    display: flex;
    flex-direction: column;
}

.form-label-new {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control-new {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-control-new:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-control-new::placeholder {
    color: var(--gray-400);
}

.btn-submit-new {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-submit-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.success-message-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.success-content-new i {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.success-content-new h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.success-content-new p {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.address-details-container-new {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.address-details-container-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

/* New Contact Info Styles */
.contact-info-container-new {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-container-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.contact-header-new {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-200);
}

.contact-title-new {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-subtitle-new {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 0;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-method-card-new {
    background: var(--gray-50);
    border-radius: 15px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.contact-method-card-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.method-icon-new {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    color: var(--white);
}

.method-icon-new.phone {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.method-icon-new.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.method-icon-new.email {
    background: linear-gradient(135deg, #dc3545, #e83e8c);
}

.method-icon-new.address {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
}

.method-content-new h4 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.method-content-new p {
    color: var(--gray-600);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.method-link-new {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.method-link-new:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.business-hours-new {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05), rgba(33, 150, 243, 0.05));
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.hours-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.hours-content h4 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.hours-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.hours-note {
    color: var(--primary-color);
    font-weight: 500;
}

.social-media-new {
    text-align: center;
}

.social-media-new h4 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.social-icons-new {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.social-icon-new {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-icon-new.facebook {
    background: #1877f2;
}

.social-icon-new.twitter {
    background: #1da1f2;
}

.social-icon-new.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon-new.linkedin {
    background: #0077b5;
}

.social-icon-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Form Responsive Styles */
@media (max-width: 768px) {
    .contact-form-container-new,
    .address-details-container-new,
    .contact-info-container-new {
        padding: 2rem;
    }
    
    .form-title,
    .contact-title-new {
        font-size: 1.5rem;
    }
    
    .contact-form-new {
        gap: 1rem;
    }
    
    .form-control-new {
        padding: 0.65rem 0.875rem;
    }
    
    .btn-submit-new {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .contact-method-card-new {
        padding: 1rem;
    }
    
    .business-hours-new {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

@media (max-width: 576px) {
    .contact-form-container-new,
    .address-details-container-new,
    .contact-info-container-new {
        padding: 1.5rem;
    }
    
    .form-title,
    .contact-title-new {
        font-size: 1.3rem;
    }
    
    .form-header,
    .contact-header-new {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .contact-form-new {
        gap: 0.875rem;
    }
    
    .form-control-new {
        padding: 0.6rem 0.75rem;
        font-size: 0.95rem;
    }
    
    .btn-submit-new {
        padding: 0.7rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .contact-method-card-new {
        padding: 0.875rem;
    }
    
    .method-icon-new {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .business-hours-new {
        padding: 1rem;
    }
    
    .social-icons-new {
        gap: 0.5rem;
    }
    
    .social-icon-new {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Featured Cars Slider Styles */
.featured-cars-slider {
    position: relative;
}

.featured-car-item {
    transition: var(--transition);
}

.slider-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--secondary-color);
}

.slider-navigation .btn {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
}

.slider-navigation .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.no-cars-message {
    padding: 3rem 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.no-cars-message h4 {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

/* Responsive slider styles */
@media (max-width: 768px) {
    .slider-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .slider-navigation .btn {
        width: 100%;
        max-width: 200px;
    }
    
    .slider-dots {
        order: -1;
    }
}

/* Why Choose 100NU Section */
.why-choose-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.reason-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.reason-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.reason-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    border-radius: 50%;
}

.reason-icon i {
    font-size: 2rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

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

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

.reason-content h4 {
    color: var(--dark-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.reason-card:hover .reason-content h4 {
    color: var(--primary-color);
}

.reason-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Statistics Section */
.stats-container {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.stats-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05), rgba(33, 150, 243, 0.05));
    pointer-events: none;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--gray-600);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for Why Choose Section */
@media (max-width: 992px) {
    .reason-card {
        padding: 1.5rem;
    }
    
    .reason-icon {
        width: 70px;
        height: 70px;
    }
    
    .reason-icon i {
        font-size: 1.75rem;
    }
    
    .stats-container {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .reason-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .reason-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .reason-icon i {
        font-size: 1.5rem;
    }
    
    .reason-content h4 {
        font-size: 1.125rem;
    }
    
    .reason-content p {
        font-size: 0.9rem;
    }
    
    .stats-container {
        padding: 1.5rem 0.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .why-choose-section {
        padding: 3rem 0;
    }
    
    .reason-card {
        padding: 1rem;
    }
    
    .reason-icon {
        width: 50px;
        height: 50px;
    }
    
    .reason-icon i {
        font-size: 1.25rem;
    }
    
    .reason-content h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .reason-content p {
        font-size: 0.85rem;
    }
    
    .stats-container {
        padding: 1rem 0.25rem;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* Need Help Contact Section */
.need-help-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.need-help-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="help-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23help-pattern)"/></svg>') repeat;
    pointer-events: none;
}

.need-help-section .section-title {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.need-help-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-method-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-method-card:hover::before {
    transform: scaleX(1);
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: var(--transition);
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.contact-method-card:hover .contact-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.contact-method-card:hover .contact-icon i {
    transform: scale(1.1);
}

.contact-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.contact-method-card:hover .contact-content h4 {
    color: var(--primary-color);
}

.contact-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.contact-link:hover::before {
    left: 100%;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
    color: var(--white);
}

.whatsapp-link {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.whatsapp-link:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.email-link {
    background: linear-gradient(135deg, #ea4335, #fbbc05);
}

.email-link:hover {
    box-shadow: 0 8px 25px rgba(234, 67, 53, 0.3);
}

/* Quick Response Info */
.quick-response-info {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    overflow: hidden;
}

.quick-response-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.quick-response-info .container {
    position: relative;
    z-index: 1;
}

.quick-response-info h2 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.quick-response-info .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.response-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    height: 100%;
}

.response-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.response-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.response-item:hover .response-icon {
    transform: scale(1.1);
}

.response-icon i {
    font-size: 1.5rem;
    color: white;
}

.response-item h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.response-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Design for Need Help Section */
@media (max-width: 992px) {
    .contact-method-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
    }
    
    .contact-icon i {
        font-size: 1.75rem;
    }
    
    .quick-response-info {
        padding: 2rem 1.5rem;
    }
    
    .response-item {
        padding: 1.5rem 1rem;
    }
    
    .response-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .response-icon i {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .contact-method-card {
        padding: 1.5rem 1.25rem;
        margin-bottom: 1rem;
    }
    
    .contact-content h4 {
        font-size: 1.25rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    .contact-link {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .quick-response-info {
        padding: 1.5rem 1rem;
    }
    
    .response-item {
        padding: 1.5rem 0.75rem;
        margin-bottom: 1rem;
    }
    
    .response-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .response-icon i {
        font-size: 1.25rem;
    }
    
    .response-item h5 {
        font-size: 1rem;
    }
    
    .response-item p {
        font-size: 0.9rem;
    }
    
    .response-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .response-icon {
        width: 45px;
        height: 45px;
    }
    
    .response-icon i {
        font-size: 1.125rem;
    }
}

@media (max-width: 576px) {
    .contact-method-card {
        padding: 1.25rem 1rem;
    }
    
    .contact-content h4 {
        font-size: 1.125rem;
    }
    
    .contact-content p {
        font-size: 0.9rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 1.25rem;
    }
    
    .contact-link {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .quick-response-info {
        padding: 0.75rem;
    }
    
    .response-item {
        padding: 0.75rem;
    }
    
    .response-text h5 {
        font-size: 0.9rem;
    }
    
    .response-text p {
        font-size: 0.8rem;
    }
}

