/* ... existing code ... */
:root {
    --primary-color: #3B5441;
    --secondary-color: #2D4235;  
    --accent-color: #C19F30;     
    --light-color: #f8f9fa;
    --dark-color: #1a252f;
    --shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: var(--dark-color);
    direction: rtl;
}

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

/* Header Styles */
.header {
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 0; 
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition), background-color 0.3s ease, padding 0.3s ease, transform 0.3s ease;
}

.header.transparent {
    background-color: rgba(45, 66, 53, 0.85);
    backdrop-filter: blur(5px);
}

.header.hidden {
    transform: translateY(-100%);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.logo-icon {
    display: inline-block;
    margin-left: 10px;
    animation: rotateIcon 6s infinite linear;
    position: relative;
    margin-top: -30px;
    margin-bottom: -30px;
}

.logo-icon img {
    width: 90px;  
    height: 90px; 
    border-radius: 50%;
    border: 3px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background-color: white;
}

@keyframes rotateIcon {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-10deg); }
    100% { transform: rotate(0deg); }
}

.whatsapp-button {
    display: flex;
    gap: 10px;
}

.whatsapp-button .whatsapp-link, .whatsapp-button .phone-link, .whatsapp-button .about-link, .whatsapp-button .services-link {
    display: flex;
    align-items: center;
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.whatsapp-button .whatsapp-link {
    background-color: #25d366;
}

.whatsapp-button .phone-link {
    background-color: var(--accent-color);
}

.whatsapp-button .about-link {
    background-color: #3498db;
}

.whatsapp-button .services-link {
    background-color: #3B5441; 
}

.whatsapp-button .whatsapp-link:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
}

.whatsapp-button .phone-link:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.whatsapp-button .about-link:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.whatsapp-button .services-link:hover {
    background-color: #2D4235; 
    transform: translateY(-2px);
}

.whatsapp-button .whatsapp-link i, .whatsapp-button .phone-link i, .whatsapp-button .about-link i, .whatsapp-button .services-link i {
    margin-left: 8px;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(45, 66, 53, 0.8), rgba(45, 66, 53, 0.9)), url('1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 180px 0 120px;
    margin-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.hero-button:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 50px;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

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

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Enhanced Services Carousel Styles */
.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05), rgba(41, 128, 185, 0.1));
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.services-carousel {
    display: flex;
    transition: transform 0.5s ease;
    padding: 20px 0;
    margin: 0 20px;
}

.service-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    margin-bottom: 50px;
    border-radius: 20px;
    border: 3px solid var(--secondary-color);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.15);
}

.service-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.prev-btn, .next-btn {
    background-color: rgba(231, 76, 60, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
}

.service-request-btn, .view-details-btn {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    white-space: nowrap;
}

.service-request-btn {
    background-color: var(--accent-color);
    color: white;
    margin-right: 10px;
}

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

.service-request-btn i, .view-details-btn i {
    margin-left: 8px;
}

.view-details-btn:hover {
    background-color: #2D4235;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Discount Banner Styles */
.discount-banner {
    background: linear-gradient(135deg, #ff6b6b, #e74c3c);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.discount-banner::before {
    content: "30% OFF";
    position: absolute;
    top: 10px;
    right: -30px;
    background: rgba(255, 255, 255, 0.9);
    color: #e74c3c;
    padding: 5px 40px;
    font-weight: bold;
    transform: rotate(45deg);
    font-size: 0.9rem;
}

.discount-content {
    position: relative;
    z-index: 1;
}

.discount-banner i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.discount-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.discount-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Page Styles for Service Detail Pages */
.service-detail-hero {
    background: linear-gradient(rgba(45, 66, 53, 0.8), rgba(45, 66, 53, 0.9)), url('../1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0 100px;
    margin-top: 60px;
}

.service-detail-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
}

.service-detail-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    text-align: justify;
    line-height: 1.8;
}

.service-detail-image {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.service-detail-image img {
    border-radius: 15px;
    max-width: 100%;
    height: auto;
    box-shadow: var(--shadow);
    border: 3px solid var(--secondary-color);
}

.service-detail-content h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.service-detail-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.service-detail-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.service-detail-content ul {
    margin-bottom: 20px;
    padding-right: 20px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-right: 25px;
}

.service-detail-content ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    color: var(--accent-color);
}

.discount-section {
    background: linear-gradient(135deg, #e74c3c, #ff6b6b);
    padding: 30px;
    border-radius: 15px;
    color: white;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.discount-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.discount-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.book-now-btn {
    display: inline-block;
    background-color: white;
    color: #e74c3c;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
}

.book-now-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.faq-section {
    margin-top: 40px;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-right: 3px solid var(--accent-color);
}

.faq-question {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 1rem;
    color: #555;
}

/* Enhanced Service Card Styles */
.service-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid var(--secondary-color);
    max-width: 100%;
    margin-bottom: 40px;
    height: auto;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    max-width: 100%;
    overflow: hidden;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
}

.service-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
    position: relative;
    max-width: 70%;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    line-height: 1.3;
}

.service-thumbnail {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 15px;
    border: 3px solid var(--secondary-color);
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-title-container {
    display: flex;
    align-items: center;
    max-width: 80%;
}

/* Enhanced Typography for Service Descriptions */
.service-description, .service-details, .service-benefits {
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-align: justify;
    padding: 0 5px;
}

.service-description {
    font-weight: 600;
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.9;
}

.service-details {
    text-align: justify;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.9;
}

.service-benefits {
    font-style: italic;
    color: #3498db;
    font-weight: 500;
    border-right: 3px solid var(--accent-color);
    padding-right: 15px;
    margin-top: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.highlight {
    color: var(--accent-color);
    font-weight: 700;
    position: relative;
}

.service-request-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.2);
    font-size: 1rem;
    white-space: nowrap;
}

.service-request-btn i {
    margin-left: 8px;
}

.service-request-btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 107, 107, 0.3);
}

