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

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    direction: rtl;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c5aa0;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.nav-link {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    background: rgba(78, 205, 196, 0.1);
    color: #4ecdc4;
}

.nav-link i {
    display: none;
}

.booking-link {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white !important;
    font-weight: 600;
}

.booking-link:hover {
    background: linear-gradient(135deg, #44a08d, #4ecdc4);
    transform: translateY(-2px);
}

/* Mobile Menu Content */
.nav-menu-header {
    display: none;
}

.nav-menu-content {
    display: contents;
}

.nav-menu-footer {
    display: none;
}

.booking-link.active {
    background: linear-gradient(135deg, #44a08d, #4ecdc4) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

/* Mobile responsive for booking link */
@media (max-width: 768px) {
    .nav-link.booking-link.active {
        background: linear-gradient(135deg, #44a08d, #4ecdc4) !important;
        color: white !important;
        border-radius: 8px;
        margin: 0.5rem 1rem;
    }
}

/* Mobile Menu Overlay */
.nav-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-menu.active::before {
    opacity: 1;
    visibility: visible;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    height: 50px;
}

.logo img {
    height: 100%;
    width: auto;
    max-width: 50px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
}

.logo-placeholder i {
    font-size: 2rem;
    color: #4ecdc4;
}

.phone-btn {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-right: 2rem;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border: 2px solid white;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dental-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.dental-placeholder i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.animate-fade-up:nth-child(2) {
    animation-delay: 0.2s;
}

.animate-fade-up:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.booking-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.booking-header h2 {
    color: #2c5aa0;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.booking-header p {
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4ecdc4;
    background: white;
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

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

.submit-btn {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

.trust-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f0f8ff;
    border-radius: 8px;
    border-right: 4px solid #4ecdc4;
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 3rem;
}

.about {
    padding: 80px 0;
    background: white;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.service-card i {
    font-size: 2.5rem;
    color: #4ecdc4;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    transform: scale(1);
}

.service-card:hover i {
    transform: scale(1.2) rotate(10deg);
    color: #44a08d;
}

.service-card h3 {
    font-size: 1.1rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    font-weight: 600;
}

.service-card:hover h3 {
    color: #4ecdc4;
}

.service-card p {
    color: #666;
    line-height: 1.5;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.service-card:hover p {
    color: #333;
}

.why-choose {
    padding: 80px 0;
    background: white;
}

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

.feature {
    text-align: center;
    padding: 2rem;
}

.feature i {
    font-size: 3rem;
    color: #4ecdc4;
    margin-bottom: 1.5rem;
}

.feature h3 {
    font-size: 1.2rem;
    color: #2c5aa0;
    font-weight: 600;
}

.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    padding: 18px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(78, 205, 196, 0.4);
}

.location {
    padding: 80px 0;
    background: #f8f9fa;
}

.location-content {
    display: block;
}

.branches-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.branch-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.branch-card h3 {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.branch-card p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: #555;
}

.branch-card i {
    color: #4ecdc4;
    width: 20px;
}

/* Map Responsive Styles */
.map {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 12px;
}

.branch-card .map {
    margin-top: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer {
    background: #2c5aa0;
    color: white;
    padding: 3rem 0;
}

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

.footer-info h3 {
    margin-bottom: 1rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info a {
    color: white;
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #4ecdc4;
    transform: translateY(-3px);
}

/* Mobile CTA */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.mobile-call,
.mobile-whatsapp {
    flex: 1;
    padding: 1rem;
    text-align: center;
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-call {
    background: #2c5aa0;
}

.mobile-whatsapp {
    background: #25d366;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    margin: 0 20px;
}

.modal-content i {
    font-size: 4rem;
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.modal-content h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.modal-content button {
    background: #4ecdc4;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav {
        padding: 1rem;
    }
    
    .nav-contact .phone-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1002;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2rem 1rem 1rem;
        background: linear-gradient(135deg, #4ecdc4, #44a08d);
        color: white;
    }
    
    .nav-menu-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .nav-menu-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 50%;
        background: white;
        padding: 5px;
    }
    
    .nav-menu-header h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin: 0;
    }
    
    .nav-menu-content {
        display: flex;
        flex-direction: column;
        padding: 1rem 0;
        flex: 1;
    }
    
    .nav-link {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        border-radius: 0;
        border-bottom: 1px solid #f0f0f0;
        justify-content: flex-start;
    }
    
    .nav-link i {
        display: block;
        font-size: 1.2rem;
        width: 24px;
    }
    
    .nav-menu-footer {
        display: block;
        padding: 1rem;
        background: #f8f9fa;
        border-top: 1px solid #e9ecef;
    }
    
    .contact-info {
        margin-bottom: 1rem;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 0.5rem 0;
        color: #2c5aa0;
        text-decoration: none;
        font-size: 0.9rem;
    }
    
    .contact-item i {
        width: 16px;
        font-size: 0.9rem;
    }
    
    .social-links {
        display: flex;
        gap: 1rem;
        justify-content: center;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        background: #2c5aa0;
        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: #4ecdc4;
        transform: translateY(-2px);
    }
    
    .nav-contact {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        margin-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .dental-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .dental-placeholder i {
        font-size: 5rem;
    }
    
    .branches-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .logo {
        height: 40px;
    }
    
    .logo img {
        max-width: 50px;
    }
    
    .map iframe {
        height: 250px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Booking Wrapper - Enhanced Responsive Design */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.booking-info {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.booking-form-container {
    position: sticky;
    top: 100px;
    height: fit-content;
}

/* Responsive Breakpoints for Booking Wrapper */
@media (max-width: 1200px) {
    .booking-wrapper {
        gap: 3rem;
        max-width: 100%;
    }
    
    .booking-info {
        padding: 2rem;
    }
}

@media (max-width: 1024px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .booking-form-container {
        position: static;
        order: 2;
    }
    
    .booking-info {
        order: 1;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .booking-wrapper {
        gap: 2rem;
    }
    
    .booking-info {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .booking-form-container {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .booking-wrapper {
        gap: 1.5rem;
    }
    
    .booking-info {
        padding: 1rem;
        margin: 0 5px;
        border-radius: 12px;
    }
    
    .booking-form-container {
        margin: 0 5px;
    }
}

/* Booking Page Styles - Complete Responsive Design */
.booking-page {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Desktop and Large Screens */
@media (min-width: 1025px) {
    .booking-page {
        padding: 100px 0;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .booking-page {
        padding: 80px 0;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .booking-page {
        padding: 60px 0;
    }
    
    .booking-info h2 {
        font-size: 1.5rem;
    }
    
    .contact-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .contact-btn i {
        font-size: 1.3rem;
    }
    
    .booking-card {
        padding: 2rem;
        margin: 0 15px;
    }
    
    .booking-header h2 {
        font-size: 1.4rem;
    }
    
    .booking-header p {
        font-size: 0.9rem;
    }
    
    .feature-item {
        padding: 1.2rem;
        gap: 0.8rem;
    }
    
    .feature-item i {
        font-size: 1.8rem;
    }
    
    .contact-buttons {
        gap: 0.8rem;
    }
    
    .services-quick-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile Landscape */
@media (max-width: 640px) {
    .booking-page {
        padding: 50px 0;
    }
    
    .booking-card {
        padding: 1.8rem;
        margin: 0 12px;
    }
    
    .services-quick-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .booking-page {
        padding: 40px 0;
    }
    
    .booking-info h2 {
        font-size: 1.3rem;
    }
    
    .feature-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .feature-item i {
        margin-bottom: 0.5rem;
        font-size: 1.8rem;
    }
    
    .contact-btn {
        padding: 0.8rem;
        font-size: 0.85rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-btn i {
        font-size: 1.5rem;
    }
    
    .booking-card {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .booking-header h2 {
        font-size: 1.2rem;
        line-height: 1.4;
    }
    
    .booking-header p {
        font-size: 0.85rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 14px;
        font-size: 1rem;
    }
    
    .trust-note {
        font-size: 0.8rem;
        padding: 0.8rem;
    }
    
    .services-quick-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-quick-card {
        padding: 1rem;
    }
    
    .service-quick-card i {
        font-size: 2rem;
    }
    
    .service-quick-card h4 {
        font-size: 0.9rem;
    }
    
    .service-quick-card p {
        font-size: 0.8rem;
    }
    
    .nav-menu {
        width: 100vw;
        right: -100vw;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-card,
    .feature {
        padding: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .nav {
        padding: 0.5rem 1rem;
    }
    
    .logo {
        height: 35px;
    }
    
    .logo img {
        max-width: 50px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .booking-page {
        padding: 30px 0;
    }
    
    .booking-card {
        padding: 1rem;
        margin: 0 8px;
    }
    
    .booking-header h2 {
        font-size: 1.1rem;
    }
    
    .contact-btn {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
}

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Detailed Styles */
.about-detailed {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    color: #2c5aa0;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text h3 {
    color: #4ecdc4;
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-right: 4px solid #4ecdc4;
}

.feature-item i {
    font-size: 2rem;
    color: #4ecdc4;
    margin-top: 0.5rem;
}

.feature-item h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Services Detailed Styles */
.services-detailed {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-card.detailed {
    padding: 2.5rem;
    min-height: 350px;
}

.service-card.detailed ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-card.detailed li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.service-card.detailed li:before {
    content: '✓';
    color: #4ecdc4;
    font-weight: bold;
    margin-left: 10px;
}

.service-btn {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    margin-top: auto;
    transition: all 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

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

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

.tech-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.tech-item i {
    font-size: 3rem;
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.tech-item h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.tech-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Booking Features */
.booking-features {
    margin-bottom: 3rem;
}

.booking-features .feature-item {
    margin-bottom: 1.5rem;
}

.contact-options h3 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-btn.call {
    background: #2c5aa0;
    color: white;
}

.contact-btn.whatsapp {
    background: #25d366;
    color: white;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-btn i {
    font-size: 3rem;
}

.contact-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-btn span {
    font-size: 2rem;
    opacity: 0.8;
}

.contact-btn strong {
    font-size: 1.1rem;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form label {
    display: block;
    color: #2c5aa0;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
    outline: none;
    border-color: #4ecdc4;
    background: white;
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

/* Services Quick Links */
.services-quick {
    padding: 80px 0;
    background: white;
}

.services-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-quick-card {
    display: block;
    text-decoration: none;
    color: inherit;
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-quick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #4ecdc4;
    color: inherit;
}

.service-quick-card i {
    font-size: 3rem;
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.service-quick-card h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.service-quick-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Location Detailed Styles */
.location-detailed {
    padding: 80px 0;
    background: #f8f9fa;
}

.branch-card.enhanced {
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.branch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.branch-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #28a745;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #28a745;
    animation: pulse 2s infinite;
}

.status-indicator.active {
    background: #28a745;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.branch-info {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.info-item i {
    color: #4ecdc4;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.info-item strong {
    color: #2c5aa0;
    display: block;
    margin-bottom: 0.5rem;
}

.info-item p, .info-item a {
    color: #666;
    margin: 0;
}

.info-item a {
    color: #4ecdc4;
    text-decoration: none;
    font-weight: 600;
}

.branch-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.action-btn.call {
    background: #2c5aa0;
    color: white;
}

.action-btn.whatsapp {
    background: #25d366;
    color: white;
}

.action-btn.book {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Contact Info Section - Enhanced */
.contact-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4ecdc4, #44a08d, #2c5aa0);
}

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

.contact-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(78, 205, 196, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4ecdc4, #44a08d);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: #4ecdc4;
}

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

.contact-item i {
    font-size: 1.5rem;
    color: #4ecdc4;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    display: block;
}

.contact-item:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #44a08d;
}

.contact-item h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.contact-item p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-item a {
    color: #4ecdc4;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-item a:hover {
    color: #2c5aa0;
    transform: scale(1.1);
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2c5aa0, #4ecdc4);
    color: white !important;
    padding: 15px 30px;
    border-radius: 30px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(44, 90, 160, 0.3);
    text-decoration: none;
}

.call-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.5);
    background: linear-gradient(135deg, #4ecdc4, #2c5aa0);
}

.call-btn i {
    font-size: 1.2rem !important;
    margin: 0 !important;
    animation: ring 2s infinite;
}

@keyframes ring {
    0%, 20%, 50%, 80%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-10deg); }
    30% { transform: rotate(10deg); }
    60% { transform: rotate(-5deg); }
    70% { transform: rotate(5deg); }
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white !important;
    padding: 12px 24px;
    border-radius: 25px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
    background: linear-gradient(135deg, #44a08d, #4ecdc4);
}

.contact-link i {
    font-size: 1rem !important;
    margin: 0 !important;
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
}

.contact-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(78, 205, 196, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.contact-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(78, 205, 196, 0.6);
}

.contact-toggle i {
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.contact-toggle.active i {
    transform: rotate(45deg);
}

.contact-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s ease;
    min-width: 200px;
}

.contact-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.contact-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-menu-item:last-child {
    margin-bottom: 0;
}

.contact-menu-item:hover {
    background: #f8f9fa;
    transform: translateX(-5px);
}

.contact-menu-item i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

.contact-menu-item.phone i {
    background: #2c5aa0;
    color: white;
}

.contact-menu-item.whatsapp i {
    background: #25d366;
    color: white;
}

.contact-menu-item.booking i {
    background: #4ecdc4;
    color: white;
}

.contact-menu::before {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Emergency Contact */
.emergency-contact {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 2rem;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 107, 0.3); }
    50% { box-shadow: 0 0 30px rgba(255, 107, 107, 0.5); }
}

.emergency-contact h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.emergency-contact p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #ff6b6b;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
    }
    
    .about-text h3 {
        font-size: 1.1rem;
    }
    
    .about-features {
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1rem;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .feature-item i {
        font-size: 1.5rem;
        margin-top: 0.2rem;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 1.3rem;
    }
    
    .about-text h3 {
        font-size: 1rem;
        margin: 1.5rem 0 0.8rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .feature-item {
        padding: 0.8rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .feature-item i {
        margin-top: 0;
        margin-bottom: 0.5rem;
        font-size: 1.8rem;
    }
    
    .feature-item h4 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .feature-item p {
        font-size: 0.8rem;
    }
}