/* ============================================
   SULI SARDAM - Premium Flour & Wheat Company
   Modern Corporate Website Styles
   ============================================ */

/* Rabar 038 Kurdish Font — loaded from local /assets/ if available.
   Falls back gracefully to Cairo / Vazirmatn when the file is missing. */
@font-face {
    font-family: 'Rabar 038';
    src: url('assets/Rabar_038.ttf') format('truetype'),
         url('assets/Rabar_038.woff2') format('woff2'),
         url('assets/Rabar_038.woff') format('woff');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0600-06FF, U+0750-077F, U+08A0-08FF, U+FB50-FDFF, U+FE70-FEFF;
}

/* CSS Variables */
:root {
    --color-primary: #C8954B;
    --color-primary-dark: #8B6F35;
    --color-primary-light: #D4A574;
    --color-secondary: #4A3520;
    --color-accent: #E8C285;
    --color-cream: #F8F4E8;
    --color-cream-light: #FDF9EE;
    --color-bg: #FFFFFF;
    --color-bg-soft: #FAF7F0;
    --color-text: #1A1A1A;
    --color-text-soft: #4A4A4A;
    --color-text-light: #8A8A8A;
    --color-border: #E8DFC9;
    --color-success: #4CAF50;
    --color-white: #FFFFFF;
    --color-dark: #1F1611;

    --gradient-primary: linear-gradient(135deg, #D4A574 0%, #8B6F35 100%);
    --gradient-gold: linear-gradient(135deg, #F4D88A 0%, #C8954B 50%, #8B6F35 100%);
    --gradient-cream: linear-gradient(135deg, #FDF9EE 0%, #F8F4E8 100%);
    --gradient-dark: linear-gradient(135deg, #4A3520 0%, #1F1611 100%);

    --shadow-sm: 0 2px 8px rgba(139, 111, 53, 0.08);
    --shadow-md: 0 8px 24px rgba(139, 111, 53, 0.12);
    --shadow-lg: 0 16px 48px rgba(139, 111, 53, 0.16);
    --shadow-xl: 0 24px 64px rgba(139, 111, 53, 0.2);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;

    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);

    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-en: 'Inter', sans-serif;
    --font-kurdish: 'Rabar 038', 'Vazirmatn', 'Cairo', sans-serif;

    --container-max: 1280px;
}

/* RTL / Kurdish / Arabic — override every font variable so EVERY element
   that uses var(--font-display) / var(--font-body) automatically gets the
   right Kurdish-friendly font. Cairo is the primary because it renders
   beautifully at large display sizes and at heavy weights, matching the
   clean look of the CTA section. */
html[lang="ckb"],
html[lang="ar"],
html[dir="rtl"] {
    --font-display: 'Rabar 038', 'Cairo', 'Vazirmatn', 'Tajawal', sans-serif;
    --font-body: 'Rabar 038', 'Cairo', 'Vazirmatn', 'Tajawal', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.ltr {
    direction: ltr;
    text-align: left;
}

/* Better line-height, letter-spacing & weight for Kurdish/Arabic display
   headings — heavy weights (800/900) on Arabic-script fonts can look chunky
   at very large sizes, so we ease them down to 700 for the hero/section
   titles which sit at 36-64px. This matches the cleaner look of the CTA. */
html[lang="ckb"] .hero-title,
html[lang="ar"] .hero-title,
html[lang="ckb"] .section-title,
html[lang="ar"] .section-title,
html[lang="ckb"] .cta-content h2,
html[lang="ar"] .cta-content h2,
html[lang="ckb"] .product-content h3,
html[lang="ar"] .product-content h3,
html[lang="ckb"] .service-card h3,
html[lang="ar"] .service-card h3 {
    letter-spacing: 0;
    line-height: 1.4;
    font-weight: 700;
}

html[lang="ckb"] .hero-title,
html[lang="ar"] .hero-title {
    font-size: clamp(32px, 4.4vw, 56px);
}

html[lang="ckb"] .logo-name,
html[lang="ar"] .logo-name {
    letter-spacing: 0;
}

/* Numeric stats (digits) — keep them in Playfair Display for visual punch
   even in Kurdish/Arabic mode, since they're just numbers */
html[lang="ckb"] .stat-num,
html[lang="ckb"] .stat-plus,
html[lang="ckb"] .big-stat-num,
html[lang="ckb"] .big-stat-suffix,
html[lang="ckb"] .small-stat-num,
html[lang="ckb"] .small-stat-suffix,
html[lang="ckb"] .why-number,
html[lang="ar"] .stat-num,
html[lang="ar"] .stat-plus,
html[lang="ar"] .big-stat-num,
html[lang="ar"] .big-stat-suffix,
html[lang="ar"] .small-stat-num,
html[lang="ar"] .small-stat-suffix,
html[lang="ar"] .why-number,
html[lang="ckb"] .trust-item,
html[lang="ar"] .trust-item {
    font-family: 'Playfair Display', serif;
}

img, svg {
    max-width: 100%;
    display: block;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Loader */
.loader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 24px;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.loader-logo span {
    display: inline-block;
    animation: bounce 1.4s infinite;
}

.loader-logo span:nth-child(2) {
    animation-delay: 0.2s;
}

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

.loader-bar {
    width: 200px;
    height: 3px;
    background: var(--color-cream);
    border-radius: 999px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-fill {
    height: 100%;
    background: var(--gradient-primary);
    animation: load 1.5s ease infinite;
    transform-origin: left;
}

@keyframes load {
    0% { transform: scaleX(0); }
    50% { transform: scaleX(1); }
    100% { transform: scaleX(0); transform-origin: right; }
}

/* Top Bar */
.top-bar {
    background: var(--color-dark);
    color: var(--color-cream);
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.top-bar-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.top-info-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
}

.top-info-item svg {
    color: var(--color-primary-light);
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn {
    color: var(--color-cream);
    font-size: 13px;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    font-family: var(--font-body);
}

.lang-btn:hover {
    color: var(--color-primary-light);
}

.lang-btn.active {
    color: var(--color-primary-light);
    font-weight: 700;
}

.lang-divider {
    color: rgba(232, 194, 133, 0.3);
}

/* Header */
.header {
    background: var(--color-bg);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.header.scrolled {
    padding: 12px 0;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: rotate(-10deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
}

.logo-tag {
    font-size: 12px;
    color: var(--color-text-light);
    font-weight: 500;
}

.logo-light .logo-name {
    background: linear-gradient(135deg, #F4D88A 0%, #C8954B 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.logo-light .logo-tag {
    color: var(--color-accent);
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 16px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text-soft);
    position: relative;
    transition: var(--transition-fast);
}

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

.nav-cta {
    background: var(--gradient-primary);
    color: var(--color-white) !important;
    padding: 12px 24px !important;
    border-radius: var(--radius-full);
    font-weight: 700;
    margin-inline-start: 8px;
    box-shadow: var(--shadow-md);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-primary) !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    font-family: inherit;
    border: 2px solid transparent;
    white-space: nowrap;
}

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

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

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

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

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

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

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

.btn-block {
    width: 100%;
}

[dir="rtl"] .btn svg {
    transform: scaleX(-1);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 120px);
    padding: 60px 0 80px;
    overflow: hidden;
    background: var(--gradient-cream);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(212, 165, 116, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(232, 194, 133, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(139, 111, 53, 0.15) 0%, transparent 50%);
}

.floating-wheat {
    position: absolute;
    background: var(--color-primary);
    opacity: 0.08;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 12s ease-in-out infinite;
}

.wheat-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -50px;
}

.wheat-2 {
    width: 400px;
    height: 400px;
    bottom: 0;
    right: -100px;
    animation-delay: -4s;
}

.wheat-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 30%;
    animation-delay: -8s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: slideInUp 0.8s ease both;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 165, 116, 0.15);
    color: var(--color-primary-dark);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 165, 116, 0.3);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-secondary);
    margin-bottom: 24px;
}

.hero-title-line {
    display: block;
}

.hero-title-highlight {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-text-soft);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-num,
.stat-plus {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    color: var(--color-primary-dark);
}

.stat-plus {
    margin-inline-start: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-soft);
    font-weight: 500;
    margin-top: 8px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: slideInUp 0.8s ease 0.2s both;
}

.hero-circle {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(139, 111, 53, 0.25));
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}

.floating-card {
    position: absolute;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.card-1 {
    top: 10%;
    left: -20px;
}

.card-2 {
    bottom: 15%;
    right: -20px;
    animation-delay: -2s;
}

.card-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-white);
    flex-shrink: 0;
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-text strong {
    font-size: 14px;
    color: var(--color-text);
    font-weight: 700;
}

.card-text small {
    font-size: 12px;
    color: var(--color-text-light);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
    font-size: 12px;
    color: var(--color-text-light);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--color-primary-dark);
    animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
    0% { top: -50%; }
    100% { top: 100%; }
}

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

