/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --primary-color: #ff4c4c;
    --text-color: #fff;
    --bg-dark: #000;
    --bg-card: #1a1a1a;
    --bg-secondary: #0f0f0f;
    --border-radius: 0.75rem;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 20px 40px rgba(255, 76, 76, 0.2);
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Arial', sans-serif;
    background: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 1rem;
}

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

/* Typography */
h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Contact Section Styles */
.contact-section {
    padding: 2rem 0;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.contact-methods {
    display: grid;
    gap: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.method-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1rem;
    color: var(--text-color);
}

.method-details h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.method-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
}

.method-details a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

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

.method-icon i.fab.fa-whatsapp {
    color: #fff;
}

.contact-method:hover .method-icon i.fab.fa-whatsapp {
    animation: pulse 1s infinite;
}

.method-details a[href^="https://wa.me"] {
    color: #25D366;
    font-weight: 500;
}

.method-details a[href^="https://wa.me"]:hover {
    color: #128C7E;
}

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

/* Media Queries */
@media screen and (min-width: 768px) {
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media screen and (min-width: 1024px) {
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background: #000;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 3rem;
}

.team-grid,
.team-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member-card {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 2rem;
    text-align: center; /* Center text as there are no images */
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center content horizontally */
    gap: 0.5rem; /* Small gap between text elements */
    overflow: hidden;
}

.team-member-card:hover {
    transform: translateY(-5px);
}

.member-info {
    width: 100%;
    padding: 0 1rem; /* Adjusted padding for text-only content */
}

.member-details h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.member-details .position {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.member-details .experience {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.member-contact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.member-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    justify-content: center; /* Center contact details */
}

.member-contact i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.member-contact i.fab.fa-whatsapp {
    color: #25D366;
}

.member-contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.member-contact a[href^="https://wa.me"]:hover {
    color: #25D366;
}

@media screen and (max-width: 768px) {
    .team-grid,
    .team-members-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-member-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .member-info {
        padding: 0 0.8rem;
    }
    
    .member-details h3 {
        font-size: 1.3rem;
    }

    .member-details .position {
        font-size: 0.9rem;
    }

    .member-details .experience {
        font-size: 0.8rem;
    }

    .member-contact {
        gap: 0.5rem;
    }
    
    .member-contact p {
        font-size: 0.9rem;
        justify-content: center;
    }

    .member-contact i {
        width: 1.25rem;
        height: 1.25rem;
        font-size: 0.9rem;
    }
}

/* Mobile Optimization */
@media screen and (max-width: 480px) {
    .member-info {
        padding: 0 0.5rem;
    }

    .member-details h3 {
        font-size: 1.2rem;
    }

    .member-details .position {
        font-size: 0.85rem;
    }

    .member-details .experience {
        font-size: 0.75rem;
    }

    .member-contact {
        margin-top: 0.8rem;
        padding-top: 0.8rem;
        gap: 0.4rem;
    }

    .member-contact p {
        font-size: 0.8rem;
    }
}

/* Extra Small Mobile Devices (up to 360px) */
@media screen and (max-width: 360px) {
    .member-contact {
        margin-top: 0.6rem;
        gap: 0.3rem;
    }

    .member-contact p {
        font-size: 0.75rem;
    }
}

/* Media Queries */
@media screen and (min-width: 768px) {
    .team-members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (min-width: 1024px) {
    .team-members-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .gallery-grid {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(51, 51, 51, 0.95);
    color: #fff;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 2px solid #ff4c4c;
}

.logo img {
    height: 35px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 8px 15px;
    border-radius: 4px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    color: #ff4c4c;
    background: rgba(255, 76, 76, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin-top: 57px;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 600px;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: #ff4c4c;
    color: #fff;
}

.cta-button.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-button.primary:hover {
    background: #ff3333;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Gallery Page */
.gallery-header {
    background: #111;
    padding: 80px 20px 40px;
    text-align: center;
    margin-top: 57px;
}

.gallery-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 15px;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #ff4c4c;
    border-color: #ff4c4c;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
    background: #000;
}

.gallery-item {
    position: relative;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    display: none;
}

.vehicle-details {
    margin-top: 10px;
    font-size: 0.85em;
    line-height: 1.4;
}

.vehicle-details p:first-child {
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 5px;
}

.vehicle-details p:last-child {
    font-size: 0.9em;
    opacity: 0.8;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    gap: 30px;
}

.lightbox-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lightbox img {
    max-height: 70vh;
    object-fit: contain;
    border-radius: 5px;
}

.lightbox-details {
    background: rgba(26, 26, 26, 0.9);
    padding: 30px;
    border-radius: 10px;
    min-width: 300px;
}

.lightbox-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.lightbox-details p {
    color: #ccc;
    margin-bottom: 20px;
}

.lightbox-actions {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.lightbox-nav {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 20px;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    color: #ff4c4c;
    transform: scale(1.1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    z-index: 2001;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: #ff4c4c;
    transform: scale(1.1);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

/* Features Section */
.features {
    padding: 60px 20px;
    background: #1a1a1a;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #262626;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.feature-card i {
    font-size: 2.5rem;
    color: #ff4c4c;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 20px;
    background: #000;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefit-item {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.benefit-item i {
    font-size: 2rem;
    color: #ff4c4c;
    flex-shrink: 0;
}

.benefit-item h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-item p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Bottom CTA Section */
.bottom-cta {
    padding: 60px 20px;
    background: #1a1a1a;
    text-align: center;
}

.bottom-cta .container {
    max-width: 800px;
    margin: 0 auto;
}

.bottom-cta h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

.bottom-cta p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.bottom-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
footer {
    background: #111;
    color: #fff;
    padding: 60px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    padding: 0 20px;
}

.footer-section {
    padding-right: 20px;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #ff4c4c;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section i {
    color: #ff4c4c;
    width: 20px;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li a:hover {
    color: #ff4c4c;
}

.footer-section.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.copyright {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #ccc;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff4c4c;
}

/* Responsive Footer */
@media screen and (max-width: 768px) {
    footer {
        padding: 40px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .footer-section {
        padding-right: 0;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section p,
    .footer-section ul li a {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .copyright {
        margin-top: 30px;
        padding: 15px;
    }
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 57px;
        left: 0;
        width: 100%;
        background: rgba(51, 51, 51, 0.98);
        padding: 10px;
        flex-direction: column;
        align-items: center;
    }

    .nav-links.active {
        display: flex;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        padding: 20px;
    }

    .gallery-header {
        padding: 60px 15px 30px;
    }

    .gallery-header h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .lightbox-content {
        flex-direction: column;
        gap: 20px;
    }

    .lightbox-details {
        padding: 20px;
        min-width: auto;
        width: 100%;
    }

    .lightbox-nav {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .features {
        padding: 40px 15px;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-card i {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .why-choose-us {
        padding: 50px 15px;
    }

    .why-choose-us h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .benefit-item {
        padding: 20px;
    }

    .benefit-item i {
        font-size: 1.5rem;
    }

    .benefit-item h3 {
        font-size: 1.2rem;
    }

    .bottom-cta {
        padding: 40px 15px;
    }

    .bottom-cta h2 {
        font-size: 1.5rem;
    }

    .bottom-cta p {
        font-size: 1rem;
    }

    .bottom-cta .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .bottom-cta .cta-button {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-header h1 {
        font-size: 1.8rem;
    }

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
    .gallery-hero {
        height: -webkit-fill-available;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .gallery-grid {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* About Page Styles */
.about-main {
    padding-top: 57px;
    background: #000;
}

.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/PHOTO-2025-05-15-14-25-30.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.about-hero-content {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero-content p {
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about-info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-card {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-card h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.about-card h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #ff4c4c;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: #ff4c4c;
    font-size: 1.5rem;
    width: 24px;
}

.contact-item h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-item p {
    color: #ccc;
    margin: 0;
}

.contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ff4c4c;
}

.features-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
}

.features-list li i {
    color: #ff4c4c;
}

/* Team Column Styles */
.team-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member-card:hover {
    transform: translateY(-5px);
}

.member-info {
    width: 100%;
    padding: 0 1rem;
}

.member-details h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.member-details .position {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.member-details .experience {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.member-contact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.member-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    justify-content: center;
}

.member-contact i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.member-contact i.fab.fa-whatsapp {
    color: #25D366;
}

.member-contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.member-contact a[href^="https://wa.me"]:hover {
    color: #25D366;
}

@media screen and (max-width: 768px) {
    .member-contact {
        gap: 0.5rem;
    }
    
    .member-contact p {
        font-size: 0.9rem;
    }

    .member-contact i {
        width: 1.25rem;
        height: 1.25rem;
        font-size: 0.9rem;
    }
}

/* Mobile Optimization */
@media screen and (max-width: 480px) {
    .member-contact {
        margin-top: 0.8rem;
        padding-top: 0.8rem;
        gap: 0.4rem;
    }

    .member-contact p {
        font-size: 0.8rem;
    }
}

/* Extra Small Mobile Devices (up to 360px) */
@media screen and (max-width: 360px) {
    .member-contact {
        margin-top: 0.6rem;
        gap: 0.3rem;
    }

    .member-contact p {
        font-size: 0.75rem;
    }
}

/* Responsive Styles for About Page */
@media screen and (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-hero {
        height: 250px;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }

    .about-hero-content p {
        font-size: 1rem;
    }

    .about-card {
        padding: 20px;
    }

    .member-info {
        padding: 12px;
    }

    .member-info h3 {
        font-size: 1.1rem;
    }

    .member-info .position {
        font-size: 0.9rem;
    }

    .member-info .experience {
        font-size: 0.8rem;
    }

    .member-contact {
        flex-direction: column;
        gap: 6px;
    }

    .contact-button,
    .email-button {
        width: 100%;
        justify-content: center;
        padding: 8px;
        font-size: 0.8rem;
    }
}

/* Additional Mobile Optimization for Smaller Devices (up to 6.9 inches) */
@media screen and (max-width: 480px) {
    .team-grid {
        gap: 15px;
    }

    .member-info {
        padding: 10px;
    }

    .member-info h3 {
        font-size: 1rem;
    }

    .member-info .position {
        font-size: 0.85rem;
    }

    .member-info .experience {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }

    .member-contact {
        margin-top: 8px;
    }

    .contact-button,
    .email-button {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}

.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/PHOTO-2025-05-13-08-08-38.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 57px;
}

.contact-hero h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero p {
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-section {
    padding: 60px 0;
    background: #000;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info h2,
.contact-form-container h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.method-icon {
    width: 40px;
    height: 40px;
    background: #ff4c4c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.2rem;
    color: #fff;
}

.method-details h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.method-details p {
    color: #ccc;
    margin: 0;
}

.method-details a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-details a:hover {
    color: #ff4c4c;
}

.contact-form {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 4px 8px;
    margin-top: 0;
    margin-bottom: 0;
    background: #262626;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
}

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

.submit-button {
    background: #ff4c4c;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: #ff3333;
}

.form-message {
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
}

/* Team Section on Contact Page */
.team-section {
    padding: 60px 0;
    background: #000;
}

.team-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-section h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-method {
        gap: 15px;
    }

    .method-icon {
        width: 35px;
        height: 35px;
    }

    .method-details h3 {
        font-size: 1.1rem;
    }

    .team-members-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    .contact-hero {
        height: 200px;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-info h2,
    .contact-form-container h2,
    .team-section h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .contact-methods {
        gap: 20px;
    }

    .method-icon {
        width: 30px;
        height: 30px;
    }

    .method-icon i {
        font-size: 1rem;
    }

    .contact-form {
        padding: 20px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 0.9rem;
    }

    .submit-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 2px solid var(--primary-color);
}

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

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

@media screen and (max-width: 768px) {
    .member-image {
        width: 150px;
        height: 150px;
    }
}

@media screen and (max-width: 480px) {
    .member-image {
        width: 120px;
        height: 120px;
    }
}

.ldc-red {
    color: #ff4c4c;
    font-weight: bold;
}

.contact-method.whatsapp {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    min-height: unset;
}

.form-row {
    gap: 0;
}

@media (max-width: 700px) {
    .form-group {
        margin-bottom: 0;
    }
    .form-row {
        gap: 0;
    }
}

@media (max-width: 480px) {
    .form-group {
        margin-bottom: 0;
    }
    .form-row {
        gap: 0;
    }
}

@media (max-width: 360px) {
    .form-group {
        margin-bottom: 0;
    }
    .form-row {
        gap: 0;
    }
}

/* Center and color all form section headings (h2) in the application form */
#car-application-form h2 {
  text-align: center;
  color: #ff4c4c;
}

#consent_checkbox {
  width: 1.5em;
  height: 1.5em;
  accent-color: #ff4c4c;
  background: #fff;
  border-radius: 4px;
  border: 2px solid #ff4c4c;
}

#consent_checkbox:checked {
  accent-color: #ff4c4c;
  background: #fff;
}

/* Application Form Professional Styling */
#car-application-form {
  background: #181a1b;
  border-radius: 16px;
  box-shadow: 0 4px 32px 0 #0004;
  padding: 2.5em 2em 2em 2em;
  margin: 40px auto 40px auto;
  max-width: 700px;
  border: 1px solid #232323;
}
#car-application-form h2 {
  margin-top: 2.5em;
  margin-bottom: 1.2em;
  padding-bottom: 0.3em;
  border-bottom: 1.5px solid #ff4c4c33;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: none;
}
#car-application-form .form-group {
  margin-bottom: 1.2em;
}
#car-application-form label {
  font-weight: 600;
  font-size: 1.08em;
  color: #fff;
  margin-bottom: 0.3em;
}
#car-application-form input,
#car-application-form select {
  background: #232323;
  border: 1.5px solid #333;
  color: #fff;
  border-radius: 6px;
  padding: 0.7em 1em;
  font-size: 1em;
  transition: border 0.2s, box-shadow 0.2s, background 0.2s;
  margin-top: 0.2em;
}
#car-application-form input:focus,
#car-application-form select:focus {
  border: 1.5px solid #ff4c4c;
  background: #232323cc;
  box-shadow: 0 0 0 2px #ff4c4c33;
}
#car-application-form .cta-button.primary.submit-btn {
  background: #ff4c4c;
  color: #fff;
  font-size: 1.15em;
  font-weight: 700;
  border-radius: 6px;
  padding: 1em 2.5em;
  margin-top: 2.5em;
  box-shadow: 0 2px 8px #0002;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
#car-application-form .cta-button.primary.submit-btn:hover,
#car-application-form .cta-button.primary.submit-btn:focus {
  background: #e63a3a;
  box-shadow: 0 4px 16px #0003;
  transform: translateY(-2px) scale(1.03);
}
@media (max-width: 700px) {
  #car-application-form {
    padding: 1.2em 0.5em 1.5em 0.5em;
    max-width: 100%;
  }
  #car-application-form h2 {
    font-size: 1.15em;
    margin-top: 1.5em;
    margin-bottom: 0.7em;
  }
}

/* Supported Banks Images Row Styling */
.bank-logos-section {
  background: #191b1c;
  padding: 2em 0 1.5em 0;
  margin-top: 2em;
  text-align: center;
}
.bank-logos-heading {
  color: #ff4c4c;
  font-size: 1.25em;
  font-weight: 700;
  margin-bottom: 1.2em;
  letter-spacing: 0.5px;
}
.bank-logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2em;
}
.bank-logos-row img {
  max-height: 64px;
  width: auto;
  margin: 0.5em 0.7em;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px #0002;
  padding: 0.3em 0.7em;
  transition: transform 0.2s;
}
.bank-logos-row img:hover {
  transform: scale(1.07);
  box-shadow: 0 4px 16px #0003;
}
@media (max-width: 600px) {
  .bank-logos-row {
    gap: 1em;
  }
  .bank-logos-row img {
    max-height: 48px;
    padding: 0.2em 0.3em;
  }
}