/* ============================================
   REZEKI SECURITY SERVICES SDN BHD
   RSS Security Style - Corporate Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --gold: #E9AF21;
  --gold-dark: #D49D1A;
  --black: #000000;
  --dark: #1A1A1A;
  --white: #ffffff;
  --light: #f8f8f8;
  --gray: #666666;
  --gray-light: #999999;
  --border: #e0e0e0;
  --font: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: #333;
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--black);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.8rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a { color: var(--gold); }
.top-bar a:hover { text-decoration: underline; }

/* ===== NAVIGATION ===== */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
  padding-bottom: 6px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo {
  height: 60px;
  width: auto;
  transition: var(--transition);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--black);
  line-height: 1.1;
  text-transform: uppercase;
  transition: var(--transition);
}

.nav-brand-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1.1;
  margin-top: 2px;
  transition: var(--transition);
}

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

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  color: #444;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: var(--black); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--black); transition: var(--transition); }
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }
.nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; opacity: 0; visibility: hidden; transition: var(--transition); }
.nav-overlay.active { opacity: 1; visibility: visible; }

.section-gold-bg {
  background: var(--gold);
  color: var(--black);
}

.section-gold-bg h2, .section-gold-bg p {
  color: var(--black) !important;
}

.section-gold-bg .section-divider {
  background: var(--black);
}

.section-gold-bg h3 {
  color: var(--black) !important;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover { background: #333; }

/* ===== SECTION ===== */
.section { padding: 80px 0; }
.section-gray { background: var(--light); }
.section-dark { background: var(--black); color: var(--white); }
.section-gold { background: var(--gold); color: var(--black); }

.section-header { text-align: left; margin-bottom: 50px; }

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: var(--black);
  text-transform: uppercase;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin: 12px 0 20px;
}

.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p { color: #ccc; }

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-slide {
  position: relative;
  height: 85vh;
  min-height: 450px;
  display: none;
  align-items: center;
}

.hero-slide.active { display: flex; }

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.4) 100%);
}

.hero-slide-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: var(--gold);
  opacity: 0.1;
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0% 100%);
  z-index: 1;
}

.hero-slide-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 30%;
  height: 60%;
  background: var(--gold);
  opacity: 0.05;
  clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 100px 0 60px;
  text-align: left;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--white);
  letter-spacing: -0.5px;
}

.hero-content h1 .gold { color: var(--gold); }

.hero-content p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 30px;
  max-width: 500px;
  line-height: 1.6;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-arrows {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 5;
  display: flex;
  gap: 8px;
}

.hero-arrow {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.hero-arrow:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.hero-dot.active { background: var(--gold); }

/* ===== ABOUT SUMMARY ===== */
.about-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-summary h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.about-summary h2 .gold { color: var(--gold); }

.about-summary p {
  color: var(--gray);
  margin-bottom: 14px;
  line-height: 1.8;
}

.about-image {
  background: var(--light);
  border-radius: 8px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: var(--gold);
  transform: translateY(-10px);
}

.service-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--light);
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.1);
}

.service-card-content {
  padding: 24px;
  flex-grow: 1;
}

.service-icon {
  display: none; /* Hide old emojis */
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
  text-transform: uppercase;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-link:hover { color: var(--gold-dark); }

/* ===== SLDN SECTION ===== */

.sldn-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sldn-text {
  text-align: left;
}

.sldn-text p {
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.sldn-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(240, 185, 11, 0.2);
  transition: var(--transition);
  background: var(--black);
}

.sldn-visual:hover {
  transform: scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 35px 70px -15px rgba(240, 185, 11, 0.15);
}

.sldn-image-frame {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: block;
}

.sldn-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.sldn-visual:hover .sldn-image-frame img {
  transform: scale(1.08);
}

.sldn-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240, 185, 11, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.sldn-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(240, 185, 11, 0.1);
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: #ccc;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
}

