/* 
  ============================================
  Modern Carpentry Services Website CSS
  Professional Styling with Warm Wood Tones
  ============================================
*/

/* CSS Variables */
:root {
    --primary-color: #8B6F47;
    --primary-dark: #6B4423;
    --primary-light: #C19A6B;
    --accent-color: #2C3E50;
    --accent-light: #34495E;
    --success-color: #27AE60;
    --warning-color: #E67E22;
    --danger-color: #E74C3C;
    --light-bg: #F5F5F5;
    --dark-text: #2C2C2C;
    --border-color: #E0E0E0;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Cairo', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */

.navbar {
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.95) 0%, rgba(107, 68, 35, 0.95) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* .phone-button .phone-link {
    background: var(--accent-color);
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.phone-button .phone-link:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
} */
 .phone-contact {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-contact a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff; /* غير اللون حسب خلفية الناف */
  font-weight: 600;
  font-size: 16px;
}

.phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.phone-icon i {
  font-size: 14px;
  color: #fff;
}

.phone-number {
  white-space: nowrap;
}

/* 📱 Responsive للموبايل */
@media (max-width: 768px) {
  .phone-icon {
    width: 35px;
    height: 35px;
  }
  .phone-icon i {
    font-size: 13px;
  }
  .phone-number {
    font-size: 14px;
  }
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hamburger Active State */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 20px 50px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B6F47 0%, #6B4423 50%, #2C3E50 100%);
    z-index: -2;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.05); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideInDown 0.8s ease;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.95;
    animation: slideInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease 0.4s both;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-light);
    color: var(--dark-text);
    box-shadow: 0 5px 15px rgba(193, 154, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(193, 154, 107, 0.6);
    background: #D4AF7E;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease 0.6s both;
}

.info-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.info-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.info-icon {
    font-size: 2rem;
}

