/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=PT+Serif:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* ===== CSS RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #634B1D;
  --dark-bg: #221703;
  --text-dark: #001F2E;
  --text-gray: #666666;
  --subtitle-color: #B7B7A4;
  --light-bg: #F6F4F3;
  --white: #FFFFFF;
  --nav-bg: #FAFBFB;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'PT Serif', serif;
  --font-small: 'Source Sans 3', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 1920px;
  margin: 0 auto;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== TOP HEADER BAR ===== */
.top-header {
  background-color: var(--primary);
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 80px;
  gap: 40px;
}

.top-header a {
  color: var(--white);
  font-family: var(--font-small);
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s;
}

.top-header a:hover {
  opacity: 0.8;
}

.top-header i {
  font-size: 13px;
}

/* ===== MAIN NAVIGATION ===== */
.main-nav {
  background-color: var(--nav-bg);
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-logo img {
  width: 434px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.active {
  font-weight: 700;
  color: var(--text-dark);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}

.nav-links .dropdown-arrow {
  font-size: 10px;
  margin-left: 4px;
}

.btn-contact {
  background-color: var(--primary);
  color: var(--white) !important;
  padding: 12px 32px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  transition: background-color 0.3s, transform 0.2s;
}

.btn-contact:hover {
  background-color: #7a5e28;
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--text-dark);
  cursor: pointer;
}

/* ===== HERO BANNER ===== */
.hero {
  height: 700px;
  background-image: url('assets/images/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 46, 42, 0.9) 0%, rgba(31, 46, 42, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-content .welcome {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content .subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 14px 36px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
}

.btn-learn-more:hover {
  background: var(--white);
  color: var(--text-dark);
}

.btn-learn-more i {
  font-size: 14px;
  transition: transform 0.3s;
}

.btn-learn-more:hover i {
  transform: translateX(4px);
}

/* ===== SECTION UTILITIES ===== */
.section-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--subtitle-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.section-subtitle::after {
  content: '';
  width: 40px;
  height: 1.5px;
  background-color: var(--subtitle-color);
  display: inline-block;
}

.section-subtitle.centered {
  justify-content: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 24px;
}

/* ===== ABOUT US SECTION ===== */
.about {
  background-color: var(--light-bg);
  padding: 100px 80px;
}

.about-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1760px;
  margin: 0 auto;
}

.about-left {
  flex: 1;
  padding-right: 20px;
}

.about-left p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.btn-read-more {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 14px 36px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border-radius: 4px;
  margin-top: 20px;
  transition: background-color 0.3s, transform 0.2s;
}

.btn-read-more:hover {
  background-color: #7a5e28;
  transform: translateY(-2px);
}

.about-right {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.ceo-photo-container {
  position: relative;
  width: 100%;
  max-width: 540px;
}

.ceo-photo-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.ceo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(99, 75, 29, 0.95) 0%, rgba(99, 75, 29, 0.7) 60%, transparent 100%);
  padding: 40px 30px 30px;
  border-radius: 0 0 8px 8px;
}

.ceo-overlay h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.ceo-overlay p {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

/* ===== PRESENCE SECTION ===== */
.presence {
  height: 850px;
  background-image: url('assets/images/presence-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.presence::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(99, 75, 29, 0.93);
  z-index: 1;
}

.presence-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
}

.presence-left {
  flex: 1.2;
}

.presence-left .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.presence-left .section-subtitle::after {
  background-color: rgba(255, 255, 255, 0.4);
}

.presence-left .section-title {
  color: var(--white);
  font-size: 44px;
}

.presence-map {
  margin-top: 40px;
}

.presence-map img {
  width: 100%;
  max-width: 700px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.presence-right {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.country-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s, background 0.3s;
}

.country-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.22);
}

.country-card img {
  width: 60px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.country-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

.country-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 100px 80px;
  background-color: var(--white);
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  max-width: 1760px;
  margin-left: auto;
  margin-right: auto;
}

.services-header-left .section-title {
  margin-bottom: 0;
}

.btn-view-all {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 12px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border-radius: 4px;
  transition: background-color 0.3s, transform 0.2s;
}

.btn-view-all:hover {
  background-color: #7a5e28;
  transform: translateY(-2px);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1760px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  overflow: visible;
}

.service-card-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.service-card-polygon {
  width: 100%;
  height: 30px;
  position: relative;
  margin-top: -2px;
}

.service-card-polygon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: var(--white);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.service-card-body {
  background: var(--white);
  padding: 30px 36px 36px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-top: -2px;
}

