/* ====================================================
   DELTA INTERNATIONAL - BRAND COLORS & DESIGN SYSTEM
   Primary: #1B3A6B (Deep Navy Blue)
   Secondary: #C8A951 (Gold)
   Accent: #E8F0FE (Light Blue)
   Dark: #0D1F3C
   ==================================================== */

:root {
  --primary: #1B3A6B;
  --primary-dark: #0D1F3C;
  --primary-light: #2A5298;
  --gold: #C8A951;
  --gold-light: #E8D5A0;
  --white: #ffffff;
  --light: #F5F7FA;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --text: #1F2937;
  --text-light: #6B7280;
  --success: #10B981;
  --danger: #EF4444;
  --border-radius: 8px;
  --shadow: 0 4px 20px rgba(27,58,107,0.12);
  --shadow-lg: 0 10px 40px rgba(27,58,107,0.18);
  --transition: all 0.3s ease;
  --font: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* ====== UTILITY ====== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.bg-light { background: var(--light); }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--border-radius);
  font-weight: 600; font-size: 14px; border: 2px solid transparent;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
  font-family: var(--font); text-decoration: none;
}
.btn-primary { background: var(--primary); color: white; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-light); border-color: var(--primary-light); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-outline-white { background: transparent; color: white; border-color: white; }
.btn-outline-white:hover { background: white; color: var(--primary); }
.btn-white { background: white; color: var(--primary); border-color: white; }
.btn-white:hover { background: var(--gold); color: var(--primary-dark); border-color: var(--gold); }
.btn-whatsapp { background: #25D366; color: white; border-color: #25D366; }
.btn-whatsapp:hover { background: #128C7E; border-color: #128C7E; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }
.btn-danger { background: var(--danger); color: white; border-color: var(--danger); }
.btn-danger:hover { background: #dc2626; }

/* ====== TOPBAR ====== */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 13px; padding: 8px 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-left a:hover { color: var(--gold); }
.topbar-right { display: flex; gap: 12px; }
.topbar-right a { font-size: 12px; opacity: 0.8; }
.topbar-right a:hover { opacity: 1; color: var(--gold); }

/* ====== HEADER ====== */
.main-header {
  background: white; position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.main-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.15); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; gap: 20px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 48px; height: 48px; background: var(--primary);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 22px;
}
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-size: 16px; font-weight: 700; color: var(--primary); line-height: 1.2; }
.logo-sub { font-size: 11px; color: var(--gold); font-weight: 500; letter-spacing: 0.5px; }

/* Navigation */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 10px 16px; font-size: 14px; font-weight: 500; color: var(--text);
  border-radius: var(--border-radius); transition: var(--transition); position: relative;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); background: var(--light); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px;
  background: white; border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg); border: 1px solid var(--gray-light);
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: var(--transition); z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 16px; font-size: 14px; color: var(--text); }
.dropdown-menu a:hover { background: var(--light); color: var(--primary); padding-left: 20px; }

.mobile-menu-btn { display: none; background: none; border: none; font-size: 22px; color: var(--primary); cursor: pointer; padding: 8px; }

