/* ===== ROOT VARIABLES ===== */
:root {
    --primary-blue: #1E40AF;
    --dark-blue: #1E3A8A;
    --accent-orange: #F97316;
    --dark-orange: #EA580C;
    --black: #1F2937;
    --dark-gray: #374151;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(30, 64, 175, 0.2);
    --transition: all 0.3s ease;
    
    /* Legacy color variables for compatibility */
    --primary-red: #1E40AF;
    --dark-red: #1E3A8A;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Cairo', 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body[dir="ltr"] {
    font-family: 'Montserrat', 'Cairo', sans-serif;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

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

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

/* ===== PHONE NUMBER FIX FOR RTL ===== */
/* Force phone numbers to always display left-to-right */
a[href^="tel:"],
.branch-contact a[href^="tel:"],
.info-card a[href^="tel:"],
.footer-contact a[href^="tel:"] {
    direction: ltr;
    unicode-bidi: embed;
    display: inline-block;
}

/* ===== LANGUAGE TOGGLE ===== */
.language-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
}

body[dir="ltr"] .language-toggle {
    left: auto;
    right: 20px;
}

@media (max-width: 968px) {
    .language-toggle {
        top: auto;
        bottom: 20px;
        left: 20px;
    }
    
    body[dir="ltr"] .language-toggle {
        left: auto;
        right: 20px;
    }
}

.lang-btn {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.lang-btn:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
}

@media (max-width: 768px) {
    .logo-img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 45px;
    }
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.store-link {
    background: var(--primary-red);
    padding: 10px 25px !important;
    border-radius: 50px;
    color: var(--white) !important;
}

.store-link::after {
    display: none;
}

.store-link:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    background-image: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 90px;
    width: 100%;
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 500px;
        background-attachment: scroll;
        margin-top: 70px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(30, 58, 138, 0.85) 50%, rgba(249, 115, 22, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    padding: 0 15px;
    word-wrap: break-word;
    max-width: 100%;
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    padding: 0 20px;
    word-wrap: break-word;
}

@media (max-width: 968px) {
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 0.85rem;
    }
}

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

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .btn-store {
        order: -1; /* Show store button first on mobile */
        font-size: 17px;
        padding: 16px 35px;
    }
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-3px);
}

.btn-store {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--black);
    border: 2px solid #FFD700;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: pulse-glow 2s infinite;
}

.btn-store i {
    font-size: 18px;
}

.btn-store:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 215, 0, 0.6);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== SECTION STYLES ===== */
section {
    padding: 100px 0;
    width: 100%;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    section {
        padding: 50px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 20px auto 0;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--light-gray);
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

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

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

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

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

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

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-text h2 {
    text-align: right;
}

body[dir="ltr"] .about-text h2 {
    text-align: left;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--primary-red);
    font-size: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow);
}

.stat-card h3 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ===== BRANCHES SECTION ===== */
.branches {
    background: var(--white);
}

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

@media (max-width: 768px) {
    .branches-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .branch-card {
        padding: 25px 15px;
    }
}

.branch-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--dark-red));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.branch-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.branch-icon {
    position: relative;
    margin-bottom: 20px;
}

.branch-icon i {
    font-size: 50px;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.branch-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 10px;
}

.branch-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.branch-address {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 20px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.branch-contact {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.branch-contact p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.branch-contact p:last-child {
    margin-bottom: 0;
}

.branch-contact i {
    color: var(--primary-red);
    font-size: 18px;
}

.branch-contact a {
    color: var(--text-dark);
    font-weight: 600;
}

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

.branch-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-red);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}

.branch-btn:hover {
    background: var(--dark-red);
    gap: 15px;
}

.branch-btn i {
    font-size: 18px;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background: var(--light-gray);
}

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

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        height: 250px;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    cursor: pointer;
    box-shadow: var(--shadow);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.9), rgba(26, 26, 26, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}

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

/* ===== PAYMENT METHODS SECTION ===== */
.payment-methods {
    background: var(--white);
    padding: 80px 0;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .payment-logos {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .payment-logos {
        gap: 25px;
    }
    
    .payment-logo {
        height: 50px;
    }
    
    .payment-logo img {
        max-width: 120px;
    }
}

.payment-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.payment-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.payment-logo img {
    height: 100%;
    width: auto;
    max-width: 150px;
}

.payment-logo i {
    font-size: 60px;
    color: var(--black);
}

.payment-logo.mada {
    font-size: 40px;
    font-weight: 900;
    color: var(--black);
    font-family: Arial, sans-serif;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

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

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-card i {
    font-size: 35px;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--black);
}

.info-card p {
    color: var(--text-light);
    font-size: 1rem;
}

.info-card a {
    color: var(--primary-red);
    font-weight: 600;
}

.info-card a:hover {
    text-decoration: underline;
}

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

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--dark-red);
    transform: translateY(-5px);
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

