/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a5c8c;
    --secondary-color: #f9a826;
    --accent-color: #34b7f1;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #777;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 15px 30px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    direction: rtl;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::after {
    right: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background-color: #084a70;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background-color: #e08900;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-call {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow);
}

.btn-call:hover {
    background-color: #084a70;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    box-shadow: var(--shadow);
}

.btn-whatsapp:hover {
    background-color: #1da851;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-location {
    background-color: var(--dark-color);
    color: white;
    box-shadow: var(--shadow);
}

.btn-location:hover {
    background-color: #0f0f1f;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 5px;
    background: linear-gradient(to left, var(--primary-color), var(--secondary-color));
    bottom: -15px;
    right: 50%;
    transform: translateX(50%);
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 25px auto 0;
    line-height: 1.8;
}

/* Running Top Strip */
.running-strip {
    background-color: var(--dark-color);
    color: white;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 1001;
}

.strip-content {
    display: flex;
    width: 200%;
    animation: ticker 20s linear infinite;
}

.strip-content span {
    padding: 0 30px;
    white-space: nowrap;
    font-size: 1rem;
}

.strip-content a {
    color: white;
    transition: var(--transition);
    margin-right: 5px;
}

.strip-content a:hover {
    color: var(--secondary-color);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Navigation Bar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.nav-brand span {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    transition: var(--transition);
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: linear-gradient(to left, var(--primary-color), var(--secondary-color));
    bottom: 0;
    right: 0;
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Button */
.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 1002;
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 3px;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1003;
    opacity: 0;
    transition: var(--transition);
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Menu Sidebar */
.menu-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background-color: white;
    box-shadow: var(--shadow-strong);
    z-index: 1004;
    transition: var(--transition-slow);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.menu-sidebar.active {
    right: 0;
}

.menu-header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--dark-color);
    cursor: pointer;
    transition: var(--transition);
}

.close-btn:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.menu-link {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    padding: 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-align: right;
    position: relative;
    overflow: hidden;
}

.menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 17, 17, 0.938), transparent);
    transition: var(--transition-slow);
}

.menu-link:hover::before {
    right: 100%;
}

.menu-link:hover,
.menu-link.active {
    color: var(--primary-color);
    background-color: rgb(246, 250, 0);
    transform: translateX(-10px);
}

/* Hero Slider Section */
.hero-slider {
    height: 85vh;
    position: relative;
    overflow: hidden;
    margin-top: -1px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.slide-content {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    text-align: center;
    color: rgb(19, 18, 18);
    z-index: 2;
    width: 90%;
    max-width: 800px;
    background-color: rgba(243, 243, 243, 0.986);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(248, 15, 15, 0.945);
    box-shadow: var(--shadow-strong);
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(235, 10, 10, 0.904);
    font-weight: 800;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(226, 12, 12, 0.863);
    line-height: 1.6;
}

/* Slider Controls */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 3;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev {
    right: 30px;
}

.slider-next {
    left: 30px;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

/* Hero Buttons Below Slider */
.hero-buttons-container {
    position: absolute;
    bottom: 80px;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    gap: 30px;
    z-index: 3;
    width: 100%;
    max-width: 600px;
    justify-content: center;
}

.hero-btn {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--shadow-strong);
    text-align: center;
    flex: 1;
    max-width: 250px;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-slow);
}

.hero-btn:hover::before {
    right: 100%;
}

.plumbing-btn {
    background: linear-gradient(135deg, var(--primary-color), #0d7ab8);
    color: white;
    border: 2px solid var(--primary-color);
}

.plumbing-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(10, 92, 140, 0.3);
    background: linear-gradient(135deg, #084a70, var(--primary-color));
}

.electric-btn {
    background: linear-gradient(135deg, var(--secondary-color), #ffb347);
    color: white;
    border: 2px solid var(--secondary-color);
}

.electric-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(249, 168, 38, 0.3);
    background: linear-gradient(135deg, #e08900, var(--secondary-color));
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #f0f5f9;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(10, 92, 140, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

/* Service Cards */
.service-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to left, var(--primary-color), var(--secondary-color));
    z-index: 2;
}

.left-side {
    transform: translateX(-100px) rotateY(-10deg);
}

.right-side {
    transform: translateX(100px) rotateY(10deg);
}

.service-card.visible {
    opacity: 1;
    transform: translateX(0) rotateY(0);
}

.service-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: var(--shadow-strong);
}

.service-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
    position: relative;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 700;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1rem;
}

.contact-now-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.contact-now-btn:hover::before {
    right: 100%;
}

