/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary-color: #0094AA;      /* Teal - 60% */
    --secondary-color: #E65E0C;    /* Orange - 10% */
    --neutral-color: #000000;      /* Black - 5% */
    --light-bg: #FFFFFF;           /* White - 25% */
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --dark-gray: #6C757D;
    
    /* Typography */
    --font-arabic: 'Tajawal', Arial, sans-serif;
    --font-english: 'Inter', Arial, sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --element-spacing: 2rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 148, 170, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 148, 170, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 148, 170, 0.2);
    
    /* Border Radius */
    --radius-small: 8px;
    --radius-medium: 12px;
    --radius-large: 20px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-english);
    line-height: 1.6;
    color: var(--neutral-color);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

/* RTL Support */
[dir="rtl"] {
    font-family: var(--font-arabic);
}

[dir="rtl"] .nav-list {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-text {
    text-align: right;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--secondary-color);
}

/* ===== LAYOUT COMPONENTS ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--neutral-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-medium);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 1rem;
    line-height: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    background-color: #007a8c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-secondary:hover {
    background-color: #d54e00;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.btn-success {
    background-color: #25D366;
    color: white;
}

.btn-success:hover {
    background-color: #1da851;
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-social {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ===== HEADER ===== */
.header {
    background-color: var(--light-bg);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

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

.logo img {
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--neutral-color);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-normal);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-small);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark-gray);
    transition: var(--transition-fast);
}

.lang-btn.active,
.lang-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-small);
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-btn:hover {
    background-color: #1da851;
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--neutral-color);
    margin: 2px 0;
    transition: var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 70px;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

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

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

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 148, 170, 0.8) 0%, rgba(230, 94, 12, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    color: white;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
}

