* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #B8832E 0%, #D4A853 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.company-logo {
    max-height: 120px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.company-info {
    text-align: right;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Main Content */
.main {
    padding: 3rem 0;
}

.section {
    background: white;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Section Title with Download Buttons */
.section-title {
    background: linear-gradient(135deg, #B8832E 0%, #D4A853 100%);
    color: white;
    padding: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.section-title i {
    font-size: 1.3rem;
}

.download-buttons {
    display: flex;
    gap: 0.5rem;
}

.download-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cairo', sans-serif;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Last Update Info */
.last-update {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 0.75rem 1.5rem;
    margin: 0;
    color: #1565c0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.last-update i {
    color: #2196f3;
}

/* Phone Links */
.phone-link {
    color: #B8832E;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.phone-link:hover {
    color: #8B6914;
    text-decoration: underline;
}

.phone-link:before {
    content: "📞";
    margin-left: 0.5rem;
    font-size: 0.8rem;
}

/* Features Grid - Updated for 4 items */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #B8832E;
    box-shadow: 0 8px 20px rgba(184, 131, 46, 0.2);
}

.feature-item i {
    font-size: 3rem;
    color: #B8832E;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #495057;
}

.feature-item p {
    color: #6c757d;
    font-size: 1rem;
}

/* Tables */
.table-container {
    overflow-x: auto;
    padding: 1.5rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    min-width: 800px;
}

th, td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9rem;
}

th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #495057;
    border-bottom: 2px solid #B8832E;
    white-space: nowrap;
}

td {
    background-color: white;
}

.empty-table {
    color: #6c757d;
    font-style: italic;
    padding: 2rem;
    background-color: #f8f9fa;
}

/* Status Badges */
.status-active {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-maintenance {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.note {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 1.5rem;
    color: #856404;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.note i {
    color: #B8832E;
}

/* Terms and Conditions */
.terms-content {
    padding: 2rem;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.terms-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-right: 4px solid #B8832E;
    transition: all 0.3s ease;
}

.terms-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 4px 12px rgba(184, 131, 46, 0.2);
}

.terms-item i {
    font-size: 2rem;
    color: #B8832E;
    margin-bottom: 1rem;
}

.terms-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #495057;
}

.terms-item ul {
    list-style: none;
    padding: 0;
}

.terms-item li {
    padding: 0.5rem 0;
    color: #6c757d;
    position: relative;
    padding-right: 1.5rem;
}

.terms-item li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: #B8832E;
    font-weight: bold;
}

/* Booking Terms */
.booking-terms {
    padding: 2rem;
}

.booking-terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.booking-term {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.booking-term:hover {
    border-color: #B8832E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(184, 131, 46, 0.15);
}

.booking-term i {
    font-size: 2.5rem;
    color: #B8832E;
    margin-bottom: 1rem;
}

.booking-term h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #495057;
}

.booking-term ul {
    list-style: none;
    padding: 0;
}

.booking-term li {
    padding: 0.5rem 0;
    color: #6c757d;
    position: relative;
    padding-right: 1.5rem;
    border-bottom: 1px solid #f8f9fa;
}

.booking-term li:before {
    content: "•";
    position: absolute;
    right: 0;
    color: #B8832E;
    font-weight: bold;
    font-size: 1.2rem;
}

.booking-term li:last-child {
    border-bottom: none;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-right: 4px solid #B8832E;
}

.contact-item:hover {
    background-color: #e9ecef;
    transform: translateX(-5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #B8832E;
    min-width: 30px;
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #495057;
}

.contact-item p {
    color: #6c757d;
    font-weight: 500;
}

/* Social Media */
.social-media {
    padding: 0 1.5rem 1.5rem;
    text-align: center;
}

.social-media h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #495057;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
}

.social-link.instagram {
    background: linear-gradient(135deg, #e4405f 0%, #f77737 100%);
}

.social-link.twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #00a0dc 100%);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-link i {
    font-size: 1.2rem;
}

.map-link {
    color: #B8832E;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: #8B6914;
    text-decoration: underline;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer p {
    margin-bottom: 0.5rem;
}

/* Button Groups */
.button-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.whatsapp-btn-small,
.map-link-small {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.whatsapp-btn-small {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.map-link-small {
    background: linear-gradient(135deg, #B8832E 0%, #D4A853 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(184, 131, 46, 0.3);
}

.map-link-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(184, 131, 46, 0.4);
    background: linear-gradient(135deg, #D4A853 0%, #B8832E 100%);
}

.whatsapp-btn-small i,
.map-link-small i {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .company-info {
        text-align: center;
    }
    
    .company-logo {
        max-height: 80px;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.3rem;
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .download-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-terms-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 200px;
        justify-content: center;
    }
    
    th, td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .table-container {
        padding: 1rem;
    }
    
    table {
        min-width: 600px;
    }
    
    .button-group {
        flex-direction: column;
        gap: 5px;
    }
    
    .whatsapp-btn-small,
    .map-link-small {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1.5rem 0;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .main {
        padding: 2rem 0;
    }
    
    .section {
        margin-bottom: 1.5rem;
    }
    
    .features-grid {
        padding: 1rem;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
    }
    
    .terms-content,
    .booking-terms {
        padding: 1rem;
    }
    
    .terms-item,
    .booking-term {
        padding: 1rem;
    }
    
    th, td {
        padding: 0.5rem 0.25rem;
        font-size: 0.75rem;
    }
    
    .whatsapp-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .download-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    table {
        min-width: 500px;
    }
}



/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}

.section:nth-child(1) { animation-delay: 0.1s; }
.section:nth-child(2) { animation-delay: 0.2s; }
.section:nth-child(3) { animation-delay: 0.3s; }
.section:nth-child(4) { animation-delay: 0.4s; }
.section:nth-child(5) { animation-delay: 0.5s; }
.section:nth-child(6) { animation-delay: 0.6s; }