.contact-text p, .contact-text a {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

.contact-text a:hover { color: var(--gold); }

.form-group { margin-bottom: 16px; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: #333;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== DARK CONTACT FORM (GOT A QUESTION) ===== */
.contact-section-dark {
  background: #000;
  padding: 100px 0;
  overflow: hidden;
}

.contact-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-card-dark {
  background: #141414;
  padding: 50px;
  border-radius: 24px;
  border: 1px solid rgba(240, 185, 11, 0.1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  width: 100%;
}

.contact-image-side {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(240, 185, 11, 0.1);
}

.contact-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.contact-image-side:hover img {
  transform: scale(1.05);
}

/* Custom Animations */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.contact-card-dark h2 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.contact-card-dark p {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 35px;
  line-height: 1.6;
}

.form-group-dark {
  margin-bottom: 25px;
  position: relative;
}

.form-group-dark input,
.form-group-dark select,
.form-group-dark textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #333;
  padding: 12px 0;
  color: #fff;
  font-family: var(--font);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.form-group-dark input::placeholder,
.form-group-dark textarea::placeholder {
  color: #555;
}

.form-group-dark input:focus,
.form-group-dark select:focus,
.form-group-dark textarea:focus {
  border-bottom-color: var(--gold);
}

.form-group-dark textarea {
  min-height: 45px;
  resize: none;
  overflow: hidden;
}

.form-group-dark select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 20px;
}

.form-row-dark {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.btn-gold-full {
  width: 100%;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 20px;
}

.btn-gold-full:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(233, 175, 33, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 100px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
}

.footer-brand .footer-logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.9rem;
  color: #999;
  line-height: 1.7;
  max-width: 320px;
}

.footer h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer ul li { margin-bottom: 8px; }

.footer ul li a {
  font-size: 0.9rem;
  color: #999;
  transition: var(--transition);
}

.footer ul li a:hover { color: var(--gold); padding-left: 3px; }

.footer-contact p {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-contact a {
  color: var(--gold);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #666;
}

.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== GLOBAL PAGE HEADER ===== */
.page-header {
  position: relative;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--black);
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-slide-3.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(8px) brightness(0.5);
  transform: scale(1.1);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 5;
}

.page-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.breadcrumb {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--gold);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  margin: 0 8px;
  color: rgba(255,255,255,0.3);
}

/* ===== TIMELINE ===== */
.timeline { position: relative; max-width: 800px; margin: 40px auto 0; }
.timeline::before { content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: var(--gold); }
.timeline-item { display: flex; gap: 32px; margin-bottom: 36px; position: relative; }
.timeline-dot { position: absolute; left: 17px; top: 4px; width: 16px; height: 16px; background: var(--white); border: 3px solid var(--gold); border-radius: 50%; z-index: 2; }
.timeline-year { font-size: 1.1rem; font-weight: 700; color: var(--gold); min-width: 80px; padding-left: 48px; }
.timeline-text { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

/* ===== VALUES ===== */
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.value-card { text-align: center; padding: 28px 12px; border: 1px solid var(--border); border-radius: 8px; transition: var(--transition); }
.value-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.value-icon { font-size: 2rem; margin-bottom: 10px; }
.value-name { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }

/* ===== LEADERSHIP ===== */
.leadership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.leader-card { padding: 36px 24px; border: 1px solid var(--border); border-radius: 8px; text-align: center; transition: var(--transition); }
.leader-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.leader-avatar { width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 16px; background: var(--light); border: 2px solid var(--border); overflow: hidden; display: flex; align-items: center; justify-content: center; }

.leader-avatar img { width: 100%; height: 100%; object-fit: cover; }
.leader-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.leader-title { font-size: 0.75rem; color: var(--gold); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.leader-bio { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ===== CRESCENT PORTRAIT ===== */
.crescent-portrait {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #1a2a44;
  box-shadow: -8px 8px 0 0 #1a2a44;
  background: #ddd;
  display: inline-block;
}

.crescent-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.crescent-portrait-dark {
  border-color: var(--gold);
  box-shadow: -8px 8px 0 0 var(--gold);
}

/* ===== MV GRID ===== */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-card { padding: 36px; border: 1px solid var(--border); border-radius: 8px; text-align: center; transition: var(--transition); }
.mv-card:hover { border-color: var(--gold); }
.mv-icon { font-size: 2.5rem; margin-bottom: 12px; }
.mv-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.mv-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ===== PAGE CONTENT ===== */
.page-content { padding: 60px 0; }
.content-text h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 16px; }
.content-text p { color: var(--gray); margin-bottom: 14px; line-height: 1.8; }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* ===== MAP ===== */
.map-container { margin-top: 40px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.map-container iframe { width: 100%; height: 300px; border: 0; }

/* ===== BRANCHES ===== */
.branches-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; }
.branch-card { padding: 24px; border: 1px solid var(--border); border-radius: 8px; }
.branch-card h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; }
.branch-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }
.branch-card a { color: var(--gold); font-size: 0.85rem; }


/* ===== RESPONSIVE UTILITIES ===== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  padding: 50px 0;
}

.message-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
}

.message-grid-reverse {
  grid-template-columns: 1fr 280px;
}

.directors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.management-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.drone-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .directors-grid { grid-template-columns: repeat(2, 1fr); }
  .management-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .drone-capabilities-grid { grid-template-columns: repeat(2, 1fr); }
  .drone-capabilities-grid .stats-image-container { grid-column: span 2; }
}

@media (max-width: 768px) {
  /* Navbar logo & brand title */
  .nav-logo { height: 45px; }
  .nav-brand-name { font-size: 0.95rem; }
  .nav-brand-sub { font-size: 0.55rem; letter-spacing: 1px; }

  /* Responsive Grids */
  .about-intro-grid { grid-template-columns: 1fr; gap: 30px; padding: 20px 0; }
  .about-intro-grid .about-image { min-height: 280px !important; }

  .message-grid, .message-grid-reverse { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .message-grid .crescent-portrait, .message-grid-reverse .crescent-portrait { margin: 0 auto; }
  .message-grid-reverse { display: flex; flex-direction: column-reverse; }
  .message-grid-reverse > div:first-child { margin-top: 10px; }

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

  .drone-capabilities-grid { grid-template-columns: 1fr; }
  .drone-capabilities-grid .stats-image-container { grid-column: span 1; min-height: 280px; }

  .page-header { height: 180px; }
  .page-header h1 { font-size: 2rem; letter-spacing: 2px; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--white); flex-direction: column; justify-content: center;
    gap: 28px; padding: 40px; transition: var(--transition);
    border-left: 1px solid var(--border); z-index: 999;
  }
  .nav-links.active { right: 0; }
  .nav-links a { font-size: 0.95rem; }
  .nav-hamburger { display: flex; }

  .top-bar .container { flex-direction: column; gap: 4px; font-size: 0.7rem; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 0.95rem; }
  .about-summary { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sldn-content { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .sldn-text { text-align: center !important; }
  .sldn-visual { order: -1; margin-bottom: 10px; } /* Put image above text on mobile */
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: 1fr; }
  .section-header { text-align: center; }
  .section-divider { margin: 12px auto 20px; }
  .section-header h2 { font-size: 1.8rem; }
  .hero-content { text-align: center; padding: 60px 0; }
  .hero-actions { justify-content: center; }
}

@media (max-width: 600px) {
  .directors-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.5rem; }
  .hero-slide { height: 70vh; min-height: 350px; }
  .page-header h1 { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 5px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: translateY(-5px);
  color: #FFF;
  box-shadow: 2px 8px 20px rgba(0,0,0,0.4);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (max-width: 1024px) {
  .contact-grid-layout { gap: 40px; }
  .contact-card-dark { padding: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .contact-grid-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-image-side { min-height: 350px; order: -1; }
  .form-row-dark { grid-template-columns: 1fr; gap: 0; }
  .contact-card-dark { padding: 30px; }
  .contact-card-dark h2 { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand { grid-column: span 1; }
  .footer-brand p { max-width: 100%; margin: 0 auto; }
  .footer-socials { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}
