/* ===== ROOT VARIABLES ===== */
:root {
  --navy: #0a1128;
  --navy-light: #1a2744;
  --navy-medium: #0f1d3d;
  --gold: #c8a45e;
  --gold-light: #d4b76a;
  --gold-dark: #b08d3e;
  --dark: #111827;
  --gray-100: #f8f9fc;
  --gray-200: #e9ecf2;
  --gray-600: #6b7280;
  --white: #ffffff;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --shadow: 0 10px 40px rgba(10, 17, 40, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 17, 40, 0.12);
  --transition: all 0.3s ease;
}

/* ===== GLOBAL ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: #333; overflow-x: hidden; }
h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--navy); }
.text-gold { color: var(--gold) !important; }
.btn-gold { background: var(--gold); color: var(--white); border: 2px solid var(--gold); font-weight: 600; border-radius: 4px; transition: var(--transition); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200, 164, 94, 0.4); }
.section-padding { padding: 100px 0; }
.section-tag { display: inline-block; color: var(--gold); font-weight: 600; text-transform: uppercase; font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.section-tag i { color: var(--gold); margin-right: 5px; }
.section-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 15px; line-height: 1.3; }
.section-subtitle { color: var(--gray-600); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-text { color: var(--gray-600); line-height: 1.8; margin-bottom: 25px; }
.bg-light-custom { background: var(--gray-100); }

/* ===== TOP BAR ===== */
.top-bar { background: var(--navy); color: rgba(255,255,255,0.7); font-size: 13px; padding: 8px 0; }
.top-bar a { color: rgba(255,255,255,0.7); transition: var(--transition); text-decoration: none; }
.top-bar a:hover { color: var(--gold); }

/* ===== NAVBAR ===== */
.navbar { background: var(--navy); padding: 15px 0; transition: var(--transition); z-index: 1050; }
.navbar.scrolled { background: rgba(10, 17, 40, 0.98); box-shadow: 0 5px 30px rgba(0,0,0,0.15); padding: 10px 0; }
.navbar-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-icon { width: 45px; height: 45px; background: var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.2rem; }
.brand-text { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--white) !important; }
.navbar-toggler { border-color: rgba(255,255,255,0.3); padding: 8px 12px; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28200, 164, 94, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
.nav-link { color: rgba(255,255,255,0.85) !important; font-weight: 500; font-size: 15px; padding: 8px 18px !important; transition: var(--transition); position: relative; }
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 18px; right: 18px; height: 2px; background: var(--gold); transform: scaleX(0); transition: var(--transition); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* ===== PAGE BANNER ===== */
.page-banner { position: relative; padding: 120px 0 80px; background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&h=600&fit=crop') center/cover no-repeat; }
.page-banner-overlay { position: absolute; inset: 0; background: rgba(10, 17, 40, 0.9); }
.page-banner h1 { font-size: 3rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.page-banner .breadcrumb-item a { color: var(--gold); text-decoration: none; }
.page-banner .breadcrumb-item.active { color: rgba(255,255,255,0.7); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ===== HERO ===== */
.hero-section { position: relative; min-height: 100vh; background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&h=1080&fit=crop') center/cover no-repeat; display: flex; align-items: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,17,40,0.92) 0%, rgba(15,29,61,0.85) 50%, rgba(10,17,40,0.75) 100%); z-index: 1; }
.z-2 { z-index: 2; }
.z-3 { z-index: 3; }
.hero-badge { display: inline-block; background: rgba(200, 164, 94, 0.15); border: 1px solid rgba(200, 164, 94, 0.3); color: var(--gold); padding: 8px 24px; border-radius: 50px; font-size: 14px; font-weight: 500; margin-bottom: 25px; }
.hero-title { font-size: 4rem; font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 25px; }
.hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.7); max-width: 550px; line-height: 1.8; margin-bottom: 35px; }
.hero-trust { color: rgba(255,255,255,0.7); font-size: 14px; }
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-item i { font-size: 1.2rem; }
.hero-card-stack { position: relative; height: 450px; }
.hero-float-card { position: absolute; background: rgba(255,255,255,0.1); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.15); border-radius: 16px; padding: 20px 28px; display: flex; align-items: center; gap: 15px; color: white; animation: floatCard 3s ease-in-out infinite; }
.hero-float-card i { font-size: 2rem; color: var(--gold); }
.hero-float-card small { display: block; opacity: 0.7; font-size: 12px; }
.hero-float-card strong { font-size: 1.3rem; }
.card-1 { top: 30px; right: 20px; animation-delay: 0s; }
.card-2 { top: 170px; right: 80px; animation-delay: 0.5s; }
.card-3 { top: 310px; right: 10px; animation-delay: 1s; }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-scroll-down { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3; }
.hero-scroll-down a { color: var(--gold); font-size: 1.5rem; animation: bounce 2s infinite; text-decoration: none; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--gold); padding: 50px 0; }
.stat-item h2 { font-size: 2.8rem; font-weight: 700; color: var(--white); display: inline; }
.stat-suffix { font-size: 2rem; font-weight: 700; color: var(--white); font-family: var(--font-heading); }
.stat-item p { color: rgba(255,255,255,0.85); margin: 5px 0 0; font-weight: 500; text-transform: uppercase; font-size: 13px; letter-spacing: 1px; }

/* ===== REGION CARDS (Global Expertise) ===== */
.region-card { background: var(--white); border-radius: 12px; padding: 35px 25px; box-shadow: var(--shadow); transition: var(--transition); height: 100%; text-align: center; border-bottom: 3px solid transparent; }
.region-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-bottom-color: var(--gold); }
.region-flag { font-size: 3rem; margin-bottom: 15px; }
.region-card h5 { font-weight: 600; margin-bottom: 10px; }
.region-card p { color: var(--gray-600); font-size: 14px; line-height: 1.7; margin-bottom: 15px; }

