/* ========== تحميل خط Cairo من Google Fonts ========== */-
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

/* ========== إعدادات عامة ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    direction: rtl;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== القسم الرئيسي ========== */
.hero-section {
    position: relative;
    min-height: 70vh;
    background: #123352;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #123352;
    opacity: 0.7;
    z-index: 2;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: #e39e12;
    opacity: 0.08;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.shape2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
}

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

.hero-title {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #e39e12;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 120px;
    height: 4px;
    background: #e39e12;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e39e12;
    margin-bottom: 25px;
}

.subtitle-highlight {
    color: #e39e12;
    position: relative;
    display: inline-block;
}

.subtitle-highlight::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 8px;
    background: #e39e12;
    opacity: 0.2;
    z-index: -1;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 45px;
    max-width: 600px;
}

.features-list {
    display: flex;
    gap: 12px;
    margin-bottom: 45px;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #223a4f;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid #223a4f;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e39e12;
    border-color: #e39e12;
    transform: translateY(-3px);
}

.feature-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #e39e12;
    flex-shrink: 0;
}

.feature-text {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.feature-item:hover .feature-text {
    color: #123352;
}

.floating-card {
    position: absolute;
    bottom: 80px;
    left: 60px;
    background: #223a4f;
    padding: 25px 30px;
    border-radius: 20px;
    z-index: 3;
    border: 2px solid #e39e12;
}

.card-stat {
    font-size: 2.5rem;
    font-weight: 900;
    color: #e39e12;
    line-height: 1;
    margin-bottom: 8px;
}

.card-label {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
}

/* ========== فورم الطلب السريع في Hero Section ========== */
.hero-quick-form {
    background: #223a4f;
    border-radius: 15px;
    padding: 25px 20px;
    margin-top: 0;
    border: 2px solid #e39e12;
    max-width: 500px;
}

.quick-form-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e39e12;
    text-align: center;
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #123352;
    border-radius: 8px;
    background: #123352;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: #e39e12;
    background: #123352;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-submit-btn {
    width: 100%;
    padding: 14px 20px;
    background: #e39e12;
    color: #123352;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.form-submit-btn:hover {
    background: #123352;
    color: #e39e12;
    border: 2px solid #e39e12;
    transform: translateY(-2px);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-privacy {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
    line-height: 1.4;
}

.form-success {
    background: #e39e12;
    color: #123352;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-success.show {
    display: block;
}

/* ========== قسم الشهادات ========== */
.credentials-section {
    background: #223a4f;
    padding: 50px 0;
}

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

.credentials-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-badge {
    display: inline-block;
    background: #e39e12;
    color: #123352;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #e39e12;
    margin-bottom: 10px;
}

.title-highlight {
    color: #e39e12;
}

.section-description {
    font-size: 1rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 90px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #e39e12;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: #ffffff;
    font-weight: 600;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.certificate-card {
    background: #123352;
    border-radius: 10px;
    padding: 10px;
    transition: all 0.3s ease;
    border: 2px solid #123352;
}

.certificate-card:hover {
    transform: translateY(-5px);
    border-color: #e39e12;
}

.certificate-image {
    width: 100%;
    height: 70px;
    object-fit: contain;
    border-radius: 8px;
    background: #223a4f;
    padding: 8px;
}

/* ========== قسم الخدمات ========== */
.services-section {
    background: #123352;
    padding: 50px 0;
}

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

.services-header {
    text-align: center;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.service-card {
    background: #223a4f;
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    border: 2px solid #223a4f;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #e39e12;
}

.service-image {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.service-title {
    font-size: 1rem;
    font-weight: 700;
    color: #e39e12;
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-description {
    font-size: 0.85rem;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 10px;
}

.service-button {
    display: inline-block;
    background: #e39e12;
    color: #123352;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-button:hover {
    background: #123352;
    color: #e39e12;
    border: 2px solid #e39e12;
}

/* ========== قسم المبيدات ========== */
.pesticides-section {
    background: #223a4f;
    padding: 50px 0;
}

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

.pesticides-header {
    text-align: center;
    margin-bottom: 30px;
}

.pesticides-header .section-badge {
    background: #e39e12;
    color: #123352;
}

.pesticides-header .section-title {
    color: #e39e12;
}

.pesticides-header .section-description {
    color: #ffffff;
}

.pesticides-image-wrapper {
    max-width: 900px;
    margin: 0 auto 35px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 3px solid #e39e12;
}

.pesticides-image-wrapper:hover {
    transform: translateY(-5px);
}

.pesticides-main-image {
    width: 100%;
    height: auto;
    display: block;
}

.pesticides-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.pesticide-card {
    background: #123352;
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #123352;
}

.pesticide-card:hover {
    transform: translateY(-5px);
    border-color: #e39e12;
}

.pesticide-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    position: relative;
    border-radius: 12px;
    background: #e39e12;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-eco::before {
    content: '';
    width: 18px;
    height: 18px;
    border: 2.5px solid #123352;
    border-radius: 50%;
    position: absolute;
    top: 18px;
    left: 18px;
}

.icon-eco::after {
    content: '';
    width: 10px;
    height: 10px;
    border: 2.5px solid #123352;
    border-radius: 50%;
    position: absolute;
    top: 14px;
    left: 28px;
}

.icon-tech::before {
    content: '';
    width: 20px;
    height: 3px;
    background: #123352;
    border-radius: 10px;
    position: absolute;
    top: 20px;
    left: 20px;
    box-shadow: 
        0 6px 0 #123352,
        0 12px 0 #123352;
}

.icon-tech::after {
    content: '';
    width: 3px;
    height: 20px;
    background: #123352;
    border-radius: 10px;
    position: absolute;
    top: 18px;
    left: 18px;
}

.icon-certified::before {
    content: '';
    width: 18px;
    height: 18px;
    border: 2.5px solid #123352;
    border-radius: 3px;
    position: absolute;
    top: 18px;
    left: 18px;
    transform: rotate(45deg);
}

.icon-certified::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #123352;
    border-radius: 2px;
    position: absolute;
    top: 22px;
    left: 22px;
    transform: rotate(45deg);
}

.icon-german::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2.5px solid #123352;
    border-radius: 3px;
    position: absolute;
    top: 18px;
    left: 18px;
}

.icon-german::after {
    content: '';
    width: 2.5px;
    height: 20px;
    background: #123352;
    position: absolute;
    top: 18px;
    left: 27px;
    box-shadow: 
        -8px 0 0 #123352,
        0 -8px 0 #123352,
        -8px -8px 0 #123352;
}

.pesticide-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #e39e12;
    margin-bottom: 8px;
    line-height: 1.3;
}

.pesticide-description {
    font-size: 0.85rem;
    color: #ffffff;
    line-height: 1.5;
}

/* ========== قسم المزايا ========== */
.advantages-section {
    background: #123352;
    padding: 50px 0;
}

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

.advantages-hero {
    position: relative;
    max-width: 900px;
    margin: 0 auto 35px;
    border-radius: 20px;
    overflow: hidden;
    min-height: 200px;
    border: 3px solid #e39e12;
}

.advantages-hero-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.advantages-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
}

