/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Announcement Bar */
.announcement-bar {
    background: #dc2626;
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
}

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo h1 {
    font-size: 24px;
    font-weight: 800;
    color: #374151;
    margin: 0;
}

.logo p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

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

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #dc2626;
}

.cta-button {
    background: #dc2626;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-button:hover {
    background: #b91c1c;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?w=1920&h=1080&fit=crop') center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-cta {
    background: #dc2626;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.hero-cta:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

/* Car Fleet Section */
.car-fleet {
    padding: 80px 0;
    background: #f9fafb;
}

.car-fleet h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #374151;
    margin-bottom: 50px;
}

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

.car-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
}

.car-actions i {
    background: rgba(255, 255, 255, 0.9);
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #374151;
}

.car-actions i:hover {
    background: #dc2626;
    color: white;
}

.car-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #dc2626;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.car-info {
    padding: 20px;
}

.car-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 8px;
}

.car-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.car-rating i {
    color: #fbbf24;
}

.car-rating span {
    font-weight: 600;
    color: #374151;
}

.transmission {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 15px;
}

.car-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.spec {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #6b7280;
}

.spec i {
    color: #dc2626;
}

.pricing-options {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.price-btn {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.price-btn.immediate {
    background: #dc2626;
    color: white;
}

.price-btn.office {
    background: #fca5a5;
    color: #dc2626;
}

.price-btn:hover {
    transform: translateY(-1px);
}

.deposit {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
}

.rent-btn {
    width: 100%;
    background: #dc2626;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.rent-btn:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}

.whatsapp-btn {
    background: #dc2626 !important;
    color: white !important;
}

.whatsapp-btn:hover {
    background: #b91c1c !important;
    transform: translateY(-1px);
}

/* Why Sayman Section */
.why-sayman {
    padding: 80px 0;
    background: white;
}

.why-sayman h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #374151;
    margin-bottom: 50px;
}

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

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: #f9fafb;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

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

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: #dc2626;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.cta-btn {
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: white;
    color: #dc2626;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

.cta-btn.primary:hover {
    background: #f9fafb;
}

.cta-btn.secondary:hover {
    background: white;
    color: #dc2626;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #9ca3af;
}

.contact-info i {
    color: #dc2626;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        font-size: 16px;
        padding: 12px 24px;
    }
    
    .car-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    /* Contact Page Responsive */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-info-container {
        gap: 30px;
    }
    
    .social-media-section {
        padding: 20px;
    }
    
    .map-overlay {
        position: static;
        margin: 20px;
        max-width: none;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .car-fleet h2,
    .why-sayman h2,
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .pricing-options {
        flex-direction: column;
    }
    
    .car-specs {
        flex-direction: column;
        gap: 8px;
    }
}

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

/* Loading animation for images */
.car-image img {
    transition: opacity 0.3s ease;
}

.car-image img:not([src]) {
    opacity: 0;
}

/* Button animations */
button {
    position: relative;
    overflow: hidden;
}

button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

button:active::before {
    width: 300px;
    height: 300px;
}

/* Contact Page Specific Styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?w=1920&h=1080&fit=crop') center/cover;
    height: 50vh;
}

.nav a.active {
    color: #dc2626;
    font-weight: 600;
}

.contact-section {
    padding: 80px 0;
    background: #f9fafb;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 30px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
}

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

.submit-btn {
    width: 100%;
    background: #dc2626;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-section h3,
.social-media-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 20px;
}

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

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

.contact-item i {
    color: #dc2626;
    font-size: 1.2rem;
    margin-top: 5px;
    width: 20px;
}

.contact-item strong {
    display: block;
    color: #374151;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item p {
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.social-media-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.social-link.facebook {
    color: #1877f2;
}

.social-link.twitter {
    color: #1da1f2;
}

.social-link.instagram {
    color: #e4405f;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.social-link.instagram:hover {
    background: #e4405f;
    color: white;
    border-color: #e4405f;
}

/* Map Section */
.map-section {
    background: white;
}

.map-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 300px;
}

.map-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 8px;
}

.map-info p {
    color: #6b7280;
    margin-bottom: 15px;
    line-height: 1.5;
}

.directions-btn {
    background: #dc2626;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.directions-btn:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}

/* Form Validation Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.error-message {
    color: #dc2626;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.success-message {
    background: #10b981;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

/* Loading State */
.submit-btn.loading {
    background: #9ca3af;
    cursor: not-allowed;
}

.submit-btn.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b91c1c;
}

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

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

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    color: #1f2937;
    font-size: 18px;
    font-weight: 600;
}

.faq-question i {
    color: #dc2626;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px 30px;
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 15px;
}

.faq-answer ul {
    color: #6b7280;
    line-height: 1.6;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* Mobile-specific FAQ improvements */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px 15px;
        min-height: 60px;
        -webkit-tap-highlight-color: rgba(220, 38, 38, 0.1);
    }
    
    .faq-question h3 {
        font-size: 16px;
        line-height: 1.4;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 20px 15px;
    }
    
    .faq-question:active {
        background: #f0f0f0;
    }
}