.info-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.info-value {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECTION STYLING
   ============================================ */

section {
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    background: linear-gradient(180deg, #F5F5F5 0%, #fff 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #E8D7C3 0%, #D4C4B0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
    flex-grow: 0;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
}

/* Remove old icon styles */
.service-icon {
    display: none;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-us {
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.05) 0%, rgba(44, 62, 80, 0.05) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery {
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.btn-view {
    background: var(--primary-light);
    color: var(--dark-text);
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-view:hover {
    background: #fff;
    transform: scale(1.05);
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary-light);
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    background: linear-gradient(135deg, #F8F6F1 0%, #F5F1EB 100%);
    padding: 80px 20px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(139, 111, 71, 0.12);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    border: 2px solid transparent;
    transition: var(--transition);
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.05) 0%, rgba(193, 154, 107, 0.05) 100%);
    border-color: var(--primary-color);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
    text-align: right;
}

.faq-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-right: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    transition: all var(--transition);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-answer p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   BLOG SECTION
   ============================================ */

.blog {
    padding: 80px 20px;
    background: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(139, 111, 71, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #E8D7C3 0%, #D4C4B0 100%);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.blog-date {
    font-size: 0.85rem;
    color: #999;
    margin: 0 0 1rem 0;
}

.blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    align-self: flex-start;
}

.blog-read-more:hover {
    transform: translateX(5px);
    color: var(--primary-dark);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    background: linear-gradient(135deg, #F5F5F5 0%, #fff 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form,
.contact-info {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h3,
.contact-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(139, 111, 71, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.error-message {
    color: var(--danger-color);
    font-size: 0.8rem;
    display: block;
    margin-top: 0.3rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: #D4EDDA;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #F8D7DA;
    color: #721C24;
    display: block;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item .info-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.info-item p {
    margin: 0;
    color: #666;
}

/* ==================== Governorates Section ==================== */

.governorates {
    padding: 80px 20px;
    background: linear-gradient(135deg, #F8F6F1 0%, #F5F1EB 100%);
}

.governorates .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.governorates .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.governorates .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.governorates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.governorate-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all var(--transition);
    border-top: 4px solid var(--primary-color);
    animation: fadeInUp 0.6s ease-out backwards;
}

.governorate-card:nth-child(1) { animation-delay: 0.1s; }
.governorate-card:nth-child(2) { animation-delay: 0.2s; }
.governorate-card:nth-child(3) { animation-delay: 0.3s; }
.governorate-card:nth-child(4) { animation-delay: 0.4s; }
.governorate-card:nth-child(5) { animation-delay: 0.5s; }
.governorate-card:nth-child(6) { animation-delay: 0.6s; }

.governorate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(139, 111, 71, 0.15);
}

.gov-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.governorate-card h3 {
    font-size: 1.3rem;
    color: #2C3E50;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.governorate-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.governorate-card .btn-contact {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition);
    border: 2px solid var(--primary-color);
    font-size: 0.95rem;
}

.governorate-card .btn-contact:hover {
    background: transparent;
    color: var(--primary-color);
    transform: scale(1.05);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== Responsive Design for Service Cards ==================== */

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }

    .service-image {
        height: 150px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-image {
        height: 120px;
    }

    .service-content {
        padding: 1rem;
    }

    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .service-card p {
        font-size: 0.8rem;
    }
}

/* ==================== Responsive Design for Governorates ==================== */

@media (max-width: 768px) {
    .governorates {
        padding: 60px 20px;
    }

    .governorates .section-header h2 {
        font-size: 1.8rem;
    }

    .governorates .section-header p {
        font-size: 1rem;
    }

    .governorates-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .gov-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .governorate-card {
        padding: 1.5rem 1rem;
    }

    .governorate-card h3 {
        font-size: 1.1rem;
    }

    .governorate-card p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .governorates {
        padding: 40px 15px;
    }

    .governorates .section-header h2 {
        font-size: 1.5rem;
    }

    .governorates .section-header p {
        font-size: 0.9rem;
    }

    .governorates-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gov-icon {
        font-size: 2.2rem;
    }

    .governorate-card {
        padding: 1.2rem;
    }

    .governorate-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .governorate-card p {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .governorate-card .btn-contact {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: flex-start;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.social-link:hover {
    background: var(--primary-light);
    transform: translateY(-5px) scale(1.1);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 3rem 20px 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: #fff;
    margin-right: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ============================================
   FLOATING & SCROLL BUTTONS
   ============================================ */

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.whatsapp-button:hover {
    background: #20BA5B;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-button svg {
    width: 24px;
    height: 24px;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(139, 111, 71, 0.3);
    z-index: 998;
    transition: var(--transition);
}

.scroll-to-top.active {
    display: flex;
    animation: slideInUp 0.3s ease;
}

.scroll-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-5px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet Devices (768px and below) */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        right: 0;
        top: 60px;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        text-align: center;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-menu li {
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hamburger {
        display: flex;
    }

    .phone-button {
        width: 100%;
        order: 3;
        padding-top: 1rem;
    }

    .phone-button .phone-link {
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding: 80px 20px 40px;
        min-height: auto;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-info {
        flex-direction: column;
        align-items: stretch;
    }

    .info-box {
        justify-content: flex-start;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        text-align: center;
    }

    .footer-section a {
        margin-right: 0;
    }

    section {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-card,
    .benefit-card {
        padding: 1.5rem;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
}

/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .nav-menu {
        top: 50px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .services-grid,
    .benefits-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    section {
        padding: 40px 15px;
    }

    .whatsapp-button,
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        font-size: 1rem;
    }

    .whatsapp-button {
        left: 20px;
    }

    .scroll-to-top {
        right: 20px;
    }

    .hero-info {
        gap: 1rem;
    }

    .info-box {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .info-box div {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-form,
    .contact-info {
        padding: 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }
}

/* Large Screens (1400px and above) */
@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }

    .services-grid,
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Animation Classes for AOS (Animate On Scroll) */
[data-aos] {
    opacity: 0;
    animation: none;
}

[data-aos].aos-animate {
    opacity: 1;
}

@keyframes aos-fade-up {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

[data-aos="fade-up"] {
    animation: aos-fade-up 0.8s ease-out forwards;
}

/* Smooth Transitions & Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   RESPONSIVE FAQ & BLOG
   ============================================ */

@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 40px 15px;
    }

    .faq-question h3 {
        font-size: 0.85rem;
    }

    .faq-icon {
        margin-right: 0.5rem;
    }

    .blog {
        padding: 40px 15px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-image {
        height: 150px;
    }

    .blog-content {
        padding: 1rem;
    }

    .blog-content h3 {
        font-size: 1rem;
    }

    .blog-excerpt {
        font-size: 0.85rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-button,
    .scroll-to-top {
        display: none;
    }

    body {
        background: #fff;
    }

    section {
        page-break-inside: avoid;
    }
}