.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.service-card-body p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card-link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.service-card-link:hover {
  gap: 14px;
}

.service-card-link i {
  font-size: 12px;
}

/* ===== CLIENTS SECTION ===== */
.clients {
  padding: 80px 0;
  background-color: var(--white);
  overflow: hidden;
}

.clients-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 80px;
}

/* Infinite scroll marquee */
.clients-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.clients-marquee::before,
.clients-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.clients-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.clients-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: clientsScroll 25s linear infinite;
}

.clients-track:hover {
  animation-play-state: paused;
}

@keyframes clientsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo-box {
  background-color: var(--white);
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 100px;
  flex-shrink: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.client-logo-box:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 30px rgba(99, 75, 29, 0.12);
  border-color: var(--primary);
}

.client-logo-box img {
  max-height: 55px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.4s ease;
}

.client-logo-box:hover img {
  filter: grayscale(0%) opacity(1);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  padding: 100px 80px;
  background-color: var(--light-bg);
}

.testimonials-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1760px;
  margin: 0 auto;
}

.testimonials-left {
  flex: 1;
}

.testimonials-left p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-top: 10px;
}

.testimonials-right {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 400px;
}

.testimonial-img-1 {
  width: 55%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

.testimonial-img-2 {
  width: 55%;
  height: 340px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: absolute;
  right: 0;
  top: 60px;
  z-index: 1;
}

/* ===== BLOG SECTION ===== */
.blog {
  padding: 100px 80px;
  background-color: var(--white);
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  max-width: 1760px;
  margin-left: auto;
  margin-right: auto;
}

.blog-header-left .section-title {
  margin-bottom: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1760px;
  margin: 0 auto;
}

.blog-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  background: var(--white);
}

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

.blog-card-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.blog-card-body {
  padding: 28px 28px 32px;
}

.blog-card-body h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 12px;
}

.blog-card-body .blog-date {
  font-family: var(--font-small);
  font-size: 14px;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card-body .blog-date i {
  font-size: 13px;
  color: var(--primary);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--dark-bg);
  padding: 80px 80px 40px;
  min-height: 670px;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 0.8fr;
  gap: 50px;
  max-width: 1760px;
  margin: 0 auto;
}

/* Footer Form Panel */
.footer-form-panel {
  background-color: var(--primary);
  border-radius: 16px;
  padding: 48px 36px;
}

.footer-form-panel .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-form-panel .section-subtitle::after {
  background-color: rgba(255, 255, 255, 0.4);
}

.footer-form-panel h3 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 30px;
}

.footer-email-input {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
}

.footer-email-input input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  border-radius: 6px 0 0 6px;
  font-family: var(--font-body);
  font-size: 14px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  outline: none;
}

.footer-email-input input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-email-input button {
  padding: 14px 24px;
  background-color: var(--dark-bg);
  color: var(--white);
  border: none;
  border-radius: 0 6px 6px 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.footer-email-input button:hover {
  background-color: #3a2a0a;
}

.footer-copyright {
  font-family: var(--font-small);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 30px;
}

/* Footer Center - Logo & Social */
.footer-center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 10px;
}

.footer-center img {
  width: 220px;
  margin-bottom: 20px;
}

.footer-center p {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 24px;
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  transition: transform 0.3s, background-color 0.3s;
}

.social-icon:hover {
  transform: translateY(-3px);
  background-color: #7a5e28;
}

/* Footer Link Columns */
.footer-links-col h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  padding-top: 10px;
}

.footer-links-col ul li {
  margin-bottom: 14px;
}

.footer-links-col ul li a {
  font-family: var(--font-small);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.footer-links-col ul li a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--primary);
  font-size: 16px;
  margin-top: 3px;
}

.footer-contact-item span {
  font-family: var(--font-small);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ===== PAGE BANNER (About Us, etc.) ===== */
.page-banner {
  height: 280px;
  background-image: url('assets/images/hero-banner.jpg');
  background-size: cover;
  background-position: center center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 80px 50px;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 46, 42, 0.85) 0%, rgba(31, 46, 42, 0.5) 100%);
  z-index: 1;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.page-banner-content h1 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 42px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.page-banner-content h1::after {
  content: '';
  width: 50px;
  height: 1.5px;
  background-color: rgba(255, 255, 255, 0.6);
  display: inline-block;
}