/* Terms Section Styles */
.terms-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-section-item {
    background: white;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.terms-section-item h2 {
    color: #1f2937;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 3px solid #dc2626;
    padding-bottom: 10px;
}

.terms-section-item h3 {
    color: #374151;
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

.terms-section-item p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 15px;
}

.terms-section-item ul {
    color: #6b7280;
    line-height: 1.7;
    padding-left: 20px;
    margin-bottom: 15px;
}

.terms-section-item li {
    margin-bottom: 8px;
}

.terms-section-item strong {
    color: #1f2937;
    font-weight: 600;
}

/* Privacy Policy Section Styles */
.privacy-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section-item {
    background: white;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.privacy-section-item h2 {
    color: #1f2937;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 3px solid #dc2626;
    padding-bottom: 10px;
}

.privacy-section-item h3 {
    color: #374151;
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

.privacy-section-item p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 15px;
}

.privacy-section-item ul {
    color: #6b7280;
    line-height: 1.7;
    padding-left: 20px;
    margin-bottom: 15px;
}

.privacy-section-item li {
    margin-bottom: 8px;
}

.privacy-section-item strong {
    color: #1f2937;
    font-weight: 600;
}

/* About Page Styles */
.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    color: #1f2937;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    border-bottom: 3px solid #dc2626;
    padding-bottom: 15px;
}

.about-text p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 25px;
}

.about-text strong {
    color: #dc2626;
    font-weight: 600;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: white;
}

.services-section h2 {
    text-align: center;
    color: #1f2937;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}

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

.service-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: #dc2626;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
}

.service-card h3 {
    color: #1f2937;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 16px;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    color: #1f2937;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.value-item h3 {
    color: #1f2937;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-item p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 15px;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
    
    .about-text p {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-section h2,
    .values-section h2 {
        font-size: 28px;
    }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #374151;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle:hover {
    color: #dc2626;
}

.nav {
    display: flex;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav a:hover,
.nav a.active {
    color: #dc2626;
}

/* Desktop styles */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        order: 2;
        margin-left: auto;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 20px;
        z-index: 999;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .nav li {
        width: 100%;
        text-align: left;
    }
    
    .nav a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #e5e7eb;
        font-size: 16px;
        text-align: left;
    }
    
    .nav a:last-child {
        border-bottom: none;
    }
    
    .header-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        width: 100%;
    }
    
    .logo {
        flex: 1;
        text-align: left;
        order: 1;
    }
    
    .logo h1 {
        font-size: 18px;
        text-align: left;
        margin: 0;
    }
    
    .logo p {
        font-size: 11px;
        text-align: left;
        margin: 0;
    }
    
    .mobile-menu-toggle {
        order: 2;
        margin-left: auto;
        flex-shrink: 0;
    }
    
    .cta-button {
        display: none;
    }
    
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    .nav .cta-button {
        display: block;
        order: 6;
        margin-top: 15px;
        padding: 12px 20px;
        font-size: 16px;
        text-align: center;
        background: #dc2626;
        color: white;
        border: none;
        border-radius: 5px;
        text-decoration: none;
    }
    
    .nav .cta-button:hover {
        background: #b91c1c;
    }
    
    /* Contact Page Mobile Styles */
    .contact-hero h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .contact-hero p {
        font-size: 16px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .contact-form h2 {
        font-size: 24px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 16px;
    }
    
    .submit-btn {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .contact-info-section {
        padding: 20px;
    }
    
    .contact-info-section h3 {
        font-size: 20px;
    }
    
    .contact-info p {
        font-size: 14px;
        padding: 8px 0;
    }
    
    .map-container {
        height: 300px;
    }
    
    .map-overlay {
        padding: 15px;
    }
    
    .map-info h3 {
        font-size: 18px;
    }
    
    .map-info p {
        font-size: 14px;
    }
    
    .directions-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    /* Footer Mobile Styles */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 18px;
        margin-bottom: 15px;
        text-align: left;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 14px;
        text-align: left;
    }
    
    .footer-section ul {
        text-align: left;
    }
    
    .contact-info p {
        font-size: 14px;
        padding: 5px 0;
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: left;
    }
    
     .footer-links {
         display: none;
     }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .logo {
        flex: 1;
        text-align: left;
        order: 1;
    }
    
    .logo h1 {
        font-size: 18px;
        text-align: left;
        margin: 0;
    }
    
    .logo p {
        font-size: 12px;
        text-align: left;
        margin: 0;
    }
    
    .mobile-menu-toggle {
        order: 2;
        margin-left: auto;
        flex-shrink: 0;
    }
    
    .cta-button {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .contact-hero h1 {
        font-size: 24px;
    }
    
   
    
    .contact-form h2 {
        font-size: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .contact-info-section h3 {
        font-size: 18px;
    }
    
    .contact-info p {
        font-size: 13px;
    }
    
    .map-container {
        height: 250px;
    }
    
    .map-overlay {
        padding: 10px;
    }
    
    .map-info h3 {
        font-size: 16px;
    }
    
    .map-info p {
        font-size: 12px;
    }
    
    .directions-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}
