/* =========================================
   MINDFULNESS MOROCCO - Main Stylesheet
   Moroccan Blue Theme
   ========================================= */

/* CSS Variables */
:root {
    --color-sand: #F5F1EB;
    --color-blue: #1E5F74;
    --color-blue-light: #2A7A8A;
    --color-blue-dark: #164857;
    --color-teal: #2A6B6B;
    --color-terracotta: #C4734F;
    --color-terracotta-light: #D4896A;
    --color-charcoal: #2D2D2D;
    --color-cream: #FDFCFA;
    --color-stone: #A69F95;
    --color-gold: #C9A227;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* =========================================
   MOROCCAN PATTERNS & DECORATIVE ELEMENTS
   ========================================= */

/* Moroccan Star Pattern - SVG Background */
.moroccan-pattern {
    position: absolute;
    pointer-events: none;
    opacity: 0.04;
}

.moroccan-pattern-light {
    opacity: 0.06;
}

/* Geometric Divider */
.moroccan-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 4rem auto;
    max-width: 400px;
    padding: 0 2rem;
}

.moroccan-divider::before,
.moroccan-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-blue), transparent);
}

.moroccan-divider .divider-icon {
    width: 28px;
    height: 28px;
    position: relative;
    flex-shrink: 0;
}

.moroccan-divider .divider-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 2px solid var(--color-blue);
    transform: rotate(45deg);
    box-sizing: border-box;
}

.moroccan-divider .divider-icon::after {
    content: '';
    position: absolute;
    width: 55%;
    height: 55%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    border: 2px solid var(--color-terracotta);
    box-sizing: border-box;
}

/* Section with pattern background */
.section-with-pattern {
    position: relative;
    overflow: hidden;
}

.section-with-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 500px;
    height: 500px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 0L61.8 38.2L100 50L61.8 61.8L50 100L38.2 61.8L0 50L38.2 38.2Z' fill='none' stroke='%231E5F74' stroke-width='0.8'/%3E%3Cpath d='M50 15L58.5 41.5L85 50L58.5 58.5L50 85L41.5 58.5L15 50L41.5 41.5Z' fill='none' stroke='%23C4734F' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    opacity: 0.12;
    pointer-events: none;
}

/* Pattern for dark backgrounds (CTA section) */
.cta.section-with-pattern::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 0L61.8 38.2L100 50L61.8 61.8L50 100L38.2 61.8L0 50L38.2 38.2Z' fill='none' stroke='%23ffffff' stroke-width='0.8'/%3E%3Cpath d='M50 15L58.5 41.5L85 50L58.5 58.5L50 85L41.5 58.5L15 50L41.5 41.5Z' fill='none' stroke='%23C4734F' stroke-width='0.5'/%3E%3C/svg%3E");
    opacity: 0.06;
    right: auto;
    left: -100px;
}

/* Decorative corner accent */
.corner-accent {
    position: relative;
}

.corner-accent::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 40px;
    height: 40px;
    border-top: 2px solid var(--color-terracotta);
    border-left: 2px solid var(--color-terracotta);
    opacity: 0.6;
}

/* Card with Moroccan accent */
.moroccan-card {
    position: relative;
}

.moroccan-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--color-terracotta) 0%, 
        var(--color-terracotta) 20%,
        transparent 20%,
        transparent 25%,
        var(--color-blue) 25%,
        var(--color-blue) 45%,
        transparent 45%,
        transparent 50%,
        var(--color-terracotta) 50%,
        var(--color-terracotta) 70%,
        transparent 70%,
        transparent 75%,
        var(--color-blue) 75%,
        var(--color-blue) 95%,
        transparent 95%
    );
}

/* Hero pattern overlay */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 0L37 23L60 30L37 37L30 60L23 37L0 30L23 23Z' fill='none' stroke='%231E5F74' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    opacity: 0.08;
    pointer-events: none;
}

/* Zellige-inspired border */
.zellige-border {
    border: 1px solid rgba(30, 95, 116, 0.2);
    position: relative;
}