.advantages-header {
    text-align: center;
}

.advantages-header .section-badge {
    background: #223a4f;
    color: #e39e12;
    border: 2px solid #e39e12;
    display: inline-block;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.advantages-header .section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #e39e12;
    margin-bottom: 10px;
    background: #223a4f;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 10px;
}

.advantages-header .title-highlight {
    color: #e39e12;
}

.advantages-header .section-description {
    font-size: 1rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    background: #223a4f;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 10px;
}

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

.advantage-card {
    background: #223a4f;
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #223a4f;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: #e39e12;
}

.advantage-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 12px;
    position: relative;
    border-radius: 12px;
    background: #e39e12;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-experience::before {
    content: '';
    width: 22px;
    height: 22px;
    border: 2.5px solid #123352;
    border-radius: 50%;
    position: absolute;
    top: 16px;
    left: 16px;
}

.icon-experience::after {
    content: '';
    width: 12px;
    height: 12px;
    border: 2.5px solid #123352;
    border-radius: 50%;
    position: absolute;
    top: 21px;
    left: 21px;
}

.icon-warranty::before {
    content: '';
    width: 20px;
    height: 23px;
    background: #123352;
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    position: absolute;
    top: 16px;
    left: 18px;
}

.icon-warranty::after {
    content: '';
    width: 10px;
    height: 12px;
    background: #e39e12;
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    position: absolute;
    top: 21px;
    left: 23px;
}

