/* TravelRhythm - Complete Stylesheet - GCC Unified Design */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root { 
    /* Primary - Rich Gold (Saudi gold meets UAE luxury) */
    --gold: #C9A961; 
    --dark-gold: #A68B4A; 
    --bronze: #8B7355; 
    
    /* Secondary - Deep Teal (Oil & Gas + UAE modernity) */
    --deep-green: #0D4D4D; 
    --deep-teal: #0D4D4D; 
    --forest: #1A6B6B; 
    --teal: #1A6B6B; 
    --sage: #4A7C7C; 
    
    /* Neutrals - Desert meets Modern */
    --cream: #F5F1E8; 
    --sand: #F5F1E8; 
    --warm-white: #FAFAF7; 
    --white: #FAFAF7; 
    --dark: #2C2C2C; 
    --charcoal: #2C2C2C; 
    --shadow: rgba(13, 77, 77, 0.15); 
}
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; color: var(--dark); line-height: 1.7; background: var(--white); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 60px; }
nav { position: fixed; top: 0; width: 100%; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); padding: 20px 0; box-shadow: 0 2px 30px rgba(0,0,0,0.08); z-index: 1000; transition: all 0.3s ease; }
nav.scrolled { padding: 15px 0; box-shadow: 0 2px 40px rgba(0,0,0,0.12); }
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 32px; font-weight: 700; color: var(--deep-teal); letter-spacing: 3px; font-family: 'Playfair Display', serif; text-decoration: none; }
.logo span { color: var(--gold); font-weight: 400; }
.nav-links { display: flex; gap: 35px; list-style: none; align-items: center; }
.nav-links a { color: var(--dark); text-decoration: none; font-size: 15px; font-weight: 500; transition: all 0.3s; position: relative; letter-spacing: 0.5px; }
.nav-links a.active { color: var(--gold); font-weight: 600; }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active::after { width: 100%; }
.nav-cta.active { background: var(--dark-gold); }
.nav-cta { background: var(--gold); color: var(--dark); padding: 12px 30px; border-radius: 50px; font-weight: 600; transition: all 0.3s; }
.nav-cta:hover { background: var(--dark-gold); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3); }
.nav-cta:hover::after { width: 0; }
.language-switcher { position: relative; }
.lang-btn { cursor: pointer; }
.lang-dropdown { display: none; position: absolute; top: 100%; right: 0; background: var(--white); box-shadow: 0 8px 30px rgba(0,0,0,0.15); border-radius: 8px; padding: 10px 0; min-width: 150px; margin-top: 10px; }
.lang-dropdown.show { display: block; }
.lang-dropdown li { list-style: none; }
.lang-dropdown a { display: block; padding: 10px 20px; color: var(--dark); text-decoration: none; transition: all 0.3s; }
.lang-dropdown a:hover { background: var(--cream); color: var(--gold); }
.lang-dropdown a::after { display: none; }