/* Trust Bar */
.trust-bar {
    background: var(--color-bg);
    padding: 40px 0;
    border-bottom: 1px solid var(--color-border);
}

.trust-title {
    text-align: center;
    color: var(--color-text-light);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text-light);
    opacity: 0.6;
    transition: var(--transition-fast);
    letter-spacing: 2px;
}

.trust-item:hover {
    opacity: 1;
    color: var(--color-primary-dark);
    transform: scale(1.1);
}

/* Section Common */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 165, 116, 0.12);
    color: var(--color-primary-dark);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.section-title span {
    display: block;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-desc {
    font-size: 17px;
    color: var(--color-text-soft);
    line-height: 1.8;
    margin-bottom: 20px;
}

.section-desc-center {
    font-size: 17px;
    color: var(--color-text-soft);
    line-height: 1.7;
    text-align: center;
    margin: 0 auto;
    max-width: 700px;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-grid-reverse .section-visual {
    order: -1;
}

/* About Section */
.about {
    background: var(--color-bg);
}

.about-image-stack {
    position: relative;
    height: 500px;
}

.about-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.about-img:hover {
    transform: translateY(-10px) scale(1.02);
}

.about-img-1 {
    width: 75%;
    height: 100%;
    top: 0;
    left: 0;
}

.about-img-2 {
    width: 45%;
    height: 45%;
    bottom: -30px;
    right: -30px;
    background: var(--color-cream);
    z-index: 2;
}

[dir="rtl"] .about-img-1 {
    left: auto;
    right: 0;
}

[dir="rtl"] .about-img-2 {
    right: auto;
    left: -30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--gradient-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 14px;
    color: var(--color-text-soft);
    line-height: 1.5;
}

/* Products Section */
.products {
    background: var(--color-bg-soft);
    position: relative;
}

.products::before,
.products::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(60px);
}

.products::before {
    top: 10%;
    left: -100px;
}

.products::after {
    bottom: 10%;
    right: -100px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid transparent;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary-light);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

[dir="rtl"] .product-badge {
    right: auto;
    left: 20px;
}

.product-badge-gold {
    background: var(--gradient-gold);
}

.product-badge-new {
    background: #556B2F;
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--color-cream-light);
}

