/* ===================================
   فاكهة الموسم - Fruit of the Season
   تصميم احترافي حديث مستوحى من أفضل المواقع العالمية
   =================================== */

/* ===== Root Variables ===== */
:root {
    /* Colors - مستوحاة من ألوان الفواكه الطبيعية */
    --primary-color: #2D8A3E;
    --primary-dark: #1E5F2B;
    --primary-light: #4CAF50;
    --secondary-color: #FF9800;
    --secondary-dark: #F57C00;
    --accent-color: #FFC107;
    
    /* Neutrals */
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    
    /* Fruit Colors */
    --orange-color: #FF8C42;
    --lemon-color: #FFD93D;
    --tangerine-color: #FF6B35;
    --green-color: #6BCF7F;
    
    /* Typography */
    --font-primary: 'Cairo', sans-serif;
    --font-secondary: 'Tajawal', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-padding: 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-small: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-medium: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-large: 0 8px 32px rgba(0,0,0,0.16);
    
    /* Border Radius */
    --radius-small: 8px;
    --radius-medium: 16px;
    --radius-large: 24px;
}

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

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

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.8;
    overflow-x: hidden;
    direction: rtl;
}

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

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-small);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-ar {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary-color);
}

.logo-en {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

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

.lang-switch {
    background: transparent;
    border: 2px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-small);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lang-switch:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
      background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
    background-size: cover;       /* تغطي كامل المساحة */

}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2D8A3E 0%, #4CAF50 50%, #66BB6A 100%);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 193, 7, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 152, 0, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0,0,0,0.2) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem 0;
}

.hero-subtitle {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.95;
    animation: fadeInUp 0.6s ease forwards;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.2);
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero-description {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0;
    line-height: 1.8;
    font-weight: 400;
    animation: fadeInUp 0.6s ease 0.4s forwards;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-medium);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.6s forwards;
}

.stat-item {
    text-align: center;
}

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

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.8s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.hero-scroll span {
    font-size: 0.875rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-small);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-color);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-outline-dark:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

/* ===== Features Section ===== */
.features {
    padding: 4rem 0;
    background: var(--bg-white);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

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

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-medium);
    text-align: center;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* ===== Section Styles ===== */
section {
    padding: var(--section-padding) 0;
}

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

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

.section-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.section-action {
    text-align: center;
    margin-top: 3rem;
}

/* ===== About Preview Section ===== */
.about-preview {
    background: var(--bg-light);
}

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

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder i {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.3);
}

.about-text h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.company-info {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-small);
}

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

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.info-item div {
    display: flex;
    flex-direction: column;
}

.info-item strong {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.25rem;
}

.info-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ===== Products Section ===== */
.products-highlight {
    background: white;
}

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

.product-card {
    background: white;
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-small);
    transition: var(--transition-smooth);
}

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

.product-image {
    position: relative;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-small);
    font-size: 0.875rem;
    font-weight: 700;
    z-index: 2;
}

.product-badge.seasonal {
    background: var(--secondary-color);
}

.product-img-placeholder {
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.product-img-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
}

.product-img-placeholder.orange {
    background: linear-gradient(135deg, #FF8C42, #FFB366);
}

.product-img-placeholder.yellow {
    background: linear-gradient(135deg, #FFD93D, #FFE66D);
}

.product-img-placeholder.tangerine {
    background: linear-gradient(135deg, #FF6B35, #FF8B5F);
}

.product-img-placeholder.green {
    background: linear-gradient(135deg, #6BCF7F, #85D996);
}

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

.product-info {
    padding: 2rem;
}

.product-info h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.product-info p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
    transition: var(--transition-smooth);
}

.product-link:hover {
    gap: 1rem;
}

/* ===== Services Section ===== */
.services-overview {
    background: var(--bg-light);
}

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

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-small);
    transition: var(--transition-smooth);
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card > p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-gray);
}

.service-features i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 152, 0, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.cta-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
}

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

/* ===== Footer ===== */
.footer {
    background: var(--text-dark);
    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 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary-light);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

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

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

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

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

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

.footer-links a:hover {
    color: var(--primary-light);
    padding-right: 0.5rem;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--primary-light);
    font-size: 1.25rem;
}

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

.footer-group {
    margin-top: 0.5rem;
}

.footer-group a {
    color: var(--primary-light);
    font-weight: 600;
}

.footer-group a:hover {
    text-decoration: underline;
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .company-info {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: var(--shadow-large);
        transition: var(--transition-smooth);
        gap: 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid,
    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 40px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===== About Page Styles ===== */

/* Page Header */
.page-header {
    position: relative;
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
    text-align: center;
    overflow: hidden;
}

.page-header-background {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 152, 0, 0.1) 0%, transparent 50%);
}

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

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 900;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-small);
    backdrop-filter: blur(10px);
}