/* Hero Sections */
.hero { position: relative; height: 100vh; display: flex; align-items: center; overflow: hidden; margin-top: 80px; }
.page-hero { position: relative; height: 60vh; display: flex; align-items: center; overflow: hidden; margin-top: 80px; }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(13, 77, 77, 0.92) 0%, rgba(26, 107, 107, 0.88) 50%, rgba(201, 169, 97, 0.15) 100%); z-index: 1; }
.hero-content, .page-hero-content { position: relative; z-index: 2; color: var(--white); max-width: 900px; animation: fadeInUp 1s ease; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.hero-badge { display: inline-block; background: rgba(212, 175, 55, 0.2); border: 1px solid var(--gold); color: var(--gold); padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; letter-spacing: 1px; margin-bottom: 30px; text-transform: uppercase; }
.hero h1, .page-hero-content h1 { font-size: 72px; line-height: 1.2; margin-bottom: 30px; font-weight: 700; text-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.page-hero-content h1 { font-size: 56px; }
.hero h1 .highlight { color: var(--gold); display: block; font-weight: 400; font-style: italic; }
.hero p, .page-hero-content p { font-size: 22px; margin-bottom: 40px; line-height: 1.8; opacity: 0.95; font-weight: 300; }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }
.btn-primary { display: inline-block; background: var(--gold); color: var(--dark); padding: 18px 45px; text-decoration: none; font-size: 16px; font-weight: 600; border-radius: 50px; transition: all 0.4s; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3); border: none; cursor: pointer; }
.btn-primary:hover { background: var(--dark-gold); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4); }
.btn-secondary { display: inline-block; background: transparent; color: var(--white); padding: 18px 45px; text-decoration: none; font-size: 16px; font-weight: 600; border-radius: 50px; border: 2px solid var(--white); transition: all 0.4s; text-transform: uppercase; letter-spacing: 1px; }
.btn-secondary:hover { background: var(--white); color: var(--deep-teal); transform: translateY(-3px); }
.btn-block { width: 100%; text-align: center; }
.btn-large { padding: 20px 50px; font-size: 18px; }

/* Trust Banner */
.trust-banner { 
    background: linear-gradient(90deg, var(--deep-teal) 0%, var(--teal) 100%); 
    color: var(--white); 
    padding: 40px 0; 
    text-align: center; 
    position: relative;
    z-index: 10;
}
.trust-banner-content { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 60px; 
    flex-wrap: wrap; 
    padding: 20px 0;
}
.trust-item { display: flex; align-items: center; gap: 15px; }
.trust-icon { font-size: 32px; color: var(--gold); }
.trust-text h4 { font-size: 28px; font-weight: 700; color: var(--gold); margin-bottom: 5px; }
.trust-text p { font-size: 14px; opacity: 0.9; font-weight: 300; }

/* Services Section */
.services { padding: 120px 0; background: var(--cream); position: relative; }
.section-header { text-align: center; max-width: 800px; margin: 0 auto 80px; }
.section-label { color: var(--gold); font-size: 14px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; }
.section-title { font-size: 56px; color: var(--deep-teal); margin-bottom: 25px; font-weight: 700; line-height: 1.2; }
.section-description { font-size: 19px; color: var(--dark); opacity: 0.8; line-height: 1.8; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.service-card { background: var(--white); padding: 50px 40px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--gold), var(--dark-gold)); transform: scaleX(0); transition: transform 0.4s; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.service-icon { font-size: 56px; margin-bottom: 30px; display: inline-block; transition: transform 0.4s; }
.service-card:hover .service-icon { transform: scale(1.1); }
.service-card h3 { font-size: 28px; color: var(--deep-teal); margin-bottom: 20px; font-weight: 600; }
.service-card p { font-size: 16px; line-height: 1.8; color: var(--dark); opacity: 0.8; }

/* Video Showcase */
.video-showcase { padding: 120px 0; background: var(--white); }
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.showcase-grid:nth-child(even) { direction: rtl; }
.showcase-grid:nth-child(even) > * { direction: ltr; }
.showcase-video { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.15); position: relative; }
.showcase-video video { width: 100%; height: auto; display: block; }
.showcase-content h3 { font-size: 42px; color: var(--deep-teal); margin-bottom: 25px; font-weight: 700; }
.showcase-content p { font-size: 18px; line-height: 1.9; color: var(--dark); opacity: 0.85; margin-bottom: 20px; }
.showcase-features { list-style: none; margin-top: 30px; }
.showcase-features li { padding: 15px 0; font-size: 17px; display: flex; align-items: center; color: var(--dark); }
.showcase-features li::before { content: '✓'; color: var(--gold); font-weight: bold; font-size: 24px; margin-right: 15px; flex-shrink: 0; }