.icon-speed::before {
    content: '';
    width: 18px;
    height: 3px;
    background: #123352;
    border-radius: 10px;
    position: absolute;
    top: 20px;
    left: 22px;
    box-shadow: 
        -4px 6px 0 #123352,
        -8px 12px 0 #123352;
}

.icon-speed::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #123352;
    border-radius: 50%;
    position: absolute;
    top: 18px;
    left: 18px;
}

.icon-safety::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2.5px solid #123352;
    border-radius: 50%;
    position: absolute;
    top: 18px;
    left: 18px;
}

.icon-safety::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #123352;
    border-radius: 50%;
    position: absolute;
    top: 23px;
    left: 23px;
}

.icon-team::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #123352;
    border-radius: 50%;
    position: absolute;
    top: 22px;
    left: 22px;
    box-shadow: 
        10px 0 0 #123352,
        20px 0 0 #123352;
}

.icon-team::after {
    content: '';
    width: 14px;
    height: 2.5px;
    background: #123352;
    border-radius: 10px;
    position: absolute;
    top: 24px;
    left: 25px;
}

.icon-price::before {
    content: '';
    width: 22px;
    height: 22px;
    border: 2.5px solid #123352;
    border-radius: 3px;
    position: absolute;
    top: 17px;
    left: 17px;
}

.icon-price::after {
    content: '';
    width: 12px;
    height: 3px;
    background: #123352;
    border-radius: 10px;
    position: absolute;
    top: 26px;
    left: 22px;
    box-shadow: 0 -6px 0 #123352;
}

.advantage-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #e39e12;
    margin-bottom: 8px;
    line-height: 1.3;
}

.advantage-description {
    font-size: 0.85rem;
    color: #ffffff;
    line-height: 1.5;
}

/* ========== قسم الأسعار ========== */
.pricing-section {
    background: #223a4f;
    padding: 50px 0;
}

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

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.pricing-card {
    background: #123352;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #123352;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #e39e12;
}

.pricing-card.featured {
    background: #e39e12;
    border-color: #e39e12;
}

.pricing-card.featured .service-name,
.pricing-card.featured .price-amount,
.pricing-card.featured .price-label {
    color: #123352;
}

.pricing-card.featured .price-number {
    color: #123352;
}

.service-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e39e12;
    margin-bottom: 12px;
}