.contact-now-btn:hover {
    background-color: #084a70;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0; /* RTL کے لیے right استعمال کریں */
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(249, 168, 38, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.contact-card {
    background-color: #f8f9fa;
    border-radius: 20px; /* Fixed value یا var(--border-radius-lg) */
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 5px solid transparent;
}

/* Individual border colors for cards */
.contact-card:nth-child(1) {
    border-top-color: #25D366; /* WhatsApp */
}

.contact-card:nth-child(2) {
    border-top-color: #0a5c8c; /* Call - primary color */
}

.contact-card:nth-child(3) {
    border-top-color: #1a1a2e; /* Location - dark color */
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%; /* RTL کے لیے right */
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.contact-card:hover::before {
    right: 100%; /* RTL کے لیے right */
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.whatsapp-icon {
    color: #25D366;
}

.call-icon {
    color: #0a5c8c; /* primary color */
}

.location-icon {
    color: #1a1a2e; /* dark color */
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #1a1a2e; /* dark color */
    font-weight: 700;
}

.contact-description {
    color: #777; /* text-light color */
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background-color: #f0f5f9;
    position: relative;
    overflow: hidden;
}

.reviews-container {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.review-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    min-width: 350px;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.reviewer-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 15px;
    border: 3px solid rgba(10, 92, 140, 0.1);
}

.reviewer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-details {
    flex: 1;
}

.reviewer-details h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.stars {
    color: var(--secondary-color);
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
    font-size: 1.05rem;
}

/* Review Controls */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    color: var(--dark-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-left {
    right: 0;
}

.scroll-right {
    left: 0;
}

.scroll-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

/* Footer */
.main-footer {
    background-color: var(--dark-color);
    color: white;
    padding: 70px 0 20px;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(249, 168, 38, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand a {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-brand span {
    font-size: 1.4rem;
    font-weight: 700;
}

.footer-description {
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
}

.footer-heading::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(to left, var(--primary-color), var(--secondary-color));
    bottom: 0;
    right: 0;
    border-radius: 2px;
}

.footer-menu li,
.services-list li {
    margin-bottom: 12px;
}

.footer-menu a,
.services-list a {
    color: #aaa;
    transition: var(--transition);
    display: inline-block;
    padding: 5px 0;
}

.footer-menu a:hover,
.services-list a:hover {
    color: white;
    padding-right: 10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #aaa;
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.contact-item a {
    color: #aaa;
    transition: var(--transition);
}

.contact-item a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.copyright {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.copyright span {
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-extra {
    color: #777;
    font-size: 0.9rem;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-strong);
    transition: var(--transition);
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-slow);
}

.floating-btn:hover::before {
    right: 100%;
}

.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: var(--primary-color);
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: shake 0.5s ease;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes shake {
    0%, 100% { transform: scale(1.1) rotate(0); }
    25% { transform: scale(1.1) rotate(-5deg); }
    75% { transform: scale(1.1) rotate(5deg); }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .services-container {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
    
    .slide-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-slider {
        height: 75vh;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .services-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .hero-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .hero-btn {
        max-width: 300px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .menu-btn {
        display: block;
    }
    
    .hero-slider {
        height: 70vh;
    }
    
    .slide-content {
        padding: 30px 20px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .slider-prev {
        right: 15px;
    }
    
    .slider-next {
        left: 15px;
    }
    
    .hero-buttons-container {
        bottom: 50px;
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-container {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .reviews-container {
        padding: 0 40px;
    }
    
    .review-card {
        min-width: 300px;
    }
    
    .floating-buttons {
        left: 20px;
        bottom: 20px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .running-strip {
        padding: 10px 0;
    }
    
    .strip-content span {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 10px 15px;
    }
    
    .logo {
        height: 50px;
    }
    
    .nav-brand span {
        font-size: 1.2rem;
    }
    
    .hero-slider {
        height: 65vh;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .reviews-container {
        padding: 0 20px;
    }
    
    .review-card {
        min-width: 280px;
        padding: 25px 20px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* Running Top Strip - بہترین حل */
.running-strip {
    background-color: var(--dark-color);
    color: white;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 1001;
}

.ltr-text {
    direction: ltr !important;
    unicode-bidi: embed !important;
    text-align: left !important;
}

.strip-content {
    display: flex;
    width: 200%;
    animation: ticker 20s linear infinite;
}

.strip-content span {
    padding: 0 30px;
    white-space: nowrap;
    font-size: 1rem;
}

.strip-content a {
    color: white;
    transition: var(--transition);
    margin-left: 5px;
}

.strip-content a:hover {
    color: var(--secondary-color);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* فون اور ای میل سپینز کے لیے مخصوص اسٹائل */
.phone-number, .email-address {
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}