/* Stats Section */
.stats { padding: 100px 0; background: linear-gradient(135deg, var(--deep-teal) 0%, var(--teal) 100%); color: var(--white); position: relative; overflow: hidden; }
.stats::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(212,175,55,0.05)"/></svg>'); background-size: 200px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 60px; position: relative; z-index: 1; }
.stat-item { text-align: center; }
.stat-number { font-size: 64px; font-weight: 700; color: var(--gold); margin-bottom: 15px; font-family: 'Playfair Display', serif; }
.stat-label { font-size: 16px; opacity: 0.9; font-weight: 300; letter-spacing: 0.5px; }

/* Partnership Section */
.partnership { padding: 120px 0; background: var(--cream); }
.partnership-content { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.partnership-text h2 { font-size: 52px; color: var(--deep-teal); margin-bottom: 30px; font-weight: 700; line-height: 1.2; }
.partnership-text .highlight-text { color: var(--gold); font-style: italic; }
.partnership-text p { font-size: 19px; line-height: 1.9; margin-bottom: 25px; color: var(--dark); opacity: 0.85; }
.partnership-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 40px; }
.feature-box { background: var(--white); padding: 30px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.06); transition: all 0.3s; }
.feature-box:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.feature-box h4 { font-size: 20px; color: var(--deep-teal); margin-bottom: 10px; font-weight: 600; }
.feature-box p { font-size: 15px; margin: 0; opacity: 0.8; }
.partnership-badges { display: flex; flex-direction: column; gap: 30px; }
.badge-card { background: var(--white); padding: 40px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); text-align: center; border: 2px solid var(--gold); }
.badge-icon { font-size: 48px; margin-bottom: 20px; }
.badge-card h4 { font-size: 24px; color: var(--deep-teal); margin-bottom: 10px; font-weight: 600; }
.badge-card p { font-size: 16px; color: var(--dark); opacity: 0.8; margin: 0; }