.page-banner-breadcrumb {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== ABOUT PAGE SPECIFIC ===== */
.about-page {
  background-color: var(--white);
}

.about-right-split {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about-ceo-image {
  flex: 0.6;
}

.about-ceo-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 8px;
}

.ceo-photo-small {
  flex: 0.4;
  max-width: 280px;
}

.ceo-photo-small img {
  height: 460px;
}

/* ===== VIDEO SECTION ===== */
.video-section {
  padding: 80px;
  background-color: var(--white);
}

.video-container {
  position: relative;
  max-width: 1760px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.play-btn:hover {
  transform: scale(1.1);
  background: var(--white);
}

.play-btn i {
  font-size: 28px;
  color: var(--primary);
  margin-left: 4px;
}

.video-iframe {
  width: 100%;
  height: 550px;
}

.video-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #d32f2f 0%, #c62828 100%);
  padding: 12px 24px;
  z-index: 3;
}

.video-ticker p {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  animation: ticker 15s linear infinite;
}

@keyframes ticker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ===== HELPING HANDS SECTION ===== */
.helping-hands {
  padding: 100px 80px;
  background-color: var(--light-bg);
}

.helping-hands-wrapper {
  display: flex;
  gap: 60px;
  max-width: 1760px;
  margin: 0 auto;
  align-items: flex-start;
}

.helping-hands-left {
  flex: 1;
}

.helping-title {
  color: var(--text-dark);
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 30px;
}

.helping-hands-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 10px;
}

.helping-hands-images img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
}

.helping-hands-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 20px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.service-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #8a6b30 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(99, 75, 29, 0.3);
}

.service-icon i {
  font-size: 22px;
  color: var(--white);
}

.service-info h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.service-info p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ===== TESTIMONIAL ABOUT PAGE ===== */
.testimonial-about {
  padding: 100px 80px;
  background-color: var(--white);
}

.testimonial-about-wrapper {
  display: flex;
  gap: 60px;
  max-width: 1760px;
  margin: 0 auto;
  align-items: flex-start;
}

.testimonial-about-left {
  flex: 1;
}

.testimonial-quote-icon {
  margin: 20px 0 0;
}

.testimonial-quote-icon i {
  font-size: 48px;
  color: var(--primary);
  opacity: 0.3;
}

.testimonial-card {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 32px;
  margin-top: 16px;
  border-left: 4px solid var(--primary);
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-author h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.testimonial-author .author-role {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--primary);
  font-style: italic;
}

.testimonial-about-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-about-images {
  position: relative;
  width: 100%;
}

.testimonial-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-nav-btns {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
}

.testimonial-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.testimonial-nav-btn:hover {
  background: var(--white);
  transform: scale(1.1);
}

.testimonial-nav-btn i {
  font-size: 16px;
  color: var(--text-dark);
}

/* Footer contact button (about page variant) */
.footer-form-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-contact-btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background-color: var(--dark-bg);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 12px;
  text-align: center;
}

.footer-contact-btn:hover {
  background-color: #3a2a0a;
}

.footer-contact-btn i {
  margin-left: 8px;
  font-size: 12px;
}

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