.zellige-border::before,
.zellige-border::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border: 1px solid var(--color-terracotta);
    transform: rotate(45deg);
}

.zellige-border::before {
    top: -5px;
    left: 20px;
    background: var(--color-cream);
}

.zellige-border::after {
    bottom: -5px;
    right: 20px;
    background: var(--color-cream);
}

/* Animated star accent (subtle) */
@keyframes starPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
}

.star-accent {
    position: absolute;
    width: 30px;
    height: 30px;
    animation: starPulse 4s ease-in-out infinite;
}

.star-accent svg {
    width: 100%;
    height: 100%;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-cream);
    color: var(--color-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(253, 252, 250, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(30, 95, 116, 0.1);
    animation: slideDown 0.8s ease-out;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-charcoal);
    letter-spacing: 0.03em;
}

.logo-text span {
    color: var(--color-blue);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-blue);
}

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

.nav-cta {
    background: var(--color-charcoal);
    color: var(--color-cream);
    padding: 0.75rem 1.75rem;
    border: none;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--color-blue);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-charcoal);
    transition: all 0.3s ease;
}

/* Mobile-only items (hidden on desktop) */
.mobile-only {
    display: none;
}

.mobile-cta {
    background: var(--color-charcoal);
    color: var(--color-cream) !important;
    padding: 0.75rem 1.5rem;
    text-align: center;
    margin-top: 0.5rem;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
    display: inline-block;
    background: var(--color-charcoal);
    color: var(--color-cream);
    padding: 1rem 2rem;
    border: none;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--color-blue);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--color-charcoal);
    padding: 1rem 2rem;
    border: 1px solid var(--color-charcoal);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--color-charcoal);
    color: var(--color-cream);
}

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

.btn-blue:hover {
    background: var(--color-terracotta);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    background: var(--color-cream);
    position: relative;
    z-index: 1;
}

.hero-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-blue);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-title em {
    font-style: italic;
    color: var(--color-terracotta);
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--color-stone);
    max-width: 480px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-visual {
    background: var(--color-sand);
    position: relative;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L80 40L40 80L0 40L40 0z' fill='none' stroke='%231E5F74' stroke-width='0.5' opacity='0.15'/%3E%3Cpath d='M40 15L65 40L40 65L15 40L40 15z' fill='none' stroke='%231E5F74' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
    opacity: 0.8;
    z-index: 1;
}

.hero-image-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 95, 116, 0.1) 0%, rgba(196, 115, 79, 0.05) 100%);
    pointer-events: none;
    z-index: 2;
}

/* =========================================
   PAGE HEADERS
   ========================================= */
.page-header {
    padding: 10rem 4rem 4rem;
    background: var(--color-sand);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L80 40L40 80L0 40L40 0z' fill='none' stroke='%231E5F74' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.page-header .section-tag {
    color: var(--color-blue);
}

.page-header .section-title {
    margin-bottom: 1rem;
}

.page-header .section-subtitle {
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   SECTION STYLES
   ========================================= */
.section {
    padding: 6rem 4rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-blue);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 400;
    margin-bottom: 1.25rem;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-stone);
}

/* =========================================
   STATS SECTION
   ========================================= */
.stats {
    background: var(--color-charcoal);
    padding: 5rem 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    color: var(--color-cream);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-blue-light);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

/* =========================================
   SERVICES
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.service-card {
    background: var(--color-sand);
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--color-terracotta);
    transition: height 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
    height: 100%;
}

.service-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: rgba(30, 95, 116, 0.2);
    margin-bottom: 1.5rem;
}

.service-meta {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    min-height: 1.75rem;
}

.service-badge {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    background: var(--color-blue);
    color: var(--color-cream);
    border-radius: 2px;
}

.service-badge.online {
    background: var(--color-teal);
}

.service-badge.onsite {
    background: var(--color-terracotta);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    min-height: 4.5rem;
}

.service-description {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--color-stone);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    min-height: 10rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    min-height: 10rem;
}

.service-features li {
    font-size: 0.875rem;
    color: var(--color-charcoal);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(30, 95, 116, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: '→';
    color: var(--color-blue);
}

.service-card .btn-primary,
.service-card .service-link {
    margin-top: auto;
    align-self: flex-start;
}

.service-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-charcoal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--color-terracotta);
}

/* Service Detail Cards (for services page) */
.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    padding: 3rem;
    background: white;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.service-detail-card:nth-child(even) {
    grid-template-columns: 1.5fr 1fr;
}