/* ====== HERO ====== */
.hero-section {
  min-height: 90vh; background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  position: relative; display: flex; align-items: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; color: white; max-width: 800px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,169,81,0.2); border: 1px solid rgba(200,169,81,0.4);
  color: var(--gold-light); padding: 8px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 500; margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 64px); font-weight: 800; line-height: 1.1;
  margin-bottom: 20px; letter-spacing: -0.5px;
}
.hero-subtitle { font-size: clamp(16px, 2vw, 20px); opacity: 0.9; margin-bottom: 36px; max-width: 600px; }
.hero-stats {
  display: flex; gap: 32px; margin-bottom: 40px; flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.stat-num { font-size: 28px; font-weight: 800; color: var(--gold); }
.hero-stat span:last-child { font-size: 13px; opacity: 0.8; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); font-size: 20px; animation: bounce 2s infinite;
}
.hero-scroll a { color: inherit; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ====== SECTION HEADERS ====== */
.section-badge {
  display: inline-block; background: rgba(27,58,107,0.08); color: var(--primary);
  padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 600;
  margin-bottom: 12px; border-left: 3px solid var(--gold);
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: var(--primary-dark); line-height: 1.2; margin-bottom: 12px; }
.section-header h2 span { color: var(--gold); }
.section-header p { color: var(--text-light); font-size: 16px; max-width: 600px; margin: 0 auto; }
.section-cta { text-align: center; margin-top: 48px; }

h2 span { color: var(--gold); }

/* ====== ABOUT SECTION ====== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-content .section-badge { margin-bottom: 16px; }
.about-content h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 700; color: var(--primary-dark); margin-bottom: 20px; line-height: 1.2; }
.about-content p { color: var(--text-light); margin-bottom: 16px; }
.about-features { list-style: none; margin: 24px 0 32px; }
.about-features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-weight: 500; }
.about-features li i { color: var(--gold); font-size: 16px; }
.about-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 400px; }
.about-circle {
  width: 300px; height: 300px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(27,58,107,0.3);
}
.circle-inner { text-align: center; color: white; }
.circle-inner i { font-size: 56px; color: var(--gold); margin-bottom: 12px; }
.circle-inner span { font-size: 16px; font-weight: 600; opacity: 0.9; }
.about-badge-1, .about-badge-2 {
  position: absolute; background: white; border-radius: 12px;
  padding: 12px 20px; box-shadow: var(--shadow-lg); font-weight: 600;
  display: flex; align-items: center; gap: 8px; color: var(--primary);
}
.about-badge-1 { top: 20px; right: 0; }
.about-badge-1 i { color: var(--gold); }
.about-badge-2 { bottom: 20px; left: 0; }
.about-badge-2 i { color: var(--success); }

/* ====== SERVICES ====== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.service-card {
  background: white; border-radius: 16px; padding: 36px 28px;
  border: 1px solid var(--gray-light); transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px; background: rgba(27,58,107,0.08);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: var(--transition);
}
.service-icon i { font-size: 28px; color: var(--primary); }
.service-card:hover .service-icon { background: var(--primary); }
.service-card:hover .service-icon i { color: var(--gold); }
.service-card h3 { font-size: 20px; font-weight: 700; color: var(--primary-dark); margin-bottom: 12px; }
.service-card p { color: var(--text-light); font-size: 14px; margin-bottom: 20px; line-height: 1.7; }
.service-link { font-size: 14px; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 6px; }
.service-link:hover { color: var(--gold); gap: 10px; }

/* ====== WHY SECTION ====== */
.why-section { background: var(--light); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-content h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: var(--primary-dark); margin-bottom: 16px; line-height: 1.2; }
.why-content p { color: var(--text-light); margin-bottom: 24px; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 32px; }
.why-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.why-feature i { color: var(--gold); background: rgba(200,169,81,0.12); width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }
.why-image { position: relative; min-height: 360px; display: flex; align-items: center; justify-content: center; }
.why-image-inner {
  width: 300px; height: 300px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.globe-icon { font-size: 100px; color: rgba(200,169,81,0.4); }
.country-badge {
  position: absolute; background: white; border-radius: 10px;
  padding: 10px 16px; box-shadow: var(--shadow); font-weight: 600;
  font-size: 13px; color: var(--primary); display: flex; align-items: center; gap: 6px;
}
.country-badge i { color: var(--danger); }
.country-badge.sa { top: 30px; right: -10px; }
.country-badge.uae { bottom: 60px; right: -20px; }
.country-badge.pk { top: 50%; left: -30px; transform: translateY(-50%); }

/* ====== STATS GRID ====== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat-card {
  background: white; border-radius: 16px; padding: 36px 20px;
  box-shadow: var(--shadow); border-top: 4px solid var(--gold);
}
.stat-number { display: block; font-size: 48px; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 15px; color: var(--text-light); font-weight: 500; margin-top: 8px; display: block; }

/* ====== TESTIMONIALS ====== */
.testimonials-section { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.testimonials-section .section-header h2 { color: white; }
.testimonials-section .section-badge { background: rgba(255,255,255,0.1); color: var(--gold-light); border-color: var(--gold); }
.testimonials-section .section-header p { color: rgba(255,255,255,0.75); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px; padding: 28px; color: white; backdrop-filter: blur(10px);
  transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 18px; margin-bottom: 12px; }
.testimonial-card p { font-size: 14px; opacity: 0.9; line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 15px; }
.testimonial-author span { font-size: 12px; opacity: 0.7; }

/* ====== BLOG ====== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.blog-card {
  background: white; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--gray-light); transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-image { height: 200px; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-no-image { background: linear-gradient(135deg, var(--light), var(--gray-light)); display: flex; align-items: center; justify-content: center; }
.blog-no-image i { font-size: 48px; color: var(--primary); opacity: 0.3; }
.blog-card-body { padding: 24px; }
.blog-category {
  display: inline-block; background: rgba(27,58,107,0.08); color: var(--primary);
  padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600;
  margin-bottom: 12px;
}
.blog-card-body h3 { font-size: 18px; font-weight: 700; color: var(--primary-dark); margin-bottom: 10px; line-height: 1.4; }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body p { color: var(--text-light); font-size: 14px; margin-bottom: 16px; line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-meta { display: flex; gap: 16px; margin-bottom: 16px; font-size: 12px; color: var(--text-light); }
.blog-meta span { display: flex; align-items: center; gap: 4px; }

/* Blog Layout (listing + single) */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.blog-sidebar { position: sticky; top: 100px; }
.sidebar-widget { background: white; border-radius: 16px; padding: 24px; border: 1px solid var(--gray-light); margin-bottom: 24px; }
.sidebar-widget h4 { font-size: 16px; font-weight: 700; color: var(--primary-dark); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); }
.cat-list { list-style: none; }
.cat-list li { border-bottom: 1px solid var(--gray-light); }
.cat-list a { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; color: var(--text); }
.cat-list a:hover, .cat-list a.active { color: var(--primary); font-weight: 600; }
.cat-count { background: var(--light); padding: 2px 8px; border-radius: 50px; font-size: 12px; }
.cta-widget { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: white; }
.cta-widget h4 { color: white; border-color: rgba(255,255,255,0.3); }
.cta-widget p { font-size: 14px; margin-bottom: 16px; opacity: 0.9; }

/* Blog single */
.blog-single { background: white; border-radius: 16px; overflow: hidden; border: 1px solid var(--gray-light); }
.blog-featured-image { height: 400px; overflow: hidden; }
.blog-featured-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-single-meta {
  display: flex; gap: 20px; flex-wrap: wrap; align-items: center;
  padding: 20px 32px; background: var(--light); border-bottom: 1px solid var(--gray-light);
  font-size: 13px; color: var(--text-light);
}
.blog-single-meta span { display: flex; align-items: center; gap: 6px; }
.blog-content { padding: 40px 32px; }
.blog-tags { padding: 0 32px 32px; display: flex; gap: 8px; flex-wrap: wrap; }
.tag { background: var(--light); color: var(--primary); padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 500; }
.related-card { padding: 12px 0; border-bottom: 1px solid var(--gray-light); }
.related-card:last-child { border-bottom: none; }
.related-card h5 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.related-card h5 a:hover { color: var(--primary); }
.related-card span { font-size: 12px; color: var(--text-light); }
.no-posts { text-align: center; padding: 60px; color: var(--text-light); }

/* ====== PAGE CONTENT ====== */
.page-content h1,h2,h3,h4 { color: var(--primary-dark); margin: 24px 0 12px; }
.page-content p { color: var(--text-light); margin-bottom: 16px; }
.page-content ul, .page-content ol { margin: 16px 0 16px 24px; color: var(--text-light); }
.page-content li { margin-bottom: 8px; }
.page-content a { color: var(--primary); }
.page-content a:hover { color: var(--gold); }
.page-content blockquote { border-left: 4px solid var(--gold); padding: 16px 20px; background: var(--light); margin: 20px 0; }
.page-content img { border-radius: var(--border-radius); margin: 20px 0; }

/* ====== PAGE HERO ====== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0 60px; color: white;
}
.page-hero-content h1 { font-size: clamp(32px, 4vw, 52px); font-weight: 800; margin-bottom: 12px; }
.page-hero-content p { font-size: 18px; opacity: 0.85; margin-bottom: 20px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; opacity: 0.75; }
.breadcrumb a { opacity: 0.85; }
.breadcrumb a:hover { opacity: 1; color: var(--gold); }
.breadcrumb i { font-size: 10px; opacity: 0.6; }

/* ====== CONTACT ====== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 32px; font-weight: 700; color: var(--primary-dark); margin-bottom: 16px; }
.contact-info p { color: var(--text-light); margin-bottom: 28px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 20px; }
.contact-icon {
  width: 48px; height: 48px; background: rgba(27,58,107,0.08);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 18px; flex-shrink: 0;
}
.contact-icon.whatsapp-icon { background: rgba(37,211,102,0.12); color: #25D366; }
.contact-item strong { display: block; font-size: 14px; color: var(--text-light); margin-bottom: 2px; }
.contact-item p, .contact-item a { font-size: 15px; font-weight: 500; color: var(--primary-dark); }
.contact-item a:hover { color: var(--primary); }
.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-link {
  width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center;
  justify-content: center; color: white; font-size: 15px; transition: var(--transition);
}
.social-link.fb { background: #1877F2; }
.social-link.tw { background: #1DA1F2; }
.social-link.li { background: #0A66C2; }
.social-link.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.contact-form-card { background: white; border-radius: 20px; padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-light); }
.contact-form-card h3 { font-size: 24px; font-weight: 700; color: var(--primary-dark); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--primary-dark); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 2px solid var(--gray-light);
  border-radius: var(--border-radius); font-size: 14px; color: var(--text);
  font-family: var(--font); transition: var(--transition); background: white;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(27,58,107,0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group small { font-size: 12px; color: var(--text-light); margin-top: 4px; display: block; }
.alert { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: var(--border-radius); margin-bottom: 16px; font-size: 14px; }
.alert-success { background: rgba(16,185,129,0.1); color: #059669; border: 1px solid rgba(16,185,129,0.2); }
.alert-error { background: rgba(239,68,68,0.1); color: #dc2626; border: 1px solid rgba(239,68,68,0.2); }

/* ====== CTA SECTION ====== */
.cta-section { background: linear-gradient(135deg, var(--gold), #B8941E); padding: 80px 0; }
.cta-content { text-align: center; color: white; }
.cta-content h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 12px; }
.cta-content p { font-size: 18px; opacity: 0.9; margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ====== SERVICE DETAIL ====== */
.service-detail { max-width: 900px; margin: 0 auto; }
.service-detail-icon {
  width: 80px; height: 80px; background: rgba(27,58,107,0.08);
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 32px;
}
.service-detail-icon i { font-size: 36px; color: var(--primary); }

/* ====== FOOTER ====== */
.main-footer { background: var(--primary-dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .logo-icon { background: rgba(200,169,81,0.2); color: var(--gold); }
.footer-brand .logo-main { color: white; }
.footer-brand .logo-sub { color: var(--gold); }
.footer-brand p { font-size: 14px; line-height: 1.8; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,0.75);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--primary-dark); }
.footer-col h4 { color: white; font-size: 16px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid rgba(200,169,81,0.3); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact li i { margin-top: 3px; color: var(--gold); font-size: 13px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0;
  display: flex; align-items: center;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ====== WHATSAPP FLOAT ====== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: white; display: flex; align-items: center; justify-content: center;
  font-size: 28px; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition); animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
.whatsapp-tooltip {
  position: absolute; right: 70px; background: var(--primary-dark);
  color: white; padding: 6px 14px; border-radius: 8px; font-size: 13px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@keyframes whatsapp-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.7); }
}

/* ====== LEAD DETAIL ====== */
.lead-detail { padding: 24px; }
.lead-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.lead-info-item label { font-size: 12px; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 4px; }
.lead-info-item span, .lead-info-item select { font-size: 15px; font-weight: 500; }
.lead-info-item select { padding: 6px 12px; border: 1px solid var(--gray-light); border-radius: 6px; }
.lead-message, .lead-notes { margin-bottom: 20px; }
.lead-message label, .lead-notes label { font-weight: 600; color: var(--primary-dark); display: block; margin-bottom: 8px; }
.message-box { background: var(--light); border: 1px solid var(--gray-light); border-radius: 8px; padding: 16px; font-size: 14px; line-height: 1.7; white-space: pre-wrap; }
.lead-notes textarea { width: 100%; padding: 12px; border: 1px solid var(--gray-light); border-radius: 8px; margin-bottom: 12px; font-family: var(--font); resize: vertical; }

/* ====== MOBILE ====== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .why-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero-section { min-height: 80vh; }
  .main-nav { display: none; position: fixed; inset: 0; background: white; flex-direction: column; padding: 80px 20px 20px; z-index: 999; align-items: stretch; gap: 0; overflow-y: auto; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 20px; border-radius: 0; border-bottom: 1px solid var(--gray-light); }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--light); border-radius: 0; }
  .mobile-menu-btn { display: flex; z-index: 1001; position: relative; }
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual, .why-image { min-height: 250px; }
  .about-circle, .why-image-inner { width: 200px; height: 200px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .topbar-left { display: none; }
  .hero-stats { gap: 20px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; }
  .why-features { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .lead-info-grid { grid-template-columns: 1fr; }
  .country-badge { display: none; }
  .grid-2 { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-num { font-size: 22px; }
}
