:root {
    --primary-color: #172A39;
    --secondary-color: #2D5F7C;
    --accent-color: #216E7A;
    --light-accent: #CDAF81;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --bg-primary: #ffffff;
    --bg-secondary: #F5F0E6;
    --bg-tertiary: #FAF7F2;
    --border-color: #CDAF81;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15), 0 6px 10px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2), 0 10px 20px rgba(0,0,0,0.1);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius: 8px;
    --border-radius-lg: 12px;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero { background: linear-gradient(135deg, #1a365d, #2c5282); padding: 6rem 0 3rem; text-align: center; position: relative; overflow: hidden; min-height: 50vh; display: flex; align-items: center; contain: layout; }

.hero.hero-home { padding: 10rem 0 5rem; min-height: 85vh; contain: layout; }

.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(rgba(26, 54, 93, 0.7), rgba(26, 54, 93, 0.8)); z-index: 1; }

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

.hero h1 { font-family: 'Playfair Display', Georgia, serif; font-size: 3.5rem; font-weight: 800; color: white; margin-bottom: 1.5rem; line-height: 1.1; }

.hero .subheadline { font-size: 1.3rem; color: rgba(255, 255, 255, 0.9); max-width: 700px; margin: 0 auto 2rem; line-height: 1.6; }

/* ===================================
   SERVICES GRID
   =================================== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 3rem; contain: layout; }

.service-card { background: white; padding: 2.5rem; border-radius: var(--border-radius-lg); box-shadow: var(--shadow-sm); text-align: center; transition: all var(--transition-fast); border: 2px solid #e3f2fd; position: relative; overflow: hidden; contain: layout; }

.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary-color), var(--accent-color)); transform: scaleX(0); transition: transform var(--transition-base); }

.service-card:hover { box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15); border-color: var(--light-accent); transform: translateY(-2px); }

.service-card:hover::before { transform: scaleX(1); }

.service-icon { font-size: 3.5rem; color: var(--accent-color); margin-bottom: 1.5rem; display: inline-block; transition: transform var(--transition-fast); width: 80px; height: 80px; flex-shrink: 0; }

.service-icon img { width: 60px; height: 60px; object-fit: contain; background: transparent; }

.service-card h3 { font-family: 'Playfair Display', Georgia, serif; color: var(--primary-color); margin-bottom: 1rem; font-size: 1.4rem; font-weight: 600; }

.service-card p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }

.service-card ul { list-style: none; padding: 0; margin: 1rem 0; text-align: left; }

.service-card ul li { padding: 0.5rem 0; border-bottom: 1px solid var(--border-color); color: var(--text-secondary); position: relative; padding-left: 1.5rem; line-height: 1.6; }

.service-card ul li::before { content: '•'; position: absolute; left: 0; color: var(--accent-color); font-weight: bold; }

.service-card ul li:last-child { border-bottom: none; }

/* ===================================
   SPECIAL SERVICE SECTION
   =================================== */
.special-service-section { background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #3182ce 100%); padding: 2rem 0; margin: 2rem 0; position: relative; overflow: hidden; }

.special-service-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="specialGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.05"/><circle cx="80" cy="80" r="1" fill="white" opacity="0.05"/><circle cx="50" cy="50" r="0.5" fill="white" opacity="0.03"/><circle cx="10" cy="90" r="0.5" fill="white" opacity="0.03"/><circle cx="90" cy="10" r="0.5" fill="white" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23specialGrain)"/></svg>'); z-index: 1; }

.special-service-card { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-radius: 20px; padding: 3rem; box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2); position: relative; z-index: 2; border: 1px solid rgba(255, 255, 255, 0.2); transition: all var(--transition-base); }

.special-service-card:hover { border-color: var(--light-accent); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25); transform: translateY(-5px); }

.special-service-header { display: flex; align-items: center; gap: 2rem; margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 2px solid rgba(49, 130, 206, 0.2); }