/* Services Section - Blog Style Layout */
.services {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    margin-bottom: 40px;
}

.service-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

/* Why Us Section */
.why-us {
    background: linear-gradient(135deg, var(--secondary-color), #2D4235);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 30px 30px;
}

.why-us .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.feature {
    text-align: center;
    padding: 35px 25px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature i {
    font-size: 3.2rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    display: inline-block;
    background: rgba(255, 107, 107, 0.1);
    padding: 20px;
    border-radius: 50%;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
    position: relative;
    padding-bottom: 12px;
}

.feature h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.feature p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Cities Section */
.cities {
    padding: 80px 0;
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.cities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><rect width="1" height="1" fill="rgba(0,0,0,0.02)"/></svg>');
    background-size: 20px 20px;
}

.service-area-description {
    text-align: center;
    margin-bottom: 35px;
    font-size: 1.2rem;
    color: var(--secondary-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.city {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    padding: 35px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.city-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.city-description {
    font-size: 1rem;
    margin-top: 10px;
    font-weight: normal;
    opacity: 0.9;
}

.map-container {
    min-height: 300px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    border: 4px solid var(--secondary-color);
}

/* Enhanced Contact Section */
.contact {
    background: linear-gradient(135deg, var(--secondary-color), #2D4235);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 30px 30px;
}

.contact .section-title {
    color: white;
    font-family: 'Cairo', sans-serif;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}

.contact .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    border-radius: 5px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    background: rgba(45, 66, 53, 0.1);
    border: 3px solid var(--accent-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.contact-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: #ffcc5c;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 4px;
}

.contact-info p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-details {
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 25px;
    border-right: 4px solid var(--accent-color);
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.contact-item i {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-left: 20px;
    width: 30px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.contact-item span {
    font-size: 1.1rem;
    font-weight: 500;
    flex: 1;
}

.contact-button {
    margin-top: 35px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.whatsapp-contact, .phone-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
}

.phone-contact {
    background-color: var(--accent-color);
}

.whatsapp-contact:hover, .phone-contact:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.whatsapp-contact i, .phone-contact i {
    margin-left: 10px;
    font-size: 1.5rem;
}

.phone-contact:hover {
    background-color: #c0392b;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.floating-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    transition: var(--transition);
}

.floating-whatsapp i {
    font-size: 2rem;
}

.floating-whatsapp a:hover {
    background-color: #c0392b;
    transform: scale(1.1);
}

/* Floating Contact Buttons */
.floating-contact-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.floating-whatsapp, .floating-phone {
    position: relative;
    display: flex;
}

.floating-whatsapp a, .floating-phone a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;   
    height: 55px;  
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.floating-phone a {
    background-color: var(--accent-color);
    color: white;
}

.floating-whatsapp a {
    background-color: #25d366;
    color: white;
}

.floating-tooltip {
    position: absolute;
    right: 70px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    white-space: nowrap;
    pointer-events: none;
}

.floating-phone:hover .floating-tooltip, .floating-whatsapp:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer a.company-name {
    color: var(--accent-color);
    font-weight: 700;
    text-decoration: none;
    position: relative;
    padding: 2px 8px;
    border-radius: 5px;
    background: linear-gradient(45deg, #3B5441, #2D4235);
    box-shadow: 0 2px 5px rgba(193, 159, 48, 0.3);
    transition: all 0.3s ease;
}

.footer a.company-name:hover {
    background: linear-gradient(45deg, #C19F30, #A18625);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(193, 159, 48, 0.5);
}

.scroll-buttons {
    position: fixed;
    right: 30px;
    bottom: 100px;
    z-index: 1000;
}

.scroll-btn {
    width: 45px;
    height: 45px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.scroll-btn:hover {
    background-color: #e74c3c;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.scroll-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Media Queries for Responsive Adjustments */
@media (max-width: 768px) {
    .services-grid {
        gap: 20px;
    }
    
    .service-card {
        max-width: 100%;
    }
    
    .service-image {
        height: 350px;
    }
    
    .service-thumbnail {
        width: 100px;
        height: 100px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .contact-container {
        flex-direction: column;
        padding: 20px;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .contact-info p {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .contact-details {
        margin: 15px auto;
        width: 100%;
    }
    
    .contact-button {
        justify-content: center;
    }
    .map-container {
        width: 100%;
        height: 250px;
    }
    
    .cities-list {
        grid-template-columns: 1fr;
    }
    
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
    }
    
    .service-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .service-title-container {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }
    
    .service-thumbnail {
        margin-left: 0;
        margin-bottom: 10px;
        width: 100px;
        height: 100px;
    }
    
    .service-request-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .service-card h3 {
        max-width: 100%;
        font-size: 1.4rem;
        line-height: 1.4;
    }
    
    .service-title-container {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }
    
    .service-thumbnail {
        width: 80px;
        height: 80px;
    }
    
    .service-description {
        font-size: 1.05rem;
    }
    
    .service-details, .service-benefits {
        font-size: 0.95rem;
    }
    
    .service-title-container {
        max-width: 100%;
    }
    
    .service-thumbnail {
        width: 85px;
        height: 85px;
    }
    
    .service-description, .service-details, .service-benefits {
        text-align: right;
        font-size: 0.95rem;
    }
    
    .contact .section-title {
        font-size: 2rem;
    }
    
    .contact-container {
        padding: 25px;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .contact-info p {
        font-size: 1.1rem;
    }
    
    .contact-item i {
        font-size: 1.3rem;
    }
    
    .logo-icon img {
        width: 90px;
        height: 90px;
    }
    
    .contact-info p, .contact-item span {
        font-size: 0.9rem;
        text-align: right;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    .service-details, .service-benefits {
        font-size: 0.9rem;
    }
    
    .contact-details {
        padding: 15px;
    }
    
    .contact-item span {
        font-size: 0.9rem;
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .service-image {
        height: 250px;
    }
    
    .service-content {
        padding: 15px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .service-request-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .logo h1 {
        font-size: 1rem;
    }
    
    .whatsapp-button {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .service-request-btn, .view-details-btn {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .whatsapp-button .about-link, .whatsapp-button .services-link {
        padding: 6px 12px;
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero-button {
        padding: 10px 20px;
    }
    
    .service-card {
        flex: 0 0 calc(100% - 30px);
        min-width: auto;
        margin: 0 15px;
    }
    
    .service-image {
        height: 160px;
    }
    
    .feature {
        padding: 25px 15px;
    }
    
    .feature i {
        font-size: 2.5rem;
        padding: 15px;
    }
    
    .floating-whatsapp a {
        width: 50px;
        height: 50px;
    }
    
    .floating-whatsapp i {
        font-size: 1.7rem;
    }
    
    .prev-btn, .next-btn {
        width: 36px;
        height: 36px;
        top: calc(50% - 50px);
    }
    
    .carousel-container {
        padding: 30px 0;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-header {
        padding-bottom: 12px;
        margin-bottom: 15px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .service-details, .service-benefits {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .highlight {
        font-weight: 600;
    }
    
    .service-thumbnail {
        width: 70px;
        height: 70px;
    }
    
    .service-image {
        height: 220px;
    }
    
    .service-thumbnail {
        width: 85px;
        height: 85px;
    }
    
    .service-description, .service-details, .service-benefits {
        text-align: right;
        font-size: 0.95rem;
    }
    
    .contact .section-title {
        font-size: 1.8rem;
    }
    
    .contact-container {
        padding: 20px;
    }
    
    .contact-info h3 {
        font-size: 1.3rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .contact-details {
        padding: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-item {
        margin-bottom: 15px;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }
    
    .contact-item span {
        font-size: 0.8rem;
        flex: 1;
        min-width: 0;
        word-break: break-all;
        max-width: calc(100% - 35px);
    }
    
    .logo-icon img {
        width: 80px;  
        height: 80px; 
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .service-details, .service-benefits {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .contact-item {
        margin-bottom: 12px;
    }
    
    .contact-item span {
        font-size: 0.85rem;
        white-space: normal;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
        max-width: 100%;
    }
    
    .contact-info h3 {
        font-size: 1.2rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .feature p {
        font-size: 0.9rem;
    }
    
    .feature h3 {
        font-size: 1.2rem;
    }
    
    .logo {
        margin-top: 20px;
    }
    
    .service-description, .service-details, .service-benefits {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .feature {
        padding: 20px 15px;
    }
    
    .service-content {
        padding: 15px;
    }
    
    .logo-icon img {
        width: 80px;
        height: 80px;
    }
}

/* Video Section Styles */
.video-container {
    position: relative;
    margin-top: 80px;
    width: 100%;
    background-color: var(--secondary-color);
    padding: 20px 0;
    text-align: center;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.video-container video {
    max-width: 900px;
    width: 90%;
    border: 5px solid var(--accent-color);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.custom-video-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.video-container:hover .custom-video-controls {
    opacity: 1;
}

.video-control-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(193, 159, 48, 0.7);
    transition: all 0.3s ease;
}

.video-control-btn:hover {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

.video-progress-container {
    height: 8px;
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.video-progress-bar {
    height: 100%;
    width: 0;
    background-color: var(--accent-color);
    border-radius: 4px;
    transition: width 0.1s linear;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(59, 84, 65, 0.7);
    color: white;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 5;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.phone-overlay {
    color: var(--accent-color);
    font-weight: bold;
    margin-top: 10px;
    font-size: 1.4rem !important;
}

@media (max-width: 768px) {
    .custom-video-controls {
        width: 85%;
        padding: 8px 12px;
        bottom: 25px;
    }
    
    .video-control-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .video-progress-container {
        height: 6px;
    }
}

/* Related Services Section */
.related-services {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
}

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

.related-service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 2px solid var(--secondary-color);
}

.related-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.related-service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-service-card:hover img {
    transform: scale(1.05);
}

.related-service-card h4 {
    font-size: 1.2rem;
    margin: 15px 0;
    color: var(--primary-color);
    padding: 0 15px;
}

.related-service-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 8px 20px;
    margin: 10px 0 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.related-service-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .related-service-card img {
        height: 180px;
    }
    
    .related-service-card h4 {
        font-size: 1.1rem;
    }
}

/* About Us Page Styles */
.about-hero {
    background: linear-gradient(rgba(59, 84, 65, 0.8), rgba(59, 84, 65, 0.9)), url('1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0 100px;
    margin-top: 60px;
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
}

.about-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    text-align: justify;
    line-height: 1.8;
}

.about-content h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.about-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.about-image img {
    border-radius: 15px;
    max-width: 100%;
    height: auto;
    box-shadow: var(--shadow);
    border: 3px solid var(--secondary-color);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-box {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 1px solid var(--secondary-color);
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .about-content {
        padding: 25px;
    }
    
    .stat-box {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* About Us Page Service Buttons */
.service-list {
    margin: 30px 0;
}

.service-list-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-list-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.service-details-btn {
    background-color: var(--accent-color);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.service-details-btn i {
    margin-left: 8px;
}

.service-details-btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

@media (max-width: 480px) {
    .service-list-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .service-details-btn {
        width: 100%;
        justify-content: center;
    }
}