/* ===== ABOUT ===== */
.about-image-wrapper { position: relative; padding: 20px; }
.about-img-main { width: 100%; border-radius: 12px; box-shadow: var(--shadow-lg); position: relative; z-index: 2; }
.about-img-accent { position: absolute; top: 0; left: 0; width: 200px; height: 200px; border: 4px solid var(--gold); border-radius: 12px; z-index: 1; }
.about-experience-badge { position: absolute; bottom: 0; right: 0; background: var(--gold); color: var(--white); padding: 25px 30px; border-radius: 12px; text-align: center; z-index: 3; box-shadow: 0 10px 30px rgba(200, 164, 94, 0.4); }
.about-experience-badge h3 { font-size: 2.5rem; font-weight: 700; color: var(--white); margin: 0; }
.about-experience-badge p { margin: 0; font-size: 14px; line-height: 1.3; }
.about-features { margin-top: 30px; }
.about-feature-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.feature-icon { width: 40px; height: 40px; min-width: 40px; background: rgba(200, 164, 94, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; font-weight: 700; }
.about-feature-item h6 { font-family: var(--font-body); font-weight: 600; margin-bottom: 3px; color: var(--navy); }
.about-feature-item p { font-size: 14px; color: var(--gray-600); margin: 0; }

/* ===== SERVICE CARDS ===== */
.service-card { background: var(--white); border-radius: 12px; padding: 40px 30px; box-shadow: var(--shadow); transition: var(--transition); height: 100%; border-bottom: 3px solid transparent; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); opacity: 0; transition: var(--transition); z-index: 0; }
.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-bottom-color: var(--gold); }
.service-card:hover * { position: relative; z-index: 1; color: var(--white); }
.service-card:hover .service-icon-wrap { background: var(--gold); }
.service-card:hover .service-link { color: var(--gold) !important; }
.service-icon-wrap { width: 70px; height: 70px; background: rgba(200, 164, 94, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--gold); margin-bottom: 20px; transition: var(--transition); }
.service-card h5 { font-family: var(--font-heading); font-weight: 600; margin-bottom: 12px; }
.service-card p { color: var(--gray-600); font-size: 15px; line-height: 1.7; margin-bottom: 15px; }
.service-link { color: var(--gold); text-decoration: none; font-weight: 600; font-size: 14px; transition: var(--transition); }
.service-link i { transition: var(--transition); }
.service-link:hover i { transform: translateX(5px); }