.service-detail-card:nth-child(even) .service-detail-image {
    order: 2;
}

.service-detail-image {
    background: var(--color-sand);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.service-detail-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content .service-title {
    font-size: 2rem;
}

/* =========================================
   ROI / RESULTS SECTION
   ========================================= */
.roi {
    background: var(--color-blue);
    padding: 8rem 4rem;
    position: relative;
    overflow: hidden;
}

.roi::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.roi::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30L30 0z' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.roi-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.roi-text {
    color: var(--color-cream);
}

.roi-text .section-tag {
    color: rgba(255, 255, 255, 0.7);
}

.roi-text .section-title {
    color: var(--color-cream);
    margin-bottom: 1.5rem;
}

.roi-text p {
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.roi-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.roi-metric {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.roi-metric-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-cream);
    margin-bottom: 0.5rem;
}

.roi-metric-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* =========================================
   BENEFITS SECTION
   ========================================= */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

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

.benefit-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-blue);
}

.benefit-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-text {
    font-size: 0.875rem;
    color: var(--color-stone);
    font-weight: 300;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--color-sand);
    padding: 2.5rem;
    position: relative;
}

.testimonial-card.featured {
    grid-column: span 2;
    background: var(--color-charcoal);
    color: var(--color-cream);
}

.testimonial-card.arabic {
    grid-column: span 2;
    background: var(--color-blue);
    color: var(--color-cream);
}

.testimonial-card.arabic .testimonial-info p {
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-card.arabic .testimonial-avatar {
    background: var(--color-terracotta);
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured .testimonial-quote {
    font-size: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--color-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-cream);
}

.featured .testimonial-avatar {
    background: var(--color-terracotta);
}

.testimonial-info h4 {
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    font-size: 0.8125rem;
    color: var(--color-stone);
    font-weight: 300;
}

.featured .testimonial-info p {
    color: rgba(255, 255, 255, 0.6);
}

/* =========================================
   CREDIBILITY / LOGOS
   ========================================= */
.credibility {
    padding: 5rem 4rem;
    background: var(--color-sand);
}

.credibility-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.credibility-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-stone);
    margin-bottom: 2rem;
}

.credibility-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

.credibility-logo {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-charcoal);
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    background: var(--color-sand);
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-text .section-tag,
.about-text .section-title {
    text-align: left;
}

.about-text .section-title {
    margin-bottom: 1.5rem;
}

.about-text p {
    font-weight: 300;
    color: var(--color-stone);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-credentials {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(30, 95, 116, 0.2);
    flex-wrap: wrap;
}

.credential {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.credential-icon {
    width: 40px;
    height: 40px;
    background: var(--color-sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--color-blue);
}

.credential-text {
    font-size: 0.8125rem;
    font-weight: 400;
}

/* About Page Extended */
.about-story {
    max-width: 800px;
    margin: 0 auto;
}

.about-story p {
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--color-charcoal);
}

.about-story p:first-of-type {
    text-indent: 0;
}

/* ===== Testimonial Hover Translation ===== */
.testimonial-hover {
    position: relative;
    cursor: pointer;
    transition: opacity 0.25s ease, background 0.3s ease;
    padding: 0.5rem;
    margin: -0.5rem;
    border-radius: 6px;
}

.testimonial-hover:hover {
    background: rgba(30, 95, 116, 0.06);
}

.testimonial-hover.testimonial-transitioning {
    opacity: 0.3;
}

.testimonial-hover::after {
    content: attr(data-lang-label);
    position: absolute;
    top: -1.8rem;
    right: 0;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    background: var(--color-blue);
    color: white;
    border-radius: 3px;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.25s ease;
    pointer-events: none;
    font-family: var(--font-body);
    white-space: nowrap;
    z-index: 10;
}

.testimonial-hover.testimonial-hover-active::after {
    opacity: 1;
    transform: translateY(0);
}

/* Hint icon for testimonials */
.testimonial-hover::before {
    content: '🌐';
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.4;
    transition: opacity 0.2s ease;
}

.testimonial-hover:hover::before {
    opacity: 0.7;
}

/* ===== Language Switcher ===== */
.lang-switcher {
    display: flex;
    gap: 0.25rem;
    margin-right: 1.5rem;
    padding: 0.25rem;
    background: rgba(30, 95, 116, 0.08);
    border-radius: 6px;
}

.lang-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-stone);
    background: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-body);
}