.special-service-icon { font-size: 4rem; background: linear-gradient(135deg, #3182ce, #2563eb); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; filter: drop-shadow(0 4px 8px rgba(49, 130, 206, 0.3)); }

.special-service-title h2 { font-family: 'Playfair Display', Georgia, serif; color: var(--primary-color); font-size: 2rem; margin-bottom: 0.5rem; font-weight: 700; }

.special-service-subtitle { color: var(--accent-color); font-size: 1rem; font-weight: 600; margin: 0; font-family: 'Inter', sans-serif; }

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

.special-service-description h3 { font-family: 'Playfair Display', Georgia, serif; color: var(--primary-color); font-size: 1.5rem; margin-bottom: 1rem; }

.special-service-description p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 2rem; }

.special-service-benefits h3 { font-family: 'Playfair Display', Georgia, serif; color: var(--primary-color); font-size: 1.8rem; margin-bottom: 1.5rem; }

.special-cta { text-align: center; }

.special-cta-button { background: var(--secondary-color); color: var(--bg-primary); padding: 1rem 2.5rem; border-radius: var(--border-radius); text-decoration: none; font-weight: 700; font-size: 1.1rem; transition: all var(--transition-fast); box-shadow: var(--shadow-md); position: relative; overflow: hidden; text-transform: uppercase; letter-spacing: 0.5px; border: 2px solid var(--secondary-color); display: inline-block; }

.special-cta-button:hover { transform: translateY(-3px); box-shadow: var(--shadow-xl); background: var(--light-accent); border-color: var(--light-accent); color: var(--bg-primary); }

/* ===================================
   GCC COUNTRIES SECTION
   =================================== */
.gcc-countries { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; margin-top: 3rem; }

.country { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); border: 1px solid #e5e7eb; transition: transform 0.3s ease, box-shadow 0.3s ease; }

.country:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12); }

.country h3 { display: flex; align-items: center; margin-bottom: 1rem; font-size: 1.5rem; color: #1e293b; }

.country h3 img { margin-right: 8px; vertical-align: middle; }

.country p { margin-bottom: 0.75rem; line-height: 1.6; color: var(--text-secondary); }

/* ===================================
   CTA BUTTON
   =================================== */
.cta-button { background: var(--secondary-color); color: white; padding: 1rem 2.5rem; border-radius: var(--border-radius); text-decoration: none; font-weight: 700; font-size: 1.1rem; transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease; box-shadow: var(--shadow-md); position: relative; overflow: hidden; text-transform: uppercase; letter-spacing: 0.5px; border: 2px solid var(--secondary-color); display: inline-block; }

.cta-button:hover { transform: translateY(-3px); box-shadow: var(--shadow-xl); background: var(--primary-color); border-color: var(--primary-color); color: var(--light-accent); }

/* ===================================
   LANGUAGE SELECTOR
   =================================== */
.lang-dropdown { min-width: 80px; height: 40px; }

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet and Mobile */
@media (max-width: 768px) { .hero h1 { font-size: 2rem; } .hero .subheadline { font-size: 1rem; } .services-grid { grid-template-columns: 1fr; } .gcc-countries { grid-template-columns: 1fr; gap: 1.5rem; } .country { padding: 1.5rem; } .country h3 { font-size: 1.25rem; } .country h3 img { width: 20px; height: 20px; } .special-service-section { padding: 2rem 0; margin: 2rem 0; } .special-service-card { padding: 2rem 1.5rem; } .special-service-header { flex-direction: column; text-align: center; gap: 1rem; margin-bottom: 2rem; } .special-service-title h2 { font-size: 2rem; } .special-service-content { grid-template-columns: 1fr; gap: 2rem; } }

/* Mobile Small */
@media (max-width: 480px) { .service-card { padding: 1.5rem; } .hero { padding: 5rem 0 2.5rem; min-height: 50vh; } .hero.hero-home { padding: 7rem 0 3rem; min-height: 60vh; } .gcc-countries { grid-template-columns: 1fr; gap: 1rem; } .country { padding: 1rem; } .country h3 { font-size: 1.1rem; flex-direction: column; align-items: flex-start; gap: 0.5rem; } .country h3 img { margin-right: 0; width: 18px; height: 18px; } .special-service-card { padding: 1.5rem 1rem; } .special-service-title h2 { font-size: 1.75rem; } .special-service-subtitle { font-size: 1rem; } }

/* ===================================
   RTL SUPPORT
   =================================== */
[dir="rtl"] .country h3 { flex-direction: row-reverse; } [dir="rtl"] .country h3 img { margin-right: 0; margin-left: 8px; } [dir="rtl"] .gcc-countries { direction: ltr; } [dir="rtl"] .country { direction: ltr; text-align: right; }