.breadcrumb a {
    color: white;
    transition: var(--transition-smooth);
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb i {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Company Story */
.company-story {
    background: white;
}

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

.story-text p {
    font-size: 1.125rem;
    line-height: 2;
    color: var(--text-gray);
}

.story-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Stats Section */
.stats-section {
    background: var(--bg-light);
}

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

.stat-box {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-medium);
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-box .stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-desc {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Founder Section */
.founder-section {
    background: white;
}

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

.founder-img-wrapper {
    position: relative;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-large);
    aspect-ratio: 3/4;
}

.founder-img-wrapper .image-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-img-wrapper .image-placeholder i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
}

.founder-info {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-light);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-small);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.info-badge i {
    color: var(--primary-color);
}

.founder-text p {
    font-size: 1.125rem;
    line-height: 2;
    color: var(--text-gray);
}

/* Values Section */
.values-section {
    background: var(--bg-light);
}

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

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-small);
    transition: var(--transition-smooth);
    text-align: center;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Global Network */
.global-network {
    background: white;
}

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

.continent-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-medium);
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.continent-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.continent-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-small);
}

.continent-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.continent-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.continent-card p {
    color: var(--text-gray);
    margin: 0;
}

/* Why Choose Us */
.why-choose-us {
    background: var(--bg-light);
}

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

.reason-item {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-small);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

.reason-number {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    font-weight: 900;
    color: var(--bg-light);
    z-index: 0;
}

.reason-item h3 {
    position: relative;
    z-index: 1;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.reason-item p {
    position: relative;
    z-index: 1;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Responsive for About Page */
@media (max-width: 1024px) {
    .story-content,
    .founder-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 80px;
    }
    
    .stats-grid,
    .values-grid,
    .continents-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Products Page Styles ===== */

/* Products Introduction */
.products-intro {
    background: white;
}

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

.intro-text p {
    font-size: 1.125rem;
    line-height: 2;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.intro-stats {
    display: flex;
    gap: 2rem;
}

.intro-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-medium);
    flex: 1;
}

.intro-stat .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-small);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.intro-stat .stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-info strong {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 900;
}

.stat-info span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Main Products - Featured */
.main-products {
    background: var(--bg-light);
}

.featured-products {
    display: grid;
    gap: 3rem;
}

.featured-product {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    background: white;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    position: relative;
}

.product-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-small);
    font-weight: 700;
    font-size: 0.875rem;
    color: white;
    box-shadow: var(--shadow-small);
}

.product-badge.bestseller {
    background: linear-gradient(135deg, #FF6B35, #FF8B5F);
}

.product-badge.popular {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.product-badge.seasonal {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.featured-img {
    position: relative;
    min-height: 400px;
}

.featured-img .product-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-img .product-img-placeholder i {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.8);
}

.featured-content {
    padding: 3rem 3rem 3rem 0;
}

.featured-content h3 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.product-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-small);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-badge i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.product-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-gray);
    font-size: 1rem;
}

.product-details i {
    color: var(--primary-color);
    font-size: 1.125rem;
    width: 20px;
}

/* Other Products Gallery */
.other-products {
    background: white;
}

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

.gallery-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-medium);
    transition: var(--transition-smooth);
}

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