/* ===== WHY CHOOSE US (Dark BG Section) ===== */
.why-choose-section { position: relative; background: url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1920&h=800&fit=crop') center/cover no-repeat fixed; }
.why-choose-overlay { position: absolute; inset: 0; background: rgba(10, 17, 40, 0.92); }
.why-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 25px; transition: var(--transition); }
.why-card:hover { background: rgba(200, 164, 94, 0.1); border-color: var(--gold); transform: translateY(-5px); }
.why-card i { font-size: 2rem; color: var(--gold); margin-bottom: 12px; display: block; }
.why-card h6 { color: var(--white); font-family: var(--font-body); font-weight: 600; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 14px; margin: 0; }
.why-choose-image img { width: 100%; border-radius: 12px; box-shadow: var(--shadow-lg); }

/* ===== SERVE CARDS ===== */
.serve-card { background: var(--white); border-radius: 12px; padding: 35px 25px; box-shadow: var(--shadow); transition: var(--transition); height: 100%; text-align: center; }
.serve-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.serve-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 15px; display: block; }
.serve-card h5 { font-weight: 600; margin-bottom: 10px; }
.serve-card p { color: var(--gray-600); font-size: 14px; line-height: 1.7; margin: 0; }

/* ===== MVV CARDS (Mission/Vision/Values) ===== */
.mvv-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 40px 30px; text-align: center; height: 100%; transition: var(--transition); }
.mvv-card:hover { background: rgba(200, 164, 94, 0.1); border-color: var(--gold); transform: translateY(-5px); }
.mvv-icon { width: 80px; height: 80px; background: rgba(200, 164, 94, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; color: var(--gold); }
.mvv-card h4 { color: var(--white); margin-bottom: 15px; }
.mvv-card p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.7; margin: 0; }
.mvv-list { list-style: none; padding: 0; margin: 0; text-align: left; }
.mvv-list li { color: rgba(255,255,255,0.7); padding: 6px 0; font-size: 15px; display: flex; align-items: center; gap: 8px; }

/* ===== EXPERTISE CHIPS ===== */
.expertise-chip { background: var(--white); border: 1px solid var(--gray-200); border-radius: 10px; padding: 15px 20px; font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.expertise-chip:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); }

/* ===== SERVICE DETAIL (Services Page) ===== */
.service-detail-img img { width: 100%; border-radius: 12px; box-shadow: var(--shadow-lg); }
.region-flag-lg { font-size: 3.5rem; margin-bottom: 10px; }
.service-detail-list { list-style: none; padding: 0; margin: 20px 0; }
.service-detail-list li { padding: 10px 0; font-size: 15px; color: var(--gray-600); display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--gray-200); }
.service-detail-list li:last-child { border: none; }
.service-detail-list li i { font-size: 1rem; }

/* ===== TOOL CARDS ===== */
.tool-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; padding: 30px 20px; text-align: center; transition: var(--transition); }
.tool-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: var(--shadow); }
.tool-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 10px; display: block; }
.tool-card h6 { margin: 0; font-family: var(--font-body); font-weight: 600; }