@media (max-width: 768px) {
    .contact-map iframe,
    #map {
        min-height: 400px !important;
        height: 400px !important;
    }
}

@media (max-width: 480px) {
    .contact-map iframe,
    #map {
        min-height: 350px !important;
        height: 350px !important;
    }
}

#map {
    box-shadow: var(--shadow);
}

/* Leaflet popup customization */
.leaflet-popup-content-wrapper {
    border-radius: 10px;
}

.leaflet-popup-content {
    margin: 15px;
}

/* ===== BOOKING MODAL ===== */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.booking-modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

body[dir="rtl"] .booking-modal-close {
    right: auto;
    left: 20px;
}

.booking-modal-close:hover {
    color: var(--primary-red);
    background: var(--light-gray);
}

.booking-modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 30px;
    text-align: center;
}

.booking-form h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* PPF Selection */
.ppf-type-grid,
.ppf-color-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.ppf-option {
    cursor: pointer;
}

.ppf-option input[type="radio"] {
    display: none;
}

.ppf-card {
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
    background: var(--white);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ppf-option input[type="radio"]:checked + .ppf-card {
    border-color: var(--primary-red);
    background: rgba(200, 16, 46, 0.05);
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.2);
}

.ppf-card i {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 12px;
}

.ppf-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 5px;
}

.ppf-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Coverage Selection */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.coverage-option {
    cursor: pointer;
}

.coverage-option input[type="radio"] {
    display: none;
}

.coverage-card {
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    background: var(--white);
}

.coverage-option input[type="radio"]:checked + .coverage-card {
    border-color: var(--primary-red);
    background: rgba(200, 16, 46, 0.05);
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.2);
}

.coverage-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 5px;
}

.coverage-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Form Fields */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

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

/* Navigation Buttons */
.booking-nav-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

body[dir="rtl"] .booking-nav-buttons {
    flex-direction: row-reverse;
}

.booking-next,
.booking-prev {
    min-width: 120px;
}

/* Time Slots */
.time-slot-loading {
    text-align: center;
    padding: 20px;
}

.small-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid var(--light-gray);
    border-top-color: var(--primary-red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 10px;
}

.time-slot-loading p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.time-slot-hint,
.time-slot-error {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 20px;
}

.time-slot-card {
    cursor: pointer;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 15px 12px;
    transition: var(--transition);
    background: var(--white);
    position: relative;
}

.time-slot-card input[type="radio"] {
    display: none;
}

.time-slot-card.selected {
    border-color: var(--primary-red);
    background: rgba(200, 16, 46, 0.05);
    box-shadow: 0 2px 10px rgba(200, 16, 46, 0.15);
}

.time-slot-card.unavailable {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f9f9f9;
}

.time-slot-card:not(.unavailable):hover {
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.time-slot-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.time-slot-time {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
}

.time-slot-status {
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 500;
}

.time-slot-status.available {
    background: #D1FAE5;
    color: #065F46;
}

.time-slot-status.booked {
    background: #FEE2E2;
    color: #991B1B;
}

/* Date Cards Container */
.date-cards-container {
    margin-top: 1rem;
}

.date-cards-loading {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
}

.date-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 1rem;
}

.date-card {
    cursor: pointer;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.date-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.15);
}

.date-card.selected {
    border-color: var(--primary-red);
    background: rgba(200, 16, 46, 0.05);
    box-shadow: 0 2px 10px rgba(200, 16, 46, 0.2);
}

