/* Global Styles */
:root {
    --primary-color: #0077b6;
    --secondary-color: #00b4d8;
    --accent-color: #ff9e00;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --danger-color: #dc3545;
    --success-color: #28a745;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 12px 30px;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary-color);
}

/* Header Styles */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero-bg.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: 70px;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    text-align: center;
}

.services-preview h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 20px 10px;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 20px 20px;
    color: #666;
}

.service-card .btn {
    margin: 0 20px 20px;
}

/* Why Choose Us */
.why-choose-us {
    background: var(--light-color);
    padding: 80px 0;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature p {
    color: #666;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    text-align: center;
    background: #fff;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto 30px;
    overflow: hidden;
    position: relative;
}

.testimonial {
    display: none;
    padding: 30px;
    background: var(--light-color);
    border-radius: 10px;
}

.testimonial.active {
    display: block;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
}

.customer {
    font-weight: 600;
    color: var(--primary-color);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: var(--primary-color);
}

/* Call to Action */
.cta {
    background: var(--primary-color);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: #fff;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-about h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-about p {
    margin-bottom: 20px;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #fff;
}

.footer-contact p {
    margin-bottom: 15px;
    color: #ccc;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
    color: #ccc;
    font-size: 0.9rem;
}

/* Page Banner */
.page-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: 70px;
}

.page-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 1.2rem;
}

/* Service Detail */
.service-detail {
    padding: 80px 0;
}

.service-detail.alt {
    background: var(--light-color);
}

.service-detail .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-content {
    flex: 1;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-content p {
    margin-bottom: 20px;
    color: #666;
}

.service-content h3 {
    margin: 30px 0 15px;
    color: var(--dark-color);
}

.service-content ul {
    margin-bottom: 30px;
}

.service-content ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #666;
}

.service-content ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.service-features .feature {
    text-align: center;
    padding: 20px 10px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.service-features i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-features p {
    margin: 0;
    font-size: 0.9rem;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
    text-align: center;
    background: #fff;
}

.service-areas h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-areas p {
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.area {
    background: var(--light-color);
    padding: 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.area:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

.area i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.area:hover i {
    color: #fff;
}

.area h3 {
    font-size: 1.1rem;
}

/* Our Story */
.our-story {
    padding: 80px 0;
    background: #fff;
}

.our-story .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.story-content {
    flex: 1;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.story-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.story-content p {
    margin-bottom: 20px;
    color: #666;
}

.milestones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.milestone {
    text-align: center;
    padding: 20px;
    background: var(--light-color);
    border-radius: 5px;
}

.milestone h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.milestone p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Our Team */
.our-team {
    padding: 80px 0;
    background: var(--light-color);
    text-align: center;
}

.our-team h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.our-team p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--light-color);
}

.team-member h3 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.team-member p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.member-bio p {
    color: #666;
    font-weight: normal;
}

/* Our Values */
.our-values {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.our-values h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.value {
    padding: 30px;
    background: var(--light-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.value:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.value p {
    color: #666;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #fff;
}
.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
}
.contact-section .container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
}

.contact-info h2, .contact-form h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    color: #666;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.info-item h3 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.checkbox {
    display: flex;
    align-items: center;
}

.checkbox input {
    width: auto;
    margin-right: 10px;
}

.checkbox label {
    margin-bottom: 0;
    font-weight: normal;
}

/* Map Section */
.map-section {
    padding: 0 0 80px;
    background: #fff;
}

.map-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Booking Form */
.booking-form {
    padding: 80px 0;
    background: #fff;
}

.booking-form .container {
    display: flex;
    gap: 50px;
}

.form-container {
    flex: 1;
}

.booking-info {
    flex: 1;
}

.form-container h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-container p {
    margin-bottom: 30px;
    color: #666;
}

.expectation {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 5px;
}

.expectation i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.expectation h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.expectation p {
    margin: 0;
    color: #666;
}

.emergency-notice {
    display: flex;
    align-items: flex-start;
    margin-top: 40px;
    padding: 20px;
    background: #fff8e1;
    border-left: 4px solid var(--accent-color);
    border-radius: 5px;
}

.emergency-notice i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 15px;
    margin-top: 5px;
}

.emergency-notice h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.emergency-notice p {
    margin: 0;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .service-detail .container, 
    .our-story .container,
    .contact-section .container,
    .booking-form .container {
        flex-direction: column;
    }
    
    .service-image, .story-image {
        margin-top: 40px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 0;
        padding: 10px 20px;
    }
    
    nav ul li a {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .page-banner {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 60vh;
        margin-top: 60px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .btn-large {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .page-banner {
        height: 200px;
    }
    
    .page-banner h2 {
        font-size: 2rem;
    }
}
/* RTL Styles */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .logo {
    margin-right: 0;
    margin-left: 10px;
}

[dir="rtl"] nav ul li {
    margin-left: 0;
    margin-right: 30px;
}

[dir="rtl"] .service-detail .container,
[dir="rtl"] .our-story .container {
    flex-direction: row-reverse;
}

[dir="rtl"] .form-row {
    flex-direction: row-reverse;
}

[dir="rtl"] .info-item i,
[dir="rtl"] .expectation i,
[dir="rtl"] .emergency-notice i {
    margin-right: 0;
    margin-left: 15px;
}

[dir="rtl"] .service-content ul li:before {
    left: auto;
    right: 0;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    margin-left: 20px;
}

.language-switcher button {
    background: none;
    border: none;
    color: var(--dark-color);
    cursor: pointer;
    padding: 5px 10px;
    font-weight: 600;
}

.language-switcher button.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

[dir="rtl"] .language-switcher {
    margin-left: 0;
    margin-right: 20px;
}
/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
  }
  
  .floating-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  }
  
  .call-button {
    background: #0077b6;
    animation: pulse 2s infinite;
  }
  
  .whatsapp-button {
    background: #25D366;
  }
  
  /* Tooltip text */
  .floating-button::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .floating-button:hover::after {
    opacity: 1;
  }
  
  /* Pulse animation for call button */
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 119, 182, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 119, 182, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 119, 182, 0); }
  }
  
  /* Mobile responsive */
  @media (max-width: 768px) {
    .floating-buttons {
      bottom: 20px;
      right: 20px;
    }
    
    .floating-button {
      width: 50px;
      height: 50px;
      font-size: 20px;
    }
  }
  .call-button { background: #your-color; }
.whatsapp-button { background: #your-color; }