/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Exact colors from source - matching original website */
    --primary-green: #3D5D41;
    --dark-green: #1a3009;
    --light-green: #4a7c2a;
    --chat-green: #86CD91; /* Light green for chat buttons */
    --bg-light: #f5f5f5;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --red: #c41e3a;
    --border-radius: 8px;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    direction: rtl;
    text-align: right;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.logo-link {
    display: block;
}

.logo-img {
    height: 160px; /* ultra-premium presence */
    width: auto;
    object-fit: contain;
    max-width: 360px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

@media (max-width: 1024px) {
    .logo-img { height: 140px; max-width: 320px; }
}

@media (max-width: 768px) {
    .logo-img { height: 110px; max-width: 280px; }
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 220px 0 120px;
    overflow: hidden;
    border-bottom-right-radius: 120px;
    margin-bottom: 40px;
    background-color: #d9f1d9;
    background-image: linear-gradient(140deg, rgba(186, 220, 148, 0.85) 0%, rgba(213, 240, 195, 0.92) 40%, rgba(217, 241, 217, 0.95) 100%);
    isolation: isolate;
    box-shadow: 0 40px 80px rgba(10, 24, 10, 0.45);
}

.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    z-index: 0;
    inset: 0;
    border-bottom-right-radius: inherit;
    pointer-events: none;
}

.hero-section::before {
    background: radial-gradient(circle at 20% 25%, rgba(208, 255, 171, 0.22) 0%, transparent 45%),
                radial-gradient(circle at 80% 75%, rgba(129, 210, 142, 0.18) 0%, transparent 50%);
    mix-blend-mode: screen;
    opacity: 0.7;
}

.hero-section::after {
    background: linear-gradient(135deg, rgba(12, 26, 14, 0.65) 0%, rgba(12, 26, 14, 0) 50%, rgba(3, 8, 4, 0.55) 100%);
    opacity: 0.9;
}

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-bottom-right-radius: inherit;
    overflow: hidden;
    z-index: 0;
}

.hero-slider::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-bottom-right-radius: inherit;
    border: 1px solid rgba(193, 255, 114, 0.18);
    box-shadow: 0 0 45px rgba(193, 255, 114, 0.12);
    pointer-events: none;
    z-index: 2;
}

.hero-slider .swiper-wrapper {
    height: 100%;
    perspective: 1600px;
}

.hero-slider .swiper-slide {
    will-change: transform, opacity;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(193, 255, 114, 0.12) 0%, transparent 45%);
    pointer-events: none;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.05) saturate(1.1);
    transform: scale(1.08);
    transition: transform 6s ease, filter 1.2s ease;
}

.hero-slider .swiper-slide-active .hero-slide-image {
    transform: scale(1.02);
    filter: brightness(0.92) contrast(1.08) saturate(1.15);
}

.hero-slider .swiper-slide-next .hero-slide-image,
.hero-slider .swiper-slide-prev .hero-slide-image {
    transform: scale(1.05);
    filter: brightness(0.88) contrast(1.02);
}

.hero-slider-pagination {
    position: absolute;
    bottom: 36px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    pointer-events: auto;
}

.hero-slider-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(241, 255, 208, 0.45);
    opacity: 1;
    border: 1px solid rgba(241, 255, 208, 0.65);
    transition: all 0.35s ease;
}

.hero-slider-pagination .swiper-pagination-bullet-active {
    width: 34px;
    background: rgba(193, 255, 114, 0.95);
    border-color: rgba(193, 255, 114, 0.95);
    box-shadow: 0 0 16px rgba(193, 255, 114, 0.35);
}

.hero-slider-navigation {
    position: absolute;
    inset: 0;
    flex-direction: row-reverse;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    gap: 12px;
    pointer-events: none;
    z-index: 3;
}

.hero-slider-button {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(15, 35, 15, 0.7) 0%, rgba(33, 61, 34, 0.55) 100%);
    border: 1px solid rgba(193, 255, 114, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}