/* Large Desktop */
@media (max-width: 1440px) {
  .nav-logo img {
    width: 340px;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .section-title {
    font-size: 42px;
  }
}

/* Tablet Landscape */
@media (max-width: 1200px) {
  .top-header,
  .main-nav,
  .about,
  .presence,
  .services,
  .clients,
  .testimonials,
  .blog,
  .footer,
  .page-banner,
  .video-section,
  .helping-hands,
  .testimonial-about {
    padding-left: 40px;
    padding-right: 40px;
  }

  .about-wrapper,
  .testimonials-wrapper,
  .helping-hands-wrapper,
  .testimonial-about-wrapper {
    flex-direction: column;
  }

  .about-left,
  .about-right {
    padding-right: 0;
  }

  .about-right-split {
    width: 100%;
  }

  .presence-content {
    flex-direction: column;
  }

  .presence-right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

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

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

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

/* Tablet Portrait */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 110px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    gap: 20px;
    z-index: 999;
  }

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

  .mobile-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .section-title {
    font-size: 36px;
  }

  .presence {
    height: auto;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .client-logo-box {
    min-width: 160px;
    padding: 18px 24px;
  }

  .clients-marquee::before,
  .clients-marquee::after {
    width: 60px;
  }

  .page-banner {
    padding-left: 40px;
    padding-right: 40px;
  }

  .video-thumbnail,
  .video-iframe {
    height: 400px;
  }

  .helping-hands-images {
    grid-template-columns: 1fr;
  }

  .btn-contact {
    padding: 10px 24px;
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .top-header {
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
  }

  .top-header a span {
    display: none;
  }

  .main-nav {
    padding: 0 20px;
    height: 70px;
  }

  .nav-links {
    top: 70px;
  }

  .nav-logo img {
    width: 220px;
  }

  .hero {
    height: 450px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content .welcome {
    font-size: 18px;
  }

  .hero-content .subtitle {
    font-size: 14px;
  }

  .btn-learn-more {
    padding: 10px 24px;
    font-size: 14px;
  }

  .about,
  .services,
  .testimonials,
  .blog,
  .footer,
  .video-section,
  .helping-hands,
  .testimonial-about {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .clients {
    padding: 50px 0;
  }

  .clients-header {
    padding: 0 20px;
    margin-bottom: 30px;
  }

  .clients-track {
    gap: 20px;
  }

  .clients-marquee::before,
  .clients-marquee::after {
    width: 30px;
  }

  .page-banner {
    height: 180px;
    padding: 0 20px 25px;
  }

  .page-banner-content h1 {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .page-banner-breadcrumb {
    font-size: 13px;
  }

  .about-right-split {
    flex-direction: column;
  }

  .ceo-photo-small {
    max-width: 100%;
  }

  .about-ceo-image img,
  .ceo-photo-small img {
    height: 250px;
  }

  .video-section {
    padding: 40px 20px;
  }

  .video-thumbnail,
  .video-iframe {
    height: 220px;
  }

  .play-btn {
    width: 50px;
    height: 50px;
  }

  .play-btn i {
    font-size: 18px;
  }

  .video-ticker p {
    font-size: 12px;
  }

  .helping-title {
    font-size: 26px;
  }

  .testimonial-main-img {
    height: 260px;
  }

  .section-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .presence {
    padding: 60px 20px;
  }

  .presence-left .section-title {
    font-size: 28px;
  }

  .country-card {
    width: 100%;
    padding: 20px 24px;
  }

  .presence-right {
    flex-direction: column;
    align-items: stretch;
  }

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

  .blog-card-image {
    height: 220px;
  }

  .footer {
    padding: 50px 20px 30px;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-center img {
    width: 160px;
  }

  .testimonials-right {
    min-height: auto;
  }

  .testimonial-img-1 {
    width: 100%;
    height: 220px;
    position: relative;
  }

  .testimonial-img-2 {
    display: none;
  }

  .services-header,
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .ceo-photo-container img {
    height: 300px;
  }

  .service-card-image {
    height: 240px;
  }

  .service-card-body {
    padding: 20px 24px 24px;
  }

  .service-card-body h3 {
    font-size: 20px;
  }

  .testimonial-quote-icon i {
    font-size: 36px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .helping-hands-right {
    gap: 20px;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .service-icon i {
    font-size: 18px;
  }

  .btn-contact {
    padding: 10px 20px;
    font-size: 13px;
  }

  /* Prevent iOS zoom on input focus */
  input, textarea, select {
    font-size: 16px !important;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .main-nav {
    height: 65px;
  }

  .nav-links {
    top: 65px;
    padding: 20px;
    gap: 16px;
  }

  .nav-logo img {
    width: 180px;
  }

  .hero {
    height: 380px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content .welcome {
    font-size: 16px;
  }

  .section-title {
    font-size: 24px;
  }

  .page-banner {
    height: 150px;
    padding-bottom: 20px;
  }

  .page-banner-content h1 {
    font-size: 20px;
  }

  .about-ceo-image img,
  .ceo-photo-small img {
    height: 200px;
  }

  .video-thumbnail,
  .video-iframe {
    height: 180px;
  }

  .client-logo-box {
    min-width: 130px;
    height: 70px;
    padding: 14px 20px;
  }

  .client-logo-box img {
    max-height: 40px;
    max-width: 120px;
  }

  .footer-form-panel {
    padding: 28px 20px;
  }

  .footer-form-panel h3 {
    font-size: 26px;
  }

  .footer-center img {
    width: 140px;
  }

  .ceo-photo-container img {
    height: 260px;
  }

  .blog-card-image {
    height: 180px;
  }

  .service-card-image {
    height: 200px;
  }

  .testimonial-main-img {
    height: 200px;
  }

  .helping-title {
    font-size: 24px;
  }

  .presence-left .section-title {
    font-size: 24px;
  }

  .country-card {
    padding: 16px 20px;
    gap: 14px;
  }

  .country-card h3 {
    font-size: 18px;
  }

  .btn-read-more,
  .btn-view-all {
    padding: 10px 24px;
    font-size: 14px;
  }
}