.product-image svg {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image svg {
    transform: scale(1.08);
}

.product-content {
    padding: 28px;
}

.product-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.product-content > p {
    font-size: 14px;
    color: var(--color-text-soft);
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-specs {
    border-top: 1px solid var(--color-border);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-specs li {
    font-size: 13px;
    color: var(--color-text-soft);
    display: flex;
    justify-content: space-between;
}

.product-specs li span:first-child {
    font-weight: 600;
    color: var(--color-primary-dark);
}

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

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

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover h3,
.service-card:hover p {
    color: var(--color-white);
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: var(--color-cream);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    transform: scale(1.1) rotate(-5deg);
}

.service-icon svg {
    width: 38px;
    height: 38px;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 12px;
    transition: var(--transition);
}

.service-card p {
    font-size: 14px;
    color: var(--color-text-soft);
    line-height: 1.6;
    transition: var(--transition);
}

/* Why Us Section */
.why-us {
    background: var(--color-bg-soft);
}

.why-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid transparent;
}

.why-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

[dir="rtl"] .why-item:hover {
    transform: translateX(-8px);
}

.why-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    flex-shrink: 0;
    min-width: 50px;
}

.why-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 6px;
}

.why-item p {
    font-size: 14px;
    color: var(--color-text-soft);
    line-height: 1.6;
}