.hero-slider-button span {
    width: 16px;
    height: 16px;
    border-right: 2px solid rgba(241, 255, 208, 0.9);
    border-top: 2px solid rgba(241, 255, 208, 0.9);
    transform: rotate(-135deg);
    transition: all 0.3s ease;
}

.hero-slider-button-next span {
    transform: rotate(45deg);
}

.hero-slider-button:hover {
    background: linear-gradient(135deg, rgba(193, 255, 114, 0.3) 0%, rgba(144, 226, 154, 0.18) 100%);
    border-color: rgba(193, 255, 114, 0.6);
    box-shadow: 0 10px 32px rgba(193, 255, 114, 0.28);
}

.hero-slider-button:hover span {
    border-color: rgba(193, 255, 114, 0.95);
    filter: drop-shadow(0 0 10px rgba(193, 255, 114, 0.45));
}

.hero-slider-button:focus-visible {
    outline: 3px solid rgba(193, 255, 114, 0.8);
    outline-offset: 3px;
}

.hero-slider-button.swiper-button-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(61, 93, 65, 0.35) 0%, 
        rgba(61, 93, 65, 0.25) 50%, 
        rgba(26, 48, 9, 0.4) 100%
    );
    z-index: 1;
    border-bottom-right-radius: 120px;
    backdrop-filter: blur(0.5px);
    -webkit-backdrop-filter: blur(0.5px);
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at 30% 50%, 
        rgba(61, 93, 65, 0.15) 0%, 
        transparent 70%
    );
    border-bottom-right-radius: 120px;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(
        to top, 
        rgba(0, 0, 0, 0.3) 0%, 
        transparent 100%
    );
    border-bottom-right-radius: 120px;
}

.hero-overlay {
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 780px;
    padding: 44px 48px;
    background: linear-gradient(135deg, rgba(18, 36, 18, 0.78) 0%, rgba(28, 52, 26, 0.68) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 36px;
    border: 1px solid rgba(193, 255, 114, 0.24);
    box-shadow:
        0 32px 60px rgba(0, 0, 0, 0.32),
        inset 0 0 18px rgba(193, 255, 114, 0.06);
    animation: fadeInUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateZ(0);
    /* Move content slightly up and to the right */
    margin-top: 10px;
    margin-right: 18px;
    overflow: hidden;
}

.hero-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(140deg, rgba(193, 255, 114, 0.18) 0%, rgba(193, 255, 114, 0) 45%, rgba(137, 214, 146, 0.24) 100%);
    pointer-events: none;
    opacity: 0.9;
}

.hero-content::after {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 35px rgba(193, 255, 114, 0.08);
    pointer-events: none;
    opacity: 0.6;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #f1ffd0;
    letter-spacing: 0.8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    animation: fadeInUp 0.8s ease-out 0.15s both;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(193, 255, 114, 0.18) 0%, rgba(135, 214, 139, 0.08) 100%);
    border: 1px solid rgba(193, 255, 114, 0.35);
    box-shadow: 0 12px 26px rgba(193, 255, 114, 0.22);
}

.hero-subtitle::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c1ff72 0%, #92ffca 100%);
    box-shadow: 0 0 14px rgba(193, 255, 114, 0.65);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.25;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #f2ffcb 35%, #b7ff9f 70%, #dcffd9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow: 
        0 30px 55px rgba(0, 0, 0, 0.35),
        0 12px 22px rgba(0, 0, 0, 0.28);
    letter-spacing: -0.3px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    /* allow wrapping on smaller screens */
}

.hero-title::after {
    display: none;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.8;
    color: rgba(246, 255, 239, 0.92);
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.45), 0 3px 12px rgba(0, 0, 0, 0.42);
    animation: fadeInUp 0.8s ease-out 0.5s both;
    font-weight: 400;
    max-width: 640px;
}