.date-card.selected::after {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.date-card-day {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.date-card-date {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.date-card-month {
    font-size: 0.85rem;
    color: var(--text-light);
}

.date-card.today {
    border-color: #10B981;
}

.date-card.today .date-card-day {
    color: #10B981;
}

/* Loading State */
.booking-loading {
    text-align: center;
    padding: 60px 20px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-gray);
    border-top-color: var(--primary-red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.booking-loading p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Success State */
.booking-success {
    text-align: center;
    padding: 40px 20px;
}

.booking-success i {
    font-size: 4rem;
    color: #10B981;
    margin-bottom: 20px;
}

.booking-success h3 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 25px;
}

.confirmation-box {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border: 3px solid #F59E0B;
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
}

.confirmation-label {
    font-size: 0.95rem;
    color: #92400E;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-code {
    font-size: 2rem;
    font-weight: 700;
    color: #92400E;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 10px;
    display: inline-block;
    margin: 10px 0;
    letter-spacing: 3px;
    border: 2px solid #F59E0B;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.confirmation-note {
    font-size: 0.85rem;
    color: #92400E;
    margin-top: 12px;
    font-weight: 500;
}

.booking-details {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    text-align: left;
}

body[dir="rtl"] .booking-details {
    text-align: right;
}

.booking-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.booking-detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.detail-value {
    color: var(--text-light);
    font-size: 0.95rem;
}

.whatsapp-note {
    font-size: 1rem;
    color: var(--text-light);
    margin: 20px 0;
}

.success-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.success-buttons .btn {
    min-width: 180px;
}

/* ===== VEHICLE SIZE CARDS ===== */
.vehicle-size-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.vehicle-size-card {
    cursor: pointer;
    position: relative;
}

.vehicle-size-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.vehicle-card-content {
    background: var(--white);
    border: 3px solid #E5E7EB;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.vehicle-size-card:hover .vehicle-card-content {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(200, 16, 46, 0.15);
}

.vehicle-size-card input[type="radio"]:checked + .vehicle-card-content {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, #FEF2F2 0%, #FFFFFF 100%);
    box-shadow: 0 8px 25px rgba(200, 16, 46, 0.2);
}

.vehicle-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    color: #9CA3AF;
}

.vehicle-icon i {
    display: block;
}

.vehicle-size-card:hover .vehicle-icon {
    color: var(--primary-red);
    transform: scale(1.1);
}

.vehicle-size-card input[type="radio"]:checked ~ .vehicle-card-content .vehicle-icon {
    color: var(--primary-red);
    transform: scale(1.15);
}

.vehicle-card-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin: 10px 0;
    line-height: 1.4;
}

.vehicle-starting-price {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 10px;
}

.vehicle-starting-price strong {
    display: block;
    font-size: 1.3rem;
    color: var(--primary-red);
    font-weight: 700;
    margin-top: 5px;
}

.vehicle-examples {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 8px;
    font-style: italic;
    min-height: 20px;
}

/* ===== PACKAGES GRID ===== */
.packages-loading {
    text-align: center;
    padding: 40px 20px;
}

.small-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--light-gray);
    border-top-color: var(--primary-red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 15px;
}

.packages-grid {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.package-card {
    background: var(--white);
    border: 3px solid #E5E7EB;
    border-radius: 16px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 16, 46, 0.15);
}

.package-card.selected {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, #FEF2F2 0%, #FFFFFF 100%);
    box-shadow: 0 8px 25px rgba(200, 16, 46, 0.2);
}

.package-card.popular::before {
    content: "⭐ الأكثر طلباً";
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-red);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

body[dir="ltr"] .package-card.popular::before {
    content: "⭐ Most Popular";
    right: auto;
    left: 20px;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.package-name {
    flex: 1;
}

.package-name h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}

.package-name p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.package-price {
    text-align: right;
}

body[dir="ltr"] .package-price {
    text-align: left;
}

.package-price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
}

.package-price-label {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 3px;
}

.package-features {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #E5E7EB;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    font-size: 0.85rem;
    color: var(--text-dark);
    padding: 5px 0;
    padding-right: 20px;
    position: relative;
}

body[dir="ltr"] .package-features li {
    padding-right: 0;
    padding-left: 20px;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: #10B981;
    font-weight: 700;
}

body[dir="ltr"] .package-features li::before {
    right: auto;
    left: 0;
}

/* ===== VEHICLE DETAILS OPTIONAL ===== */
.vehicle-details-optional {
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 0;
    margin: 25px 0;
}

.vehicle-details-optional summary {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    user-select: none;
}

.vehicle-details-optional summary::-webkit-details-marker {
    display: none;
}

.vehicle-details-optional summary::after {
    content: "▼";
    margin-right: auto;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

body[dir="ltr"] .vehicle-details-optional summary::after {
    margin-right: 0;
    margin-left: auto;
}

.vehicle-details-optional[open] summary::after {
    transform: rotate(180deg);
}

.vehicle-details-optional summary:hover {
    background: #F3F4F6;
}

.vehicle-details-content {
    padding: 0 20px 20px 20px;
}

/* ===== PRICE SUMMARY ===== */
.price-summary {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border: 3px solid #F59E0B;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.95rem;
    color: #92400E;
}

.price-row.total {
    border-top: 2px solid #F59E0B;
    margin-top: 10px;
    padding-top: 15px;
    font-size: 1.2rem;
}

.price-row.total strong {
    font-size: 1.5rem;
    color: #92400E;
}

/* ===== ACCESSORIES GRID ===== */
.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.accessory-card {
    background: white;
    border: 3px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.accessory-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 16, 46, 0.15);
}