/* CTA Section */
.cta-section { padding: 120px 0; background: linear-gradient(135deg, var(--deep-teal) 0%, var(--teal) 50%, var(--sage) 100%); color: var(--white); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%); border-radius: 50%; }
.cta-content { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.cta-content h2 { font-size: 56px; margin-bottom: 30px; font-weight: 700; line-height: 1.2; }
.cta-content p { font-size: 22px; margin-bottom: 50px; opacity: 0.95; line-height: 1.8; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; margin-top: 80px; }
.contact-info-item { text-align: center; }
.contact-info-item h4 { font-size: 20px; margin-bottom: 15px; color: var(--gold); font-weight: 600; }
.contact-info-item p { font-size: 17px; margin: 0; opacity: 0.9; }

/* Footer */
footer { background: var(--dark); color: var(--white); padding: 80px 0 40px; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand h3 { font-size: 32px; margin-bottom: 20px; color: var(--gold); }
.footer-brand p { font-size: 15px; opacity: 0.8; line-height: 1.8; }
.footer-section h4 { font-size: 18px; margin-bottom: 25px; color: var(--gold); font-weight: 600; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: var(--white); text-decoration: none; font-size: 15px; opacity: 0.8; transition: all 0.3s; }
.footer-links a:hover { opacity: 1; color: var(--gold); padding-left: 5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; text-align: center; }
.footer-bottom p { font-size: 14px; opacity: 0.7; }

/* Page-Specific Styles */
.content-section { padding: 80px 0; background: var(--white); }
.content-intro { text-align: center; max-width: 900px; margin: 0 auto 60px; }
.content-intro h2 { font-size: 48px; color: var(--deep-teal); margin-bottom: 25px; font-weight: 700; }
.lead { font-size: 20px; line-height: 1.9; color: var(--dark); opacity: 0.85; margin-bottom: 20px; }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; }
.content-grid-full { display: grid; grid-template-columns: 1fr; }
.content-main h2 { font-size: 42px; color: var(--deep-teal); margin-bottom: 25px; font-weight: 700; }
.content-main h3 { font-size: 32px; color: var(--deep-teal); margin: 40px 0 25px; font-weight: 600; }
.content-main p { font-size: 17px; line-height: 1.9; margin-bottom: 20px; color: var(--dark); opacity: 0.85; }
.content-main-wide { max-width: 1200px; margin: 0 auto; }

/* Feature Items */
.service-features, .feature-item { margin: 30px 0; }
.feature-item { display: flex; gap: 25px; padding: 30px; background: var(--cream); border-radius: 15px; margin-bottom: 20px; transition: all 0.3s; }
.feature-item:hover { transform: translateX(10px); box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.feature-icon { font-size: 48px; flex-shrink: 0; }
.feature-content h4 { font-size: 22px; color: var(--deep-teal); margin-bottom: 10px; font-weight: 600; }
.feature-content p { font-size: 16px; line-height: 1.8; margin: 0; }

/* Trust Points */
.trust-points { margin: 30px 0; }
.trust-points h3 { font-size: 32px; color: var(--deep-teal); margin-bottom: 30px; font-weight: 600; grid-column: 1 / -1; }
.trust-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.trust-point { background: var(--cream); padding: 25px; border-radius: 12px; border-left: 4px solid var(--gold); }
.trust-point h4 { font-size: 18px; color: var(--deep-teal); margin-bottom: 10px; font-weight: 600; }
.trust-point p { font-size: 15px; margin: 0; opacity: 0.85; }

/* Process Steps */
.process-section { margin: 50px 0; }
.process-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 30px; }
.process-step { background: var(--cream); padding: 30px; border-radius: 15px; position: relative; }
.step-number { position: absolute; top: -15px; left: 30px; background: var(--gold); color: var(--dark); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; }
.process-step h4 { font-size: 20px; color: var(--deep-teal); margin: 15px 0 10px; font-weight: 600; }
.process-step p { font-size: 15px; margin: 0; opacity: 0.85; }

/* Sidebar */
.content-sidebar { display: flex; flex-direction: column; gap: 30px; }
.sidebar-card { background: var(--cream); padding: 35px; border-radius: 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.06); }
.sidebar-card h3 { font-size: 24px; color: var(--deep-teal); margin-bottom: 15px; font-weight: 600; }
.sidebar-card h4 { font-size: 20px; color: var(--deep-teal); margin-bottom: 15px; font-weight: 600; }
.sidebar-card p { font-size: 15px; margin-bottom: 20px; opacity: 0.85; }
.sidebar-cta { background: var(--deep-teal); color: var(--white); }
.sidebar-cta h4 { color: var(--gold); }
.sidebar-cta p { color: var(--white); }
.sidebar-note { font-size: 13px; text-align: center; margin-top: 15px; opacity: 0.7; }
.sidebar-info { background: var(--deep-teal); color: var(--white); }
.sidebar-info h4 { color: var(--gold); }
.sidebar-info p { color: var(--white); margin: 0; }