.hero-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #c1ff72; /* light shining green text and icon */
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    padding: 12px 24px;
    background: var(--primary-green); /* green pill */
    border-radius: 999px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 18px rgba(193, 255, 114, 0.25); /* gentle glow */
    animation: fadeInUp 0.8s ease-out 0.65s both;
}

.hero-phone-link:hover {
    background: #477654; /* slightly lighter green */
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(193, 255, 114, 0.35);
}

.hero-phone-link svg {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 2px 4px rgba(193, 255, 114, 0.35));
}

.btn-primary {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    box-shadow: 
        0 6px 20px rgba(61, 93, 65, 0.35),
        0 3px 10px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.8s both;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: rgba(61, 93, 65, 0.95);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(61, 93, 65, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.25);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 
        0 4px 12px rgba(61, 93, 65, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-content-wrapper {
    margin-bottom: 60px;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

/* New primary image (left) */
.about-primary-image {
    flex: 0 0 340px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: none; /* removed shadow per request */
    border: none; /* removed border per request */
    order: 2;            /* place at end of RTL row -> left side */
    margin-left: 0;
    align-self: flex-start;
}

.about-main-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.about-decorative-image {
    position: absolute;
    top: -20px;
    right: -50px;
    z-index: 0;
    opacity: 0.8;
}

.about-leaf-image {
    width: 250px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(45, 80, 22, 0.2));
}

.about-text-content {
    position: relative;
    z-index: 1;
    flex: 1;
    padding-right: 0; /* removed extra padding since decorative image is gone */
    text-align: right; /* keep text left-aligned in RTL (right side) */
    order: 1;            /* text first so it stays on right */
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 20px;
    text-align: right; /* uniform alignment for all section titles */
}

.section-text {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.divider-line {
    width: 80px;
    height: 3px;
    background-color: var(--text-light);
    margin-top: 30px;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-green);
    transition: all 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 15px;
    text-align: center;
}

.card-text {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    text-align: center;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

/* Two-column layout for Services */
.services-two-col {
    display: grid;
    grid-template-columns: 1fr 0.9fr; /* image a bit narrower */
    gap: 60px; /* more space between columns */
    align-items: start;
}

.services-left { order: 2; padding-right: 30px; } /* more inner space on content side */
.services-right { order: 1; }

.services-heading {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-green);
    text-align: right;
    margin-bottom: 40px;
}

/* Uniform styling for all section titles */
.section-title-center {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 20px;
    text-align: center; /* centered for Why Choose Us section */
}

.services-image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: visible; /* allow badge to hang outside */
    box-shadow:
        0 18px 30px rgba(134, 205, 145, 0.28), /* light green bottom glow */
        0 10px 24px rgba(0, 0, 0, 0.08); /* subtle depth */
    margin-bottom: 50px;
    max-width: 760px; /* slightly reduced image width */
    margin-left: auto;
    margin-right: auto;
}

.services-main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: transparent;
    border-radius: var(--border-radius); /* keep rounded corners when overflow visible */
}

.services-title-badge {
    position: absolute;
    bottom: -18px; /* half overlaps image and half outside */
    right: 20px;
    background-color: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(134, 205, 145, 0.25), 0 4px 12px rgba(0, 0, 0, 0.12);
}

.services-title-badge p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.services-columns-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.services-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.services-column-right {
    /* Right column - 4 services */
}

.services-column-left {
    /* Left column - 3 services */
}

.service-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-green);
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.service-description {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.1) 0%, rgba(45, 80, 22, 0.05) 100%);
}

.why-choose-header {
    position: relative;
    margin-bottom: 50px;
}

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

.why-choose-decorative-image {
    position: absolute;
    top: -70px; /* lift up so it sits half in previous section */
    right: -30px; /* move to top-right corner */
    z-index: 0;
    opacity: 0.7;
    pointer-events: none;
}

.why-choose-leaf-image {
    width: 200px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(45, 80, 22, 0.2));
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.divider-line-center {
    width: 80px;
    height: 3px;
    background-color: var(--primary-green);
    margin: 0 auto 50px;
}

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