.price-amount {
    font-size: 0.85rem;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.price-number {
    font-size: 2rem;
    font-weight: 900;
    color: #e39e12;
    display: block;
    margin-bottom: 5px;
}

.price-label {
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 600;
}

.pricing-note {
    background: #123352;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    margin-top: 20px;
    border: 2px solid #e39e12;
}

.pricing-note p {
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.5;
}

/* ========== قسم كيف نعمل ========== */
.process-section {
    background: #123352;
    padding: 50px 0;
}

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

.process-header {
    text-align: center;
    margin-bottom: 30px;
}

.process-header .section-badge {
    background: #e39e12;
    color: #123352;
}

.process-header .section-title {
    color: #e39e12;
}

.process-header .section-description {
    color: #ffffff;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-card {
    background: #223a4f;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 2px solid #223a4f;
}

.step-card:hover {
    border-color: #e39e12;
    transform: translateX(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #e39e12;
    color: #123352;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e39e12;
    margin-bottom: 5px;
}

.step-description {
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.4;
}

/* ========== قسم مناطق الخدمة ========== */
.areas-section {
    background: #223a4f;
    padding: 50px 0;
}

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

.areas-header {
    text-align: center;
    margin-bottom: 30px;
}

.areas-header .section-badge {
    background: #e39e12;
    color: #123352;
}

.areas-header .section-title {
    color: #e39e12;
}

.areas-header .section-description {
    color: #ffffff;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.area-card {
    background: #123352;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #123352;
}

.area-card:hover {
    border-color: #e39e12;
    transform: translateY(-3px);
}

.area-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 8px;
    position: relative;
    border-radius: 8px;
    background: #e39e12;
    display: flex;
    align-items: center;
    justify-content: center;
}

.area-icon::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2.5px solid #123352;
    position: absolute;
    top: 12px;
    left: 12px;
    transform: rotate(45deg);
}

.area-icon::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #e39e12;
    position: absolute;
    top: 17px;
    left: 17px;
    transform: rotate(45deg);
}

.area-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #e39e12;
}

/* ========== قسم آراء العملاء ========== */
.testimonials-section {
    background: #123352;
    padding: 50px 0;
}

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

.testimonials-header {
    text-align: center;
    margin-bottom: 30px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-card {
    background: #223a4f;
    border-radius: 12px;
    padding: 20px 15px;
    transition: all 0.3s ease;
    border: 2px solid #223a4f;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #e39e12;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: #e39e12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #123352;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.client-info {
    flex: 1;
}

.client-name {
    font-size: 1rem;
    font-weight: 700;
    color: #e39e12;
    margin-bottom: 3px;
}

.client-location {
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 600;
}

.stars {
    display: flex;
    gap: 3px;
}

.star {
    width: 16px;
    height: 16px;
    position: relative;
}

.star::before {
    content: '★';
    color: #e39e12;
    font-size: 16px;
    position: absolute;
}

.testimonial-text {
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.6;
}

/* ========== قسم التواصل ========== */
.contact-section {
    background: #223a4f;
    padding: 50px 0;
}

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

.contact-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #123352;
    padding: 12px 20px;
    border-radius: 25px;
    border: 2px solid #123352;
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: #e39e12;
}

.info-icon {
    width: 35px;
    height: 35px;
    background: #e39e12;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.info-item:first-child .info-icon::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2.5px solid #123352;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 10px;
    border-style: dashed;
    border-spacing: 2px;
}

.info-item:first-child .info-icon::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #123352;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    left: 15px;
}

.info-item:last-child .info-icon::before {
    content: '';
    width: 16px;
    height: 14px;
    border: 2.5px solid #123352;
    border-radius: 4px;
    position: absolute;
    top: 9px;
    left: 10px;
}

.info-item:last-child .info-icon::after {
    content: '';
    width: 10px;
    height: 2.5px;
    background: #123352;
    border-radius: 10px;
    position: absolute;
    top: 15px;
    left: 13px;
    box-shadow: 0 4px 0 #123352;
}

.info-text {
    font-size: 1rem;
    font-weight: 700;
    color: #e39e12;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.contact-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 3px solid #e39e12;
}

.contact-image:hover {
    transform: scale(1.03);
}

.contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #e39e12;
    color: #123352;
}

.btn-primary:hover {
    background: #123352;
    color: #e39e12;
    border-color: #e39e12;
    transform: translateY(-3px);
}

.btn-secondary {
    background: #123352;
    color: #e39e12;
    border-color: #e39e12;
}

.btn-secondary:hover {
    background: #e39e12;
    color: #123352;
    transform: translateY(-3px);
}

/* ========== التصميم المتجاوب ========== */
@media (max-width: 992px) {
    .floating-card {
        display: none;
    }
}