.gallery-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-img i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.gallery-img.green {
    background: linear-gradient(135deg, #6BCF7F, #85D996);
}

.gallery-img.red {
    background: linear-gradient(135deg, #E74C3C, #F1685E);
}

.gallery-img.purple {
    background: linear-gradient(135deg, #9B59B6, #AF7AC5);
}

.gallery-img.green-light {
    background: linear-gradient(135deg, #2ECC71, #58D68D);
}

.gallery-img.red-orange {
    background: linear-gradient(135deg, #FF6347, #FF7F66);
}

.gallery-img.yellow-light {
    background: linear-gradient(135deg, #F1C40F, #F4D03F);
}

.gallery-img.brown {
    background: linear-gradient(135deg, #A0826D, #B8956A);
}

.gallery-img.green-dark {
    background: linear-gradient(135deg, #27AE60, #52BE80);
}

.gallery-item h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.gallery-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Quality Assurance */
.quality-assurance {
    background: var(--bg-light);
}

.quality-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.step-item {
    flex: 1;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-medium);
    text-align: center;
    box-shadow: var(--shadow-small);
    position: relative;
    transition: var(--transition-smooth);
}

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

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.125rem;
    box-shadow: var(--shadow-small);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 1.5rem auto 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.step-item h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-item p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

.step-arrow {
    color: var(--primary-light);
    font-size: 2rem;
    flex-shrink: 0;
}

/* Responsive for Products Page */
@media (max-width: 1024px) {
    .intro-content {
        grid-template-columns: 1fr;
    }
    
    .featured-product {
        grid-template-columns: 1fr;
    }
    
    .featured-img {
        min-height: 300px;
    }
    
    .featured-content {
        padding: 2rem;
    }
    
    .quality-steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .intro-stats {
        flex-direction: column;
    }
    
    .products-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-img {
        width: 80px;
        height: 80px;
    }
}

/* ===== Services Page Styles ===== */

/* Services Detail Intro */
.services-detail-intro {
    background: white;
    padding: 60px 0;
}

/* Service Detail Sections */
.service-detail {
    padding: 80px 0;
    background: white;
}

.service-detail.alternate {
    background: var(--bg-light);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.service-badge {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-medium);
}

.service-badge i {
    font-size: 2rem;
    color: white;
}

.service-badge.import {
    background: linear-gradient(135deg, #3498DB, #5DADE2);
}

.service-badge.export {
    background: linear-gradient(135deg, #E74C3C, #EC7063);
}

.service-badge.logistics {
    background: linear-gradient(135deg, #F39C12, #F8C471);
}

.service-badge.consulting {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.service-detail-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.service-intro {
    font-size: 1.125rem;
    line-height: 2;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.service-benefits h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-medium);
    transition: var(--transition-smooth);
}

.service-detail.alternate .benefits-list li {
    background: white;
}

.benefits-list li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-small);
}

.benefits-list li > i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefits-list li > div strong {
    display: block;
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.benefits-list li > div p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.service-detail-image .image-wrapper {
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.service-detail-image .image-placeholder {
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-image .image-placeholder i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
}

.image-placeholder.import-bg {
    background: linear-gradient(135deg, #3498DB, #5DADE2);
}

.image-placeholder.export-bg {
    background: linear-gradient(135deg, #E74C3C, #EC7063);
}

.image-placeholder.logistics-bg {
    background: linear-gradient(135deg, #F39C12, #F8C471);
}

.image-placeholder.consulting-bg {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

/* Why Work With Us */
.why-work-section {
    background: var(--bg-light);
}

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

.advantage-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-medium);
    text-align: center;
    box-shadow: var(--shadow-small);
    transition: var(--transition-smooth);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon i {
    font-size: 2rem;
    color: white;
}

.advantage-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.advantage-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Responsive for Services Page */
@media (max-width: 1024px) {
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-detail.alternate .service-detail-content {
        direction: ltr;
    }
    
    .service-detail.alternate .service-detail-text {
        direction: rtl;
    }
}

@media (max-width: 768px) {
    .service-detail {
        padding: 60px 0;
    }
    
    .service-detail-text h2 {
        font-size: 2rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Contact Page Styles ===== */

/* Contact Info Section */
.contact-info-section {
    background: white;
}

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

.contact-info-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-medium);
    text-align: center;
    transition: var(--transition-smooth);
}

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

.contact-info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon i {
    font-size: 2rem;
    color: white;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--text-gray);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.contact-info-card a:hover {
    color: var(--primary-dark);
}

.sub-info {
    font-size: 0.9rem !important;
    opacity: 0.8;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--bg-light);
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background: white;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.form-info {
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
}

.form-info .section-subtitle {
    color: white;
    opacity: 0.9;
}

.form-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.form-info > p {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.form-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-feature i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.social-links h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

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

.social-btn:hover {
    background: white;
    transform: translateY(-3px);
}

.social-btn.facebook:hover {
    color: #1877F2;
}

.social-btn.instagram:hover {
    color: #E4405F;
}

.social-btn.linkedin:hover {
    color: #0077B5;
}

.social-btn.whatsapp:hover {
    color: #25D366;
}

/* Form Container */
.form-container {
    padding: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.required {
    color: #E74C3C;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-small);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 138, 62, 0.1);
}

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

.submit-btn {
    width: 100%;
    margin-top: 1rem;
    justify-content: center;
}

.form-message {
    padding: 1rem;
    border-radius: var(--radius-small);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.form-message i {
    font-size: 1.25rem;
}

/* Map Section */
.map-section {
    background: white;
}

.map-container {
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.map-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 8rem 2rem;
    text-align: center;
    color: white;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.map-placeholder p {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.map-placeholder span {
    font-size: 1rem;
    opacity: 0.9;
}

/* Quick Contact */
.quick-contact {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
}

.quick-contact-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: center;
}

.quick-contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-contact-icon i {
    font-size: 2rem;
}

.quick-contact-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.quick-contact-text p {
    opacity: 0.95;
    margin: 0;
}

.quick-contact-buttons {
    display: flex;
    gap: 1rem;
}

/* Responsive for Contact Page */
@media (max-width: 1024px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .quick-contact-icon {
        margin: 0 auto;
    }
    
    .quick-contact-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-info,
    .form-container {
        padding: 2rem;
    }
    
    .quick-contact-buttons {
        flex-direction: column;
    }
    
    .quick-contact-buttons .btn {
        width: 100%;
    }
}
/* Product Images */
.featured-img img,
.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-img {
  height: 260px; /* عدّل حسب تصميمك */
  border-radius: 16px;
  overflow: hidden;
}

.gallery-img {
  height: 160px; /* عدّل حسب تصميمك */
  border-radius: 14px;
  overflow: hidden;
}