.accessory-card.selected {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, #FEF2F2 0%, #FFF5F5 100%);
    box-shadow: 0 8px 20px rgba(200, 16, 46, 0.2);
}

.accessory-card.selected::after {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(200, 16, 46, 0.3);
    animation: checkmarkPop 0.3s ease;
}

@keyframes checkmarkPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.accessory-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.accessory-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.accessory-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-red);
    white-space: nowrap;
}

.accessory-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 8px 0;
    line-height: 1.4;
}

.accessory-category {
    display: inline-block;
    padding: 4px 10px;
    background: #F3F4F6;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #6B7280;
    margin-top: 8px;
}

.accessory-popular {
    position: absolute;
    top: -8px;
    left: 12px;
    background: #FCD34D;
    color: #92400E;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===== ERROR TOAST ===== */
.error-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: #FEE2E2;
    border: 2px solid #DC2626;
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 90%;
    min-width: 300px;
}

.error-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.error-toast i {
    color: #DC2626;
    font-size: 1.5rem;
}

.error-toast span {
    color: #991B1B;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .error-toast {
        min-width: auto;
        max-width: 85%;
        padding: 12px 16px;
    }
    
    .error-toast i {
        font-size: 1.2rem;
    }
    
    .error-toast span {
        font-size: 0.85rem;
    }
    
    .booking-modal {
        padding: 10px;
    }
    
    .booking-modal-content {
        padding: 30px 20px;
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .booking-modal-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
        padding-right: 40px;
    }
    
    body[dir="rtl"] .booking-modal-title {
        padding-right: 0;
        padding-left: 40px;
    }
    
    .ppf-type-grid,
    .ppf-color-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .ppf-card {
        min-height: 120px;
        padding: 20px 15px;
    }
    
    .ppf-card i {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .ppf-card h4 {
        font-size: 1rem;
    }
    
    .ppf-card p {
        font-size: 0.8rem;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .coverage-card {
        padding: 18px 15px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .booking-form h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .booking-nav-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .booking-next,
    .booking-prev {
        width: 100%;
    }
    
    .booking-code {
        font-size: 1.3rem;
        padding: 12px 20px;
        letter-spacing: 1px;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .time-slot-card {
        padding: 12px 10px;
    }
    
    .time-slot-time {
        font-size: 1rem;
    }
    
    .booking-success i {
        font-size: 3rem;
    }
    
    .booking-success h3 {
        font-size: 1.5rem;
    }
    
    .confirmation-box {
        padding: 20px 15px;
    }
    
    .booking-code {
        font-size: 1.5rem;
        padding: 12px 20px;
        letter-spacing: 2px;
    }
    
    .booking-details {
        padding: 15px;
    }
    
    .booking-detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 10px 0;
    }
    
    body[dir="rtl"] .booking-detail-item {
        align-items: flex-end;
    }
    
    .success-buttons {
        flex-direction: column;
    }
    
    .success-buttons .btn {
        width: 100%;
        min-width: auto;
    }
    
    /* Vehicle size cards mobile */
    .vehicle-size-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .vehicle-card-content {
        min-height: 180px;
        padding: 25px 15px;
    }
    
    .vehicle-icon {
        font-size: 3rem;
    }
    
    /* Package cards mobile */
    .package-card {
        padding: 20px;
    }
    
    .package-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .package-price {
        text-align: left;
    }
    
    body[dir="rtl"] .package-price {
        text-align: right;
    }
    
    .package-price-amount {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .booking-modal-content {
        padding: 25px 15px;
    }
    
    .booking-modal-title {
        font-size: 1.3rem;
    }
    
    .ppf-card {
        min-height: 100px;
        padding: 15px 10px;
    }
    
    .ppf-card i {
        font-size: 1.5rem;
    }
    
    .ppf-card h4 {
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.footer-links a {
    display: block;
    color: var(--light-gray);
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-right: 10px;
}

body[dir="ltr"] .footer-links a:hover {
    padding-right: 0;
    padding-left: 10px;
}

.footer-contact p {
    color: var(--light-gray);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 280px;
        max-width: 85vw;
        height: calc(100vh - 90px);
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        transition: var(--transition);
        align-items: flex-start;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    body[dir="ltr"] .nav-links {
        right: auto;
        left: -100%;
    }

    .nav-links.active {
        right: 0;
    }

    body[dir="ltr"] .nav-links.active {
        left: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .hero {
        height: 80vh;
        margin-top: 80px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .payment-logos {
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo img {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links a {
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .stat-card h3 {
        font-size: 2rem;
    }

    .gallery-item {
        height: 250px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== ACCESSIBILITY ===== */
:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .language-toggle,
    .hamburger,
    .scroll-indicator {
        display: none;
    }
}