/* Forms */
.service-form, .service-form-large { display: flex; flex-direction: column; gap: 20px; margin-top: 25px; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { padding: 14px 18px; border: 2px solid #e0e0e0; border-radius: 8px; font-size: 15px; font-family: 'Montserrat', sans-serif; transition: all 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-message { padding: 15px 20px; border-radius: 8px; margin-top: 20px; font-size: 15px; text-align: center; display: none; }
.form-message.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; display: block; }
.form-message.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; display: block; }
.form-section { padding: 80px 0; background: var(--cream); }
.form-container-centered { max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.form-header { text-align: center; margin-bottom: 40px; }
.form-header h2 { font-size: 42px; color: var(--deep-teal); margin-bottom: 20px; font-weight: 700; }
.form-header p { font-size: 17px; opacity: 0.85; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-alternatives { text-align: center; margin-top: 40px; padding-top: 40px; border-top: 1px solid #e0e0e0; }
.contact-alternatives p { font-size: 16px; margin-bottom: 20px; opacity: 0.8; }
.contact-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* Recruitment Page Specific */
.recruitment-categories { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin: 40px 0; }
.category-card { background: var(--cream); padding: 35px; border-radius: 15px; transition: all 0.3s; }
.category-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.category-icon { font-size: 48px; margin-bottom: 20px; }
.category-card h4 { font-size: 24px; color: var(--deep-teal); margin-bottom: 20px; font-weight: 600; }
.category-card ul { list-style: none; padding: 0; }
.category-card li { padding: 10px 0; font-size: 15px; border-bottom: 1px solid rgba(0,0,0,0.1); }
.category-card li:last-child { border-bottom: none; }
.category-card li::before { content: '▸'; color: var(--gold); font-weight: bold; margin-right: 10px; }
.framework-section { margin: 40px 0; }
.framework-item { display: flex; gap: 30px; margin-bottom: 35px; padding: 30px; background: var(--cream); border-radius: 15px; }
.framework-number { font-size: 48px; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; flex-shrink: 0; width: 80px; }
.framework-content h4 { font-size: 22px; color: var(--deep-teal); margin-bottom: 12px; font-weight: 600; }
.framework-content p { font-size: 16px; margin: 0; opacity: 0.85; }
.why-choose-section { margin: 50px 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 30px; }
.benefit-item { background: var(--cream); padding: 30px; border-radius: 15px; text-align: center; transition: all 0.3s; }
.benefit-item:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.benefit-icon { font-size: 48px; margin-bottom: 20px; }
.benefit-item h4 { font-size: 20px; color: var(--deep-teal); margin-bottom: 12px; font-weight: 600; }
.benefit-item p { font-size: 15px; margin: 0; opacity: 0.85; }
.success-metrics { margin: 50px 0; padding: 50px; background: linear-gradient(135deg, var(--deep-teal) 0%, var(--teal) 100%); border-radius: 20px; color: var(--white); }
.success-metrics h3 { font-size: 36px; text-align: center; margin-bottom: 40px; color: var(--gold); }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.metric-box { text-align: center; }
.metric-number { font-size: 48px; font-weight: 700; color: var(--gold); margin-bottom: 10px; font-family: 'Playfair Display', serif; }
.metric-label { font-size: 15px; opacity: 0.9; }

/* Head Hunting Page Specific */
.executive-categories { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin: 40px 0; }
.exec-category { background: var(--cream); padding: 35px; border-radius: 15px; }
.exec-category h4 { font-size: 22px; color: var(--deep-teal); margin-bottom: 20px; font-weight: 600; }
.exec-category ul { list-style: none; padding: 0; }
.exec-category li { padding: 10px 0; font-size: 15px; border-bottom: 1px solid rgba(0,0,0,0.1); }
.exec-category li:last-child { border-bottom: none; }
.exec-category li::before { content: '▸'; color: var(--gold); font-weight: bold; margin-right: 10px; }
.methodology-section { margin: 40px 0; }
.method-step { display: flex; gap: 25px; margin-bottom: 30px; padding: 30px; background: var(--cream); border-radius: 15px; }
.method-icon { font-size: 48px; flex-shrink: 0; }
.method-content h4 { font-size: 22px; color: var(--deep-teal); margin-bottom: 12px; font-weight: 600; }
.method-content p { font-size: 16px; margin: 0; opacity: 0.85; }
.advantages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; margin: 30px 0; }
.advantage-card { background: var(--cream); padding: 30px; border-radius: 15px; border-left: 4px solid var(--gold); transition: all 0.3s; }
.advantage-card:hover { transform: translateX(10px); box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.advantage-card h4 { font-size: 20px; color: var(--deep-teal); margin-bottom: 12px; font-weight: 600; }
.advantage-card p { font-size: 15px; margin: 0; opacity: 0.85; }
.testimonial-section { margin: 50px 0; }
.testimonial-card { 
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); 
    border: 3px solid var(--gold); 
    padding: 50px; 
    border-radius: 20px; 
    text-align: center; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: var(--gold);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-text { 
    font-size: 20px; 
    font-style: italic; 
    line-height: 1.8; 
    margin-bottom: 25px; 
    color: var(--deep-teal);
    font-weight: 500;
    position: relative;
    z-index: 1;
}
.testimonial-author { 
    font-size: 16px; 
    color: var(--dark-gold); 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container { padding: 0 40px; }
    .hero h1 { font-size: 56px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 968px) {
    /* Hero Badge Tablet */
    .hero-badge { 
        font-size: 12px; 
        padding: 7px 18px;
        max-width: 100%;
    }
    
    .hero h1, .page-hero-content h1 { font-size: 42px; }
    .hero p, .page-hero-content p { font-size: 18px; }
    .services-grid, .recruitment-categories, .executive-categories, .advantages-grid, .trust-points, .process-steps { grid-template-columns: 1fr; }
    .showcase-grid, .partnership-content, .content-grid { grid-template-columns: 1fr; }
    .partnership-features, .benefits-grid, .metrics-grid { grid-template-columns: 1fr; }
    .stats-grid, .contact-info-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
    
    /* Tablet Navigation */
    .logo { font-size: 26px; letter-spacing: 2px; }
    .nav-links { gap: 15px; font-size: 13px; }
    .nav-links a { padding: 5px 10px; }
    .nav-cta { padding: 10px 20px; font-size: 13px; }
    
    /* Tablet Trust Banner */
    .trust-banner-content { gap: 30px; flex-wrap: wrap; }
    .trust-item { min-width: 200px; }
    
    /* Tablet Stats */
    .stats { padding: 80px 0; }
    .stat-number { font-size: 52px; }
    
    .section-title { font-size: 38px; }
    .form-row { grid-template-columns: 1fr; }
    .form-container-centered { padding: 40px 30px; }
}

@media (max-width: 640px) {
    .container { padding: 0 20px; }
    
    /* Hero Badge Mobile Fix */
    .hero-badge { 
        font-size: 11px; 
        padding: 6px 15px; 
        letter-spacing: 0.5px;
        display: block;
        text-align: center;
        max-width: 100%;
        word-wrap: break-word;
        line-height: 1.4;
    }
    
    .hero h1, .page-hero-content h1 { font-size: 32px; }
    .hero-buttons, .cta-buttons { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; }
    
    /* Mobile Navigation Fixes */
    .logo { font-size: 20px; letter-spacing: 1px; }
    .nav-content { flex-wrap: wrap; gap: 10px; }
    .nav-links { 
        gap: 8px; 
        font-size: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-links a { 
        font-size: 12px; 
        padding: 5px 8px;
    }
    .nav-cta { 
        padding: 8px 16px; 
        font-size: 11px;
    }
    .language-switcher { 
        order: 3;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    nav { padding: 15px 0; }
    
    /* Trust Banner Mobile Fix */
    .trust-banner { padding: 30px 0; }
    .trust-banner-content { 
        flex-direction: column; 
        gap: 25px; 
    }
    .trust-item { 
        flex-direction: column; 
        text-align: center; 
        gap: 10px;
    }
    .trust-icon { font-size: 40px; }
    .trust-text h4 { font-size: 32px; }
    .trust-text p { font-size: 14px; }
    
    /* Stats Section Mobile Fix */
    .stats { padding: 60px 0; }
    .stats-grid { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    .stat-number { font-size: 48px; }
    .stat-label { font-size: 14px; }
    
    /* General Mobile Fixes */
    .section-title { font-size: 28px; }
    .content-main h2 { font-size: 28px; }
    .content-main h3 { font-size: 22px; }
    .hero { margin-top: 120px; }
    .page-hero { margin-top: 120px; height: 50vh; }
    
    /* Testimonial Mobile */
    .testimonial-card { padding: 30px 20px; }
    .testimonial-card::before { font-size: 50px; top: 10px; left: 15px; }
    .testimonial-text { font-size: 16px; }
    .testimonial-author { font-size: 13px; }
}