.lang-btn:hover {
    color: var(--color-blue);
    background: rgba(30, 95, 116, 0.1);
}

.lang-btn.active {
    color: white;
    background: var(--color-blue);
}

/* RTL Mode Styles */
.rtl-mode {
    direction: rtl;
}

.rtl-text {
    direction: rtl;
    text-align: right;
    font-family: 'Noto Sans Arabic', var(--font-body), sans-serif;
}

.rtl-mode .nav {
    flex-direction: row-reverse;
}

.rtl-mode .nav-links {
    flex-direction: row-reverse;
}

.rtl-mode .logo {
    flex-direction: row-reverse;
}

.rtl-mode .hero-content {
    text-align: right;
}

.rtl-mode .hero-cta-group {
    justify-content: flex-end;
}

.rtl-mode .section-header {
    text-align: right;
}

.rtl-mode .service-card {
    text-align: right;
}

.rtl-mode .testimonial-card {
    text-align: right;
}

.rtl-mode .about-text {
    text-align: right;
}

.rtl-mode .footer-column {
    text-align: right;
}

.rtl-mode .footer-brand {
    text-align: right;
}

.rtl-mode .contact-info {
    text-align: right;
}

.rtl-mode .roi-text {
    text-align: right;
}

.rtl-mode .credential {
    flex-direction: row-reverse;
}

.rtl-mode .testimonial-author {
    flex-direction: row-reverse;
}

.rtl-mode .testimonial-info {
    text-align: right;
}

.rtl-mode .contact-method {
    flex-direction: row-reverse;
}

.rtl-mode .contact-method-info {
    text-align: right;
}

.rtl-mode .service-features li::before {
    content: '←';
    margin-left: 0.5rem;
    margin-right: 0;
}

.rtl-mode .about-content {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .lang-switcher {
        margin-right: 1rem;
    }
    
    .lang-btn {
        padding: 0.35rem 0.5rem;
        font-size: 0.65rem;
    }
    
    .rtl-mode .about-content {
        flex-direction: column;
    }
}

.drop-cap-wrapper {
    float: left;
    display: flex;
    align-items: flex-end;
    margin-right: 0.2rem;
    margin-top: 0.2rem;
}

.drop-cap-letter {
    font-family: var(--font-body);
    font-size: 3.5rem;
    color: var(--color-blue);
    font-weight: 400;
    line-height: 0.75;
}

.drop-cap-rest {
    font-size: 1.125rem;
    line-height: 1;
    margin-bottom: 0.1rem;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta {
    background: var(--color-charcoal);
    padding: 8rem 4rem;
    text-align: center;
}

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

.cta .section-tag {
    color: var(--color-blue-light);
}

.cta .section-title {
    color: var(--color-cream);
    margin-bottom: 1.5rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.cta .btn-primary {
    background: var(--color-blue);
    padding: 1.25rem 3rem;
    font-size: 1rem;
}

.cta .btn-primary:hover {
    background: var(--color-terracotta);
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-weight: 300;
    color: var(--color-stone);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-sand);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(5px);
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    background: var(--color-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-cream);
}

.contact-method-info h4 {
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-method-info p {
    font-size: 0.875rem;
    color: var(--color-stone);
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(30, 95, 116, 0.2);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition: border-color 0.3s ease;
    background: var(--color-cream);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-blue);
}

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

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

.form-success {
    text-align: center;
    padding: 3rem 2rem;
    background: #e8f5e9;
    border-radius: 8px;
    margin-top: 1rem;
}

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

.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--color-stone);
    font-weight: 300;
}