.feature-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.feature-text {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 0;
    background-color: #dfe3e4; /* Background color matching image */
    position: relative;
    overflow: hidden; /* Contain the image properly */
    height: auto;
    min-height: 500px; /* Minimum height, adjust based on your image */
}

.cta-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%; /* Match section height */
    min-height: 500px;
}

.cta-text-wrapper {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.cta-decorative-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background-color: #dfe3e4; /* Match section background */
}

.cta-leaf-image {
    width: auto;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    display: block;
    mix-blend-mode: normal; /* Ensure proper blending */
}

.cta-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: center; /* CTA titles are centered */
}

.divider-line-center {
    width: 80px;
    height: 3px;
    background-color: var(--primary-green);
    margin: 20px auto 30px;
}

.cta-text {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.contact-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.contact-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.15;
    filter: brightness(0.9) contrast(1.1);
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.95) 100%);
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center; /* Vertically center columns */
}

.contact-title,
.contact-form-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 30px;
    text-align: right; /* uniform alignment */
}

.contact-info-item {
    margin-bottom: 30px;
}

.info-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.info-value {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-form-column {
    background-color: var(--primary-green);
    padding: 50px;
    border-radius: var(--border-radius);
}

/* Right-align contact info content */
.contact-info-column {
    text-align: right;
    justify-self: end;
}

.contact-form-title {
    color: var(--white);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    background-color: var(--white);
    color: var(--text-dark);
    font-size: 16px;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--white);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.btn-submit {
    background-color: transparent;
    color: var(--white);
    padding: 15px 40px;
    border: 2px solid var(--red); /* thin red border */
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: rgba(160, 23, 47, 0.12); /* subtle red tint */
    border-color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Form message styles */
.form-message {
    padding: 12px 20px;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 500;
    text-align: right;
    animation: slideDown 0.3s ease-out;
}

.form-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-map-column iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--border-radius);
}

/* Map fallback image while iframe loads */
.map-embed {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
}
.map-embed .map-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: opacity 0.4s ease;
}
.map-embed.is-loaded .map-fallback {
    opacity: 0;
    pointer-events: none;
}

/* Footer */
.footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    max-width: 320px;
    /* Convert green logo to white for dark footer */
    filter: brightness(0) invert(1);
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 16px;
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-credit-ar {
    color: var(--white);
    font-size: 7px;
    font-weight: 700;
    padding: 0 0 4px;
    margin: 0;
    opacity: 0.85;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--primary-green);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Floating Chat Button - Default: One Circle */
.floating-chat-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-chat-container.minimized .floating-button,
.floating-chat-container.minimized .floating-hide-wrapper {
    opacity: 0;
    transform: translateY(10px) scale(0.8);
    pointer-events: none;
}

.floating-chat-container.minimized .floating-chat-main {
    transform: scale(1);
}

.floating-chat-container.minimized:hover .floating-button,
.floating-chat-container.minimized:hover .floating-hide-wrapper {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.floating-chat-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.floating-chat-main {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-green) 0%, rgba(61, 93, 65, 0.9) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 24px rgba(61, 93, 65, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(255, 255, 255, 0.1) inset;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    order: 4; /* Always at bottom */
}

.floating-chat-main:hover {
    transform: scale(1.1);
    box-shadow: 
        0 12px 32px rgba(61, 93, 65, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.15) inset,
        0 0 30px rgba(61, 93, 65, 0.3);
}

.floating-chat-main svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Hidden by default - shown on hover */
.floating-button {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.floating-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.floating-button:hover::before {
    left: 100%;
}

/* Call button - top (primary green gradient) */
.floating-call {
    background: linear-gradient(135deg, var(--primary-green) 0%, rgba(61, 93, 65, 0.9) 100%);
    order: 1;
    box-shadow: 
        0 6px 20px rgba(61, 93, 65, 0.4),
        0 3px 10px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(255, 255, 255, 0.1) inset;
}

/* WhatsApp button - middle (primary green gradient) */
.floating-whatsapp {
    background: linear-gradient(135deg, var(--primary-green) 0%, rgba(61, 93, 65, 0.9) 100%);
    order: 2;
    box-shadow: 
        0 6px 20px rgba(61, 93, 65, 0.4),
        0 3px 10px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(255, 255, 255, 0.1) inset;
}

/* Hide button - bottom (primary green gradient) */
.floating-hide {
    background: linear-gradient(135deg, var(--primary-green) 0%, rgba(61, 93, 65, 0.9) 100%);
    order: 3;
    box-shadow: 
        0 6px 20px rgba(61, 93, 65, 0.4),
        0 3px 10px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(255, 255, 255, 0.1) inset;
}

.floating-button svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 1;
}

/* Hide button wrapper with label */
.floating-hide-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px) scale(0.8);
    transition: all 0.3s ease;
    pointer-events: none;
    order: 3;
}