/* ===== TEAM CARDS ===== */
.team-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.team-img-wrap { position: relative; overflow: hidden; }
.team-img-wrap img { width: 100%; height: 340px; object-fit: cover; object-position: top center; transition: var(--transition); display: block; }
.team-img-link { display: block; cursor: pointer; }
.team-img-link::after { content: "Click to View Details"; position: absolute; inset: auto 0 0 0; background: rgba(10, 17, 40, 0.78); color: #fff; text-align: center; padding: 10px; font-size: 13px; letter-spacing: 0.5px; opacity: 0; transition: var(--transition); }
.team-card:hover .team-img-link::after { opacity: 1; }
.team-card:hover .team-img-wrap img { transform: scale(1.05); }
.team-social { position: absolute; bottom: -50px; left: 0; right: 0; background: rgba(10, 17, 40, 0.85); display: flex; justify-content: center; gap: 15px; padding: 12px; transition: var(--transition); }
.team-card:hover .team-social { bottom: 0; }
.team-social a { color: var(--white); font-size: 1.1rem; transition: var(--transition); text-decoration: none; }
.team-social a:hover { color: var(--gold); }
.team-info { padding: 20px 25px; text-align: center; }
.team-info h5 { font-weight: 600; margin-bottom: 3px; }
.team-info span { color: var(--gold); font-size: 14px; font-weight: 500; }
.btn-linkedin { background:#0A66C2; color:#fff !important; border:none; font-weight:500; padding:6px 14px; border-radius:6px; text-decoration:none; display:inline-flex; align-items:center; transition:var(--transition); }
.btn-linkedin:hover { background:#084c91; color:#fff; transform: translateY(-2px); }

/* ===== EXPERT MODALS ===== */
.expert-modal { background: var(--navy); border: none; border-radius: 16px; overflow: hidden; }
.expert-modal .modal-header { position: absolute; top: 0; right: 0; z-index: 10; padding: 15px 20px; }
.expert-modal .btn-close-white { filter: invert(1) grayscale(100%) brightness(200%); opacity: 0.8; }
.expert-modal .btn-close-white:hover { opacity: 1; }
.expert-modal .modal-body { padding: 30px 40px 40px; }
.expert-modal-img { width: 100%; max-width: 280px; height: 320px; object-fit: cover; object-position: top center; border-radius: 12px; border: 4px solid var(--gold); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.expert-modal-name { color: var(--white); font-family: var(--font-heading); font-weight: 700; font-size: 1.8rem; margin-bottom: 5px; }
.expert-modal-role { color: var(--gold); font-size: 1rem; font-weight: 500; margin-bottom: 0; }
.expert-divider { border-color: rgba(200, 164, 94, 0.3); margin: 15px 0; }
.expert-modal-bio { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.7; }
.expert-skills { list-style: none; padding: 0; margin: 0 0 10px 0; }
.expert-skills li { color: rgba(255,255,255,0.9); font-size: 14px; padding: 6px 0; display: flex; align-items: center; gap: 10px; }
.expert-skills li i { color: var(--gold); font-size: 14px; }
.expert-modal-actions .btn { padding: 10px 20px; font-size: 14px; }
@media (max-width: 767px) {
  .expert-modal .modal-body { padding: 20px; }
  .expert-modal-img { max-width: 200px; height: 240px; margin-bottom: 20px; }
  .expert-modal-name { font-size: 1.5rem; }
}

/* ===== TESTIMONIALS ===== */
.testimonial-card { background: var(--white); border-radius: 12px; padding: 35px; box-shadow: var(--shadow); height: 100%; transition: var(--transition); border-top: 3px solid transparent; }
.testimonial-card:hover { transform: translateY(-5px); border-top-color: var(--gold); }
.testimonial-card.featured { background: var(--navy); border-top-color: var(--gold); }
.testimonial-card.featured .testimonial-text { color: rgba(255,255,255,0.8); }
.testimonial-card.featured h6 { color: var(--white); }
.testimonial-card.featured span { color: var(--gold); }
.testimonial-stars { margin-bottom: 18px; }
.testimonial-stars i { color: var(--gold); font-size: 1rem; }
.testimonial-text { color: var(--gray-600); font-size: 15px; line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; background: rgba(200, 164, 94, 0.1); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.8rem; }
.testimonial-card.featured .testimonial-avatar { background: rgba(200, 164, 94, 0.2); }
.testimonial-author h6 { margin: 0; font-family: var(--font-body); font-weight: 600; font-size: 15px; }
.testimonial-author span { font-size: 13px; color: var(--gray-600); }

/* ===== RATING INPUT ===== */
.rating-input { display: flex; align-items: center; gap: 5px; }
.rating-star { font-size: 1.5rem; color: var(--gray-200); cursor: pointer; transition: var(--transition); }
.rating-star.active { color: var(--gold); }
.rating-star.hover { color: var(--gold); opacity: 0.7; }
.rating-star:hover { transform: scale(1.2); }
.rating-text { font-size: 14px; font-weight: 600; color: var(--gold); }

/* ===== CTA ===== */
.cta-section { position: relative; padding: 100px 0; background: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1920&h=600&fit=crop') center/cover no-repeat fixed; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,17,40,0.95), rgba(200,164,94,0.3)); }
.cta-title { font-size: 2.8rem; color: var(--white); margin-bottom: 15px; }
.cta-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }

/* ===== CONTACT ===== */
.contact-info-wrap { background: var(--navy); border-radius: 12px; padding: 40px; color: var(--white); height: 100%; }
.contact-info-wrap h4 { color: var(--white); }
.contact-info-wrap > p { color: rgba(255,255,255,0.7); }
.contact-info-item { display: flex; gap: 15px; margin-bottom: 25px; align-items: flex-start; }
.contact-icon { width: 50px; height: 50px; min-width: 50px; background: rgba(200, 164, 94, 0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.2rem; }
.contact-info-item h6 { color: var(--white); font-family: var(--font-body); font-weight: 600; margin-bottom: 3px; }
.contact-info-item p { color: rgba(255,255,255,0.6); margin: 0; font-size: 14px; line-height: 1.6; }
.contact-form-wrap { background: var(--white); border-radius: 12px; padding: 40px; box-shadow: var(--shadow-lg); }
.contact-form-wrap .form-label { font-weight: 500; font-size: 14px; color: var(--navy); }
.contact-form-wrap .form-control, .contact-form-wrap .form-select { border: 1px solid var(--gray-200); padding: 12px 16px; border-radius: 8px; transition: var(--transition); }
.contact-form-wrap .form-control:focus, .contact-form-wrap .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200, 164, 94, 0.15); }

/* ===== FOOTER ===== */
.footer-section { background: var(--navy); }
.footer-top { padding: 80px 0 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--white); margin-bottom: 15px; }
.footer-widget p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.8; }
.footer-widget h5 { color: var(--white); font-family: var(--font-body); font-weight: 600; margin-bottom: 20px; font-size: 1.1rem; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--white); transition: var(--transition); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: var(--transition); display: flex; align-items: center; gap: 5px; }
.footer-links a::before { content: '›'; color: var(--gold); font-weight: 700; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 12px; display: flex; align-items: center; }
.cert-badge { display: inline-block; background: rgba(200, 164, 94, 0.1); border: 1px solid rgba(200, 164, 94, 0.2); color: var(--gold); padding: 5px 12px; border-radius: 4px; font-size: 12px; font-weight: 600; margin-right: 5px; margin-bottom: 5px; }
.footer-bottom { padding: 20px 0; }
.footer-bottom p { color: rgba(255,255,255,0.5); margin: 0; font-size: 14px; }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ===== BACK TO TOP ===== */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--gold); color: var(--white); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; text-decoration: none; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 999; box-shadow: 0 5px 20px rgba(200, 164, 94, 0.4); }
.back-to-top.active { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-3px); }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn { position: fixed; bottom: 90px; right: 30px; width: 55px; height: 55px; background: #25D366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; text-decoration: none; z-index: 999; box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4); transition: var(--transition); }
.whatsapp-btn:hover { background: #128C7E; color: #fff; transform: scale(1.1); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-title { font-size: 2.8rem; }
  .section-title { font-size: 2rem; }
  .cta-title { font-size: 2rem; }
  .section-padding { padding: 70px 0; }
  .page-banner { padding: 100px 0 60px; }
  .page-banner h1 { font-size: 2.2rem; }
  .navbar-collapse { background: var(--navy); padding: 20px; margin-top: 15px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; }
  .section-title { font-size: 1.7rem; }
  .stat-item h2 { font-size: 2rem; }
  .contact-info-wrap { margin-bottom: 20px; }
  .page-banner h1 { font-size: 1.8rem; }
}