@media (min-width: 768px) {
    .hero-section,
    .credentials-section,
    .services-section,
    .pesticides-section,
    .advantages-section,
    .pricing-section,
    .process-section,
    .areas-section,
    .testimonials-section,
    .contact-section {
        padding: 70px 0;
    }

    .hero-section {
        min-height: 75vh;
        padding: 80px 0;
    }

    .hero-container {
        padding: 0 60px;
    }

    .hero-title {
        font-size: 5.5rem;
    }

    .hero-subtitle {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-description {
        font-size: 1.1rem;
    }

    .certificates-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .certificate-image {
        height: 60px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .pesticides-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .pesticide-card {
        padding: 25px 20px;
    }

    .pesticides-main-image {
        max-height: 400px;
        object-fit: cover;
    }

    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .advantage-card {
        padding: 25px 20px;
    }

    .advantages-hero {
        min-height: 250px;
    }

    .advantages-hero-image {
        height: 250px;
    }

    .advantages-header .section-title {
        font-size: 2.5rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .areas-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .form-row {
        flex-direction: row;
    }
    
    .form-input {
        flex: 1;
    }
    
    .hero-quick-form {
        padding: 30px 25px;
    }
    
    .quick-form-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        padding: 40px 0;
    }

    .hero-container {
        padding: 0 30px;
    }

    .hero-content {
        margin: 0 auto;
        text-align: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin: 0 auto 35px;
    }

    .features-list {
        justify-content: center;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 10px;
    }

    .feature-item {
        padding: 6px 12px;
        gap: 6px;
    }

    .feature-icon {
        width: 14px;
        height: 14px;
    }

    .feature-text {
        font-size: 11px;
    }

    .shape1, .shape2 {
        display: none;
    }

    .pesticides-image-wrapper {
        margin-bottom: 25px;
        border-radius: 15px;
    }

    .pesticides-main-image {
        max-height: 250px;
        object-fit: cover;
    }

    .pesticides-grid {
        gap: 12px;
    }

    .pesticide-card {
        padding: 18px 15px;
    }

    .advantages-hero {
        min-height: 220px;
    }

    .advantages-hero-overlay {
        padding: 25px 15px;
    }

    .advantages-header .section-title {
        font-size: 1.8rem;
    }

    .advantages-header .section-description {
        font-size: 0.9rem;
    }

    .advantages-grid {
        gap: 12px;
    }

    .advantage-card {
        padding: 18px 15px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 55vh;
        padding: 30px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .features-list {
        gap: 8px;
    }

    .feature-item {
        padding: 5px 10px;
    }

    .feature-text {
        font-size: 10px;
    }

    .pesticides-image-wrapper {
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .pesticides-main-image {
        max-height: 200px;
    }

    .pesticide-card {
        padding: 15px 12px;
    }

    .pesticide-icon {
        width: 50px;
        height: 50px;
    }

    .pesticide-title {
        font-size: 0.95rem;
    }

    .pesticide-description {
        font-size: 0.8rem;
    }

    .advantages-hero {
        border-radius: 12px;
        margin-bottom: 20px;
        min-height: 180px;
    }

    .advantages-hero-image {
        height: 180px;
    }

    .advantages-hero-overlay {
        padding: 20px 12px;
    }

    .advantages-header .section-badge {
        font-size: 11px;
        padding: 5px 15px;
    }

    .advantages-header .section-title {
        font-size: 1.5rem;
    }

    .advantages-header .section-description {
        font-size: 0.85rem;
    }

    .advantage-card {
        padding: 15px 12px;
    }

    .advantage-icon {
        width: 50px;
        height: 50px;
    }

    .advantage-title {
        font-size: 0.95rem;
    }

    .advantage-description {
        font-size: 0.8rem;
    }

    .hero-quick-form {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .quick-form-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .form-input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .form-submit-btn {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .areas-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}