.hero-nav-btn {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.hero-nav-btn:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.hero-nav-btn.prev {
    left: 2rem;
}

.hero-nav-btn.next {
    right: 2rem;
}

.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 4;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.indicator.active {
    background-color: white;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 8rem 0 4rem;
    margin-top: 70px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* ===== COMPANY INTRO ===== */
.company-intro {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

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

.feature-content h3 {
    color: var(--neutral-color);
    margin-bottom: 0.5rem;
}

.intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
}

/* ===== PRODUCTS & SERVICES ===== */
.products-services {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: white;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-normal);
}

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

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product-content {
    padding: 1.5rem;
}

.product-title {
    color: var(--neutral-color);
    margin-bottom: 1rem;
}

.product-description {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* ===== TRUST SECTION ===== */
.trust-section {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-light);
    transition: var(--transition-normal);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.trust-icon {
    background-color: var(--primary-color);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.trust-content h3 {
    color: var(--neutral-color);
    margin-bottom: 1rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== ABOUT PAGE STYLES ===== */
.company-overview {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
}

.vision-mission {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.vm-card {
    background-color: white;
    padding: 3rem;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-light);
    text-align: center;
}

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

.vm-title {
    color: var(--neutral-color);
    margin-bottom: 1.5rem;
}

.company-values {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-light);
    transition: var(--transition-normal);
}

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

.value-icon {
    background-color: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.value-title {
    color: var(--neutral-color);
    margin-bottom: 1rem;
}

.expertise-areas {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.expertise-grid {
    display: grid;
    gap: 2rem;
}

.expertise-item {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-light);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: var(--transition-normal);
}

.expertise-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.expertise-number {
    background-color: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.expertise-title {
    color: var(--neutral-color);
    margin-bottom: 1rem;
}

.our-supermarket {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.supermarket-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.supermarket-features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

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

.feature-text h4 {
    color: var(--neutral-color);
    margin-bottom: 0.5rem;
}

.supermarket-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
}

.our-team {
    padding: var(--section-padding);
    background-color: var(--light-gray);
    text-align: center;
}

.team-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: var(--dark-gray);
}

.about-cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

/* ===== PARTNERS PAGE STYLES ===== */
.partners-intro {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.partners-grid-section {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

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

.partner-logo {
    background-color: white;
    border-radius: var(--radius-medium);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-normal);
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.partner-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--neutral-color);
}

.partner-category {
    font-size: 0.875rem;
    color: var(--dark-gray);
    background-color: var(--light-gray);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-small);
}

.partnership-benefits {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    background-color: var(--primary-color);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.benefit-content h3 {
    color: var(--neutral-color);
    margin-bottom: 1rem;
}

.partners-cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-section {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background-color: white;
    padding: 3rem;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
}

.form-header {
    margin-bottom: 2rem;
}

.form-title {
    color: var(--neutral-color);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--dark-gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--neutral-color);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-medium);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 148, 170, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-info-section {
    background-color: var(--light-gray);
    padding: 3rem;
    border-radius: var(--radius-large);
}

.contact-info-header {
    margin-bottom: 2rem;
}

.info-title {
    color: var(--neutral-color);
    margin-bottom: 0.5rem;
}

.info-subtitle {
    color: var(--dark-gray);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

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

.info-label {
    color: var(--neutral-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-details a {
    color: var(--dark-gray);
    transition: var(--transition-fast);
}

.info-details a:hover {
    color: var(--primary-color);
}

.social-media-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--medium-gray);
}

.social-title {
    color: var(--neutral-color);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: white;
    border-radius: var(--radius-small);
    color: var(--dark-gray);
    transition: var(--transition-fast);
    font-size: 0.875rem;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.map-section {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-title {
    color: var(--neutral-color);
    margin-bottom: 1rem;
}

.map-subtitle {
    color: var(--dark-gray);
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    background-color: white;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-wrapper {
    position: relative;
}

.map-wrapper iframe {
    border-radius: var(--radius-large) 0 0 var(--radius-large);
}

.map-info {
    padding: 2rem;
    display: flex;
    align-items: center;
}

.map-info h3 {
    color: var(--neutral-color);
    margin-bottom: 1rem;
}

.map-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.faq-section {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--radius-medium);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-question h3 {
    color: var(--neutral-color);
    margin: 0;
    font-size: 1.125rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--dark-gray);
    margin: 0;
}

/* ===== GET IN TOUCH PAGE STYLES ===== */
.quick-contact {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition-normal);
}

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

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.phone-card .card-icon {
    background-color: var(--primary-color);
}

.whatsapp-card .card-icon {
    background-color: #25D366;
}

.email-card .card-icon {
    background-color: var(--secondary-color);
}

.website-card .card-icon {
    background-color: var(--neutral-color);
}

.card-title {
    color: var(--neutral-color);
    margin-bottom: 0.5rem;
}

.card-description {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--dark-gray);
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--primary-color);
}

.social-media-section {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.social-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.social-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition-normal);
}

.social-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.instagram-card .social-icon {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.tiktok-card .social-icon {
    background-color: #000000;
}

.snapchat-card .social-icon {
    background-color: #FFFC00;
    color: black;
}

.facebook-card .social-icon {
    background-color: #1877F2;
}

.twitter-card .social-icon {
    background-color: #1DA1F2;
}

.social-title {
    color: var(--neutral-color);
    margin-bottom: 0.5rem;
}

.social-handle {
    color: var(--dark-gray);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.social-description {
    color: var(--dark-gray);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.tiktok-btn {
    background-color: #000000;
    color: white;
}

.snapchat-btn {
    background-color: #FFFC00;
    color: black;
}

.facebook-btn {
    background-color: #1877F2;
    color: white;
}

.twitter-btn {
    background-color: #1DA1F2;
    color: white;
}

.location-hours {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

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

.detail-content h4 {
    color: var(--neutral-color);
    margin-bottom: 0.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--medium-gray);
}

.day {
    font-weight: 500;
    color: var(--neutral-color);
}

.time {
    color: var(--dark-gray);
}

.location-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.location-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
}

.quick-actions {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.actions-title {
    margin-bottom: 1rem;
}

.actions-subtitle {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.actions-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: var(--radius-medium);
    font-weight: 500;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.action-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
}

.response-info {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

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

.response-item {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-light);
    text-align: center;
}

.response-icon {
    background-color: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
}

.response-content h3 {
    color: var(--neutral-color);
    margin-bottom: 0.5rem;
}

.response-content p {
    color: var(--dark-gray);
    font-size: 0.875rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--neutral-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-title {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    color: var(--secondary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: white;
}

.whatsapp-footer-btn {
    background-color: #25D366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-medium);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.whatsapp-footer-btn:hover {
    background-color: #1da851;
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-content p {
    margin-bottom: 0.5rem;
}

/* ===== FIXED WHATSAPP BUTTON ===== */
.fixed-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-float {
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #1da851;
    transform: scale(1.1);
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .intro-content,
    .overview-content,
    .supermarket-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper iframe {
        border-radius: var(--radius-large) var(--radius-large) 0 0;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .language-switcher {
        display: none;
    }
    
    .whatsapp-btn span {
        display: none;
    }
    
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-nav-btn.prev {
        left: 1rem;
    }
    
    .hero-nav-btn.next {
        right: 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .social-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-actions,
    .actions-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .fixed-whatsapp {
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-form,
    .contact-info-section {
        padding: 2rem;
    }
    
    .vm-card {
        padding: 2rem;
    }
    
    .expertise-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .response-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .fixed-whatsapp,
    .hero-nav,
    .hero-indicators,
    .btn,
    .form-actions {
        display: none !important;
    }
    
    .hero {
        height: auto;
        margin-top: 0;
    }
    
    .page-header {
        margin-top: 0;
    }
    
    * {
        box-shadow: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1 { font-size: 18pt; }
    h2 { font-size: 16pt; }
    h3 { font-size: 14pt; }
    h4 { font-size: 12pt; }
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.3);
        --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.4);
        --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.5);
    }
}



/* ===== RTL SUPPORT FOR ARABIC ===== */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] body {
    font-family: var(--font-arabic);
}

[dir="ltr"] body {
    font-family: var(--font-english);
}

/* RTL Navigation */
[dir="rtl"] .nav-list {
    flex-direction: row-reverse;
}

[dir="rtl"] .header-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .header-actions {
    order: -1;
}

[dir="rtl"] .logo {
    margin-left: 0;
    margin-right: auto;
}

/* RTL Language Switcher */
[dir="rtl"] .language-switcher {
    flex-direction: row-reverse;
}

/* RTL Hero Content */
[dir="rtl"] .hero-actions {
    flex-direction: row-reverse;
}

/* RTL Grid Items */
[dir="rtl"] .intro-content,
[dir="rtl"] .features-grid,
[dir="rtl"] .products-grid,
[dir="rtl"] .benefits-grid {
    direction: rtl;
}

[dir="rtl"] .intro-content {
    flex-direction: row-reverse;
}

/* RTL Footer */
[dir="rtl"] .footer-content {
    direction: rtl;
}

[dir="rtl"] .footer-sections {
    flex-direction: row-reverse;
}

/* RTL Contact Cards */
[dir="rtl"] .contact-cards {
    direction: rtl;
}

/* RTL Forms */
[dir="rtl"] .contact-form {
    direction: rtl;
}

[dir="rtl"] .form-row {
    flex-direction: row-reverse;
}

/* Numbers always LTR */
.phone-number,
.email,
.number,
[dir="rtl"] .phone-number,
[dir="rtl"] .email,
[dir="rtl"] .number {
    direction: ltr;
    text-align: left;
    unicode-bidi: embed;
}

/* ===== IMPROVED COLORS FOR BETTER CONTRAST ===== */
/* White text on dark backgrounds */
.hero-title,
.hero-subtitle,
.page-title,
.page-subtitle {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Better contrast for section content */
.section-subtitle,
.intro-description,
.benefit-description,
.feature-description {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Dark text on light backgrounds */
.about-content .section-title,
.about-content .section-subtitle,
.about-content p {
    color: var(--neutral-color) !important;
    text-shadow: none;
}

/* Partners full image styling */
.partners-full-section {
    padding: 4rem 0;
    background-color: var(--primary-color);
}

.partners-full-image {
    margin: 0;
    width: 100%;
    max-width: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.partners-image {
    width: 100%;
    height: auto;
    min-height: 500px;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.partners-image:hover {
    transform: scale(1.02);
}

/* Make container full width for partners section */
.partners-full-section .container {
    max-width: 100%;
    padding: 0;
}

.partners-full-section .section-header {
    max-width: var(--container-max-width);
    margin: 0 auto 4rem auto;
    padding: 0 1rem;
}

/* Enhanced hero section for better text visibility */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 148, 170, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Better button contrast */
.btn {
    font-weight: 600;
    text-shadow: none;
}

/* Enhanced contact cards */
.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.contact-card h3,
.contact-card p {
    color: var(--neutral-color) !important;
}

/* Mobile RTL improvements */
@media (max-width: 768px) {
    [dir="rtl"] .nav-list {
        flex-direction: column;
        text-align: right;
    }
    
    [dir="rtl"] .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    [dir="rtl"] .intro-content {
        flex-direction: column;
    }
}


/* === Override for Radawi partner texts (make them turquoise instead of white) === */
.partners-intro .intro-text p,
.partners-full-section .section-subtitle,
.value-description,
.feature-description,
.intro-description,
.section-subtitle,
.supermarket-description,
.team-description,
.cta-content p {
    color: var(--primary-color) !important;   /* تركوازي */
}
/* === Fix partner section descriptions (Arabic & English) === */
.partners-intro .intro-text p,
.partners-full-section .section-subtitle,
.value-description,
.feature-description,
.intro-description,
.section-subtitle,
.supermarket-description,
.team-description,
.cta-content p,
.expertise-description {
    color: var(--primary-color) !important;   /* تركوازي */
}