.why-stats {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.big-stat {
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 32px;
    position: relative;
}

.big-stat-num {
    font-family: var(--font-display);
    font-size: 96px;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.big-stat-suffix {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--color-primary);
}

.big-stat-label {
    font-size: 16px;
    color: var(--color-text-soft);
    font-weight: 600;
    margin-top: 8px;
}

.big-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.big-stat-row:last-child {
    margin-bottom: 0;
}

.small-stat {
    padding: 20px;
    background: var(--color-cream-light);
    border-radius: var(--radius-md);
}

.small-stat-num,
.small-stat-suffix {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary-dark);
    line-height: 1;
}

.small-stat-label {
    display: block;
    font-size: 13px;
    color: var(--color-text-soft);
    font-weight: 600;
    margin-top: 6px;
}

/* CTA Section */
.cta {
    background: var(--color-bg);
    padding: 80px 0;
}

.cta-box {
    background: var(--gradient-dark);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    opacity: 0.15;
    border-radius: 50%;
    top: -200px;
    right: -100px;
    filter: blur(80px);
}

.cta-box::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--color-accent);
    opacity: 0.1;
    border-radius: 50%;
    bottom: -150px;
    left: -50px;
    filter: blur(60px);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 12px;
}

.cta-content p {
    color: var(--color-accent);
    font-size: 17px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    background: var(--color-bg-soft);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: flex-start;
}

.contact-grid-full {
    grid-template-columns: 1fr;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-info-full {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .contact-info-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .contact-info-full {
        grid-template-columns: 1fr;
    }
}

a.contact-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-card {
    background: var(--color-white);
    padding: 28px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
}

.contact-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: var(--color-text-soft);
    line-height: 1.6;
}

.contact-form {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 24px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    color: var(--color-text);
    background: var(--color-cream-light);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.1);
}

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

.form-success {
    margin-top: 16px;
    padding: 14px;
    background: rgba(76, 175, 80, 0.1);
    color: var(--color-success);
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-success.show {
    display: block;
    animation: slideInUp 0.4s ease;
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: var(--color-cream);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.15);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary-light);
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    color: rgba(248, 244, 232, 0.7);
    line-height: 1.7;
    margin: 20px 0;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-light);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(248, 244, 232, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary-light);
    padding-inline-start: 8px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(248, 244, 232, 0.7);
}

.footer-contact svg {
    color: var(--color-primary-light);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 14px;
    color: rgba(248, 244, 232, 0.5);
}

.footer-bottom strong {
    color: var(--color-primary-light);
    font-weight: 700;
}

.footer-tagline {
    color: var(--color-primary-light);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    inset-inline-end: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 90;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        max-width: 700px;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin-inline: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-stat {
        align-items: center;
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section-grid-reverse .section-visual {
        order: 0;
    }

    .products-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .about-image-stack {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    .top-bar {
        font-size: 12px;
    }

    .top-bar-info {
        gap: 12px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        inset-inline-end: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        padding: 80px 24px 24px;
        gap: 8px;
        align-items: stretch;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 95;
    }

    .nav-menu.active {
        inset-inline-end: 0;
    }

    .nav-link {
        text-align: center;
        padding: 14px;
    }

    .nav-cta {
        margin: 16px 0 0;
        text-align: center;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-scroll {
        display: none;
    }

    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr 1fr;
    }

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

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
        padding-bottom: 40px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .cta-box {
        padding: 40px 24px;
        flex-direction: column;
        text-align: center;
    }

    .floating-card {
        display: none;
    }

    .about-image-stack {
        height: 350px;
    }

    .big-stat-num {
        font-size: 72px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    section {
        padding: 60px 0;
    }

    .top-bar-content {
        justify-content: center;
    }

    .top-bar-info {
        justify-content: center;
        flex-direction: column;
        gap: 4px;
    }

    .language-switcher {
        margin: 0 auto;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-num,
    .stat-plus {
        font-size: 32px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .trust-logos {
        gap: 20px;
    }

    .trust-item {
        font-size: 16px;
    }

    .logo-name {
        font-size: 18px;
    }

    .logo-icon {
        width: 44px;
        height: 44px;
    }
}