/* =========================================
   BLOG PAGE
   ========================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: var(--color-cream);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
    background: var(--color-sand);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-sand) 0%, rgba(30, 95, 116, 0.1) 100%);
}

.blog-card-placeholder svg {
    width: 60px;
    height: 60px;
    stroke: var(--color-blue);
    opacity: 0.3;
}

.blog-card-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    background: rgba(196, 115, 79, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--color-stone);
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--color-stone);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-read-more {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-blue);
    transition: color 0.3s ease;
    align-self: flex-start;
}

.blog-read-more:hover {
    color: var(--color-terracotta);
}

/* Newsletter CTA */
.newsletter-cta {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-cta .moroccan-divider,
.blog-cta .moroccan-divider {
    width: 100%;
    max-width: 300px;
}

.newsletter-cta .section-title {
    margin-bottom: 1rem;
}

.newsletter-cta p {
    color: var(--color-stone);
    font-weight: 300;
    margin-bottom: 2rem;
}

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

/* Blog Post Page */
.blog-post-header {
    padding: 10rem 4rem 4rem;
    background: var(--color-sand);
    position: relative;
    overflow: hidden;
}

.blog-post-header-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.back-to-blog {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--color-blue);
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-to-blog:hover {
    color: var(--color-terracotta);
}

.blog-post-header .blog-post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.blog-post-title {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 500;
    color: var(--color-charcoal);
    line-height: 1.2;
}

/* Blog Featured Image */
.blog-featured-image {
    max-width: 900px;
    margin: -2rem auto 0;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.blog-post-content {
    padding: 4rem 2rem;
    background: white;
}

.blog-post-body {
    max-width: 750px;
    margin: 0 auto;
}

.blog-post-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.blog-post-body h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin: 3rem 0 1.5rem;
}

.blog-post-body h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin: 2rem 0 1rem;
}

.blog-post-body strong {
    font-weight: 600;
    color: var(--color-charcoal);
}

.blog-post-body blockquote {
    border-left: 3px solid var(--color-terracotta);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--color-stone);
}

/* Darija Examples Styling */
.darija-examples {
    background: var(--color-sand);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.darija-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(30, 95, 116, 0.1);
}

.darija-item:last-child {
    border-bottom: none;
}

.darija-text {
    font-size: 1.25rem;
    color: var(--color-blue);
    font-weight: 500;
    direction: rtl;
    text-align: right;
}

.darija-translation {
    font-size: 0.95rem;
    color: var(--color-stone);
    font-style: italic;
}

/* Blog Tags */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(30, 95, 116, 0.1);
}

.blog-references {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(30, 95, 116, 0.1);
}

.blog-references h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-blue);
    margin-bottom: 1rem;
}

.blog-references ol {
    padding-left: 1.5rem;
    font-size: 0.85rem;
    color: var(--color-stone);
    line-height: 1.8;
}

.blog-references li {
    margin-bottom: 0.75rem;
}

.blog-references a {
    color: var(--color-blue);
    word-break: break-all;
}

.blog-references a:hover {
    color: var(--color-terracotta);
}

/* Blog list styling */
.blog-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.blog-list li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--color-stone);
}

.blog-list li strong {
    color: var(--color-blue);
}

/* Inline citation styling */
.citation {
    font-size: 0.65em;
    vertical-align: super;
    line-height: 0;
    color: var(--color-blue);
    text-decoration: none;
    font-weight: 500;
    padding: 0 1px;
}

.citation:hover {
    color: var(--color-terracotta);
    text-decoration: underline;
}