.hide-label-btn {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 8px 16px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none; /* Hidden by default */
}

.hide-label-btn:hover {
    background-color: #f5f5f5;
    border-color: #d0d0d0;
}

/* On hover - show all three circles */
.floating-chat-container:hover .floating-button,
.floating-chat-container:hover .floating-hide-wrapper {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.floating-chat-container:hover .floating-hide-wrapper .floating-hide,
.floating-chat-container:hover .floating-hide-wrapper .hide-label-btn {
    pointer-events: all !important;
}

.floating-chat-container:hover .floating-chat-main {
    transform: scale(1.05);
}

/* Button hover effects */
.floating-button:hover {
    transform: scale(1.12) !important;
    box-shadow: 
        0 8px 24px rgba(61, 93, 65, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.15) inset,
        0 0 30px rgba(61, 93, 65, 0.3) !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-two-col { grid-template-columns: 1fr; }
    .services-right { order: 1; }
    .services-left { order: 2; }
    .services-columns-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    
    .services-title-badge {
        bottom: 15px;
        right: 15px;
        padding: 10px 16px;
    }
    
    .services-title-badge p {
        font-size: 14px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-cards-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 44px;
    }

    .hero-subtitle {
        font-size: 22px;
        padding: 10px 20px;
        gap: 12px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-content {
        padding: 32px 34px;
        border-radius: 28px;
    }

    .hero-section {
        padding: 200px 0 110px;
    }

    .hero-slider-navigation {
        padding: 0 24px;
        gap: 10px;
    }

    .hero-slider-button {
        width: 48px;
        height: 48px;
    }

    .hero-slider-button span {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        padding: 20px;
        box-shadow: var(--shadow);
        transition: right 0.3s;
        gap: 15px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-section {
        min-height: 80vh;
        padding: 100px 0 60px;
        border-bottom-right-radius: 80px;
        background-attachment: scroll; /* Fixed doesn't work well on mobile */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .hero-slider,
    .hero-overlay {
        border-bottom-right-radius: 80px;
    }
    
    .hero-content {
        padding: 30px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        padding: 8px 18px;
        gap: 10px;
    }
    
    .hero-description {
        font-size: 17px;
        margin-bottom: 24px;
    }

    .hero-content {
        padding: 28px;
        border-radius: 24px;
        margin-right: 0;
    }

    .hero-section {
        padding: 170px 0 90px;
    }

    .hero-slider-pagination {
        bottom: 24px;
        right: 24px;
        gap: 10px;
    }

    .hero-slider-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .hero-slider-pagination .swiper-pagination-bullet-active {
        width: 26px;
    }

    .hero-slider-navigation {
        padding: 0 20px;
    }

    .hero-slider-button {
        width: 48px;
        height: 48px;
    }

    .hero-slider-button span {
        width: 14px;
        height: 14px;
    }
    
    .phone-link {
        font-size: 18px;
        padding: 10px 20px;
    }
    
    .section-title,
    .section-title-center,
    .services-heading,
    .cta-title,
    .contact-title,
    .contact-form-title {
        font-size: 28px;
    }
    
    .about-section,
    .services-section,
    .why-choose-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form-column {
        padding: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* Floating chat container stays in same position on mobile */

    /* Services: mobile sequence → image, then title, then content */
    .services-right { display: flex; flex-direction: column; }
    .services-right .services-image-container { order: 1; }
    .services-right .services-heading { order: 2; text-align: center; }
    .services-left { order: 3; padding-right: 0; }

    /* Why Choose Us: mobile sequence → image, then title/subtitle, then features */
    .why-choose-header { display: flex; flex-direction: column; align-items: center; }
    .why-choose-decorative-image { order: 1; margin-bottom: 16px; }
    .why-choose-content { order: 2; text-align: center; }

    /* Contact: ensure map shows on mobile and stacked last */
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-map-column { display: block; order: 3; position: relative; z-index: 2; }
    .contact-map-column iframe { height: 320px; min-height: 320px; }
}

@media (max-width: 480px) {
    .hero-section {
        border-bottom-right-radius: 60px;
        background-attachment: scroll; /* Fixed doesn't work on mobile */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .hero-slider,
    .hero-overlay {
        border-bottom-right-radius: 60px;
    }
    
    .hero-content {
        padding: 25px;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        padding: 8px 16px;
        gap: 8px;
    }

    .hero-content {
        padding: 24px;
        border-radius: 20px;
    }

    .hero-section {
        padding: 150px 0 80px;
    }

    .hero-slider-pagination {
        bottom: 18px;
        right: 18px;
        gap: 8px;
    }

    .hero-slider-navigation {
        padding: 0 14px;
    }

    .hero-slider-button {
        width: 40px;
        height: 40px;
        background: rgba(18, 32, 18, 0.38);
    }

    .hero-slider-button span {
        width: 10px;
        height: 10px;
    }

    .hero-slider-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .hero-slider-pagination .swiper-pagination-bullet-active {
        width: 20px;
    }
    
    .section-title,
    .section-title-center,
    .services-heading,
    .cta-title,
    .contact-title,
    .contact-form-title {
        font-size: 24px;
    }
    
    /* Mobile: center some titles, keep others aligned */
    .services-heading {
        text-align: center;
    }
    
    .about-card,
    .feature-card {
        padding: 25px;
    }
    
    .about-content-wrapper {
        flex-direction: column;
        padding-right: 0;
    }
    
    /* Hide decorative leaf on mobile */
    .about-decorative-image { display: none; }
    .about-primary-image {
        flex: 1 1 100%;
        width: 100%;
        padding: 12px;
    }
    .about-main-image {
        width: 100%;
    }
    
    .about-text-content {
        padding-right: 0;
    }
    
    .about-leaf-image {
        width: 150px;
    }
    
    .why-choose-decorative-image {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .why-choose-leaf-image {
        width: 150px;
        margin: 0 auto;
    }
    
    .cta-content-wrapper {
        min-height: auto;
        padding: 40px 0;
    }
    
	.cta-decorative-image {
		position: absolute;
		right: 0;
		top: 0;
		width: auto;
		height: auto;
		overflow: visible; /* ensure full image visible */
		transform: none;
		text-align: right;
		margin-top: 0;
		opacity: 0.8;
	}
    
	.cta-leaf-image {
		width: 220px; /* slightly smaller to ensure full visibility */
		height: auto;
		object-fit: contain;
		object-position: right top;
		display: block;
		margin: 0;
	}
    
    /* Floating chat: ensure visibility and mobile sizing */
    .floating-chat-container { right: 16px; bottom: 16px; }
    .floating-chat-main { width: 56px; height: 56px; }
    .floating-button { width: 50px; height: 50px; }

    /* Contact: slightly smaller map height on very small screens */
    .contact-map-column iframe { height: 280px; min-height: 280px; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .floating-whatsapp,
    .floating-call,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}