/* Back to text link from references */
.ref-back {
    font-size: 0.85em;
    color: var(--color-stone);
    text-decoration: none;
    margin-left: 0.25rem;
}

.ref-back:hover {
    color: var(--color-blue);
}

.blog-tag {
    font-size: 0.8rem;
    color: var(--color-blue);
    background: rgba(30, 95, 116, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* Author Section */
.blog-author-section {
    background: white;
    padding: 0 2rem 4rem;
}

.blog-author {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: var(--color-sand);
    border-radius: 8px;
}

.blog-author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-author-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.blog-author-info p {
    font-size: 0.95rem;
    color: var(--color-stone);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.blog-author-link {
    font-size: 0.875rem;
    color: var(--color-blue);
    font-weight: 500;
}

.blog-author-link:hover {
    color: var(--color-terracotta);
}

/* Blog CTA */
.blog-cta {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.blog-cta .section-title {
    margin-bottom: 1rem;
}

.blog-cta p {
    color: var(--color-stone);
    font-weight: 300;
    margin-bottom: 2rem;
}

/* Blog responsive */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-buttons .btn-primary,
    .newsletter-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    /* Blog Post Page Mobile */
    .blog-post-header {
        padding: 8rem 1.5rem 3rem;
    }
    
    .blog-post-title {
        font-size: 1.75rem;
    }
    
    .blog-featured-image {
        margin-top: -1rem;
        padding: 0 1.5rem;
    }
    
    .blog-post-content {
        padding: 2rem 1.5rem;
    }
    
    .blog-post-body p {
        font-size: 1rem;
    }
    
    .blog-post-body h2 {
        font-size: 1.4rem;
    }
    
    .darija-examples {
        padding: 1.5rem;
    }
    
    .darija-text {
        font-size: 1.1rem;
    }
    
    .blog-author {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-author-section {
        padding: 0 1.5rem 3rem;
    }
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--color-charcoal);
    padding: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    font-size: 0.9375rem;
    margin-top: 1rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-cream);
}

.footer-logo-text span {
    color: var(--color-blue-light);
}

.footer-column h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-cream);
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column ul a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-column ul a:hover {
    color: var(--color-cream);
}

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

.footer-copy {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8125rem;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-blue);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-cream);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .hero-content {
        padding: 6rem 2rem;
    }

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

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

    .roi-content,
    .about-content {
        grid-template-columns: 1fr;
    }

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

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

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

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

    .service-detail-card,
    .service-detail-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .service-detail-card:nth-child(even) .service-detail-image {
        order: 0;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem 1.5rem;
        gap: 0.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-cream);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(30, 95, 116, 0.1);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }
    
    .nav-cta {
        display: none;
    }
    
    .lang-switcher {
        order: 2;
        margin-right: 0;
    }
    
    .mobile-only {
        display: block;
    }
    
    .logo svg {
        width: 35px;
        height: 35px;
    }
    
    .logo-text {
        font-size: 1rem;
    }

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

    .hero-content {
        padding: 4rem 1.5rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .testimonial-card.featured,
    .testimonial-card.arabic {
        grid-column: span 1;
    }

    .credibility-logos {
        gap: 2rem;
    }

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

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .hero-cta-group {
        flex-direction: column;
    }

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

    .roi-metrics {
        grid-template-columns: 1fr;
    }
    
    /* Service cards - remove min-heights on mobile for natural flow */
    .service-title {
        min-height: auto;
    }
    
    .service-description {
        min-height: auto;
    }
    
    .service-features {
        min-height: auto;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-number {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    /* Override inline grid styles on mobile */
    .services-grid[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Contact form improvements */
    .contact-form {
        padding: 1.5rem;
    }
    
    /* CTA section mobile */
    .cta {
        padding: 4rem 1.5rem;
    }
    
    /* Language switcher mobile */
    .lang-switcher {
        margin-right: 0.5rem;
    }
    
    .lang-btn {
        padding: 0.3rem 0.45rem;
        font-size: 0.6rem;
    }
}
