/* ============================================
   DOLOOK - Corporate Website Styles
   ============================================ */

:root {
  --primary: #1d5b96;
  --primary-dark: #134066;
  --primary-light: #2a7bc4;
  --secondary: #949494;
  --accent: #2196f3;
  --dark: #1a2332;
  --grey: #64748b;
  --grey-light: #94a3b8;
  --bg: #ffffff;
  --bg-light: #f5f8fc;
  --bg-dark: #0d1b2a;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(29, 91, 150, 0.08);
  --shadow-lg: 0 12px 48px rgba(29, 91, 150, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--bg);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

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

.btn--white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

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

.btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn--full {
  width: 100%;
}

/* Section utilities */
.section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 18px;
  color: var(--grey);
  max-width: 600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header--light .section-title {
  color: var(--white);
}

.section-header--light .section-label {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
  border-bottom-color: rgba(21, 101, 168, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.header__logo img {
  height: 44px;
  width: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  border-radius: 6px;
  transition: all var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--primary);
  background: rgba(21, 101, 168, 0.06);
}

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

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all var(--transition);
  border-radius: 2px;
}

.header__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 64, 112, 0.92) 0%,
    rgba(21, 101, 168, 0.75) 50%,
    rgba(13, 27, 42, 0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--header-height) + 40px) 24px 80px;
  max-width: 900px;
}

.hero__badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 2px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}

.hero__title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero__title span {
  display: block;
}

.hero__subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.8;
}

.hero__tagline {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  font-style: italic;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   Values
   ============================================ */
.values {
  padding: 0;
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.values--page {
  margin-top: 0;
  padding: 80px 0;
  background: var(--bg-light);
}

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

.value-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: transform var(--transition);
}

.value-card:hover {
  transform: translateY(-8px);
}

.value-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--primary);
}

.value-card__icon svg {
  width: 100%;
  height: 100%;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
}

/* ============================================
   About
   ============================================ */
.about {
  padding: 120px 0;
  background: var(--bg-light);
}

.about--page {
  padding: 80px 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__image {
  position: relative;
}

.about__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.about__image-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.15;
}

.about__text {
  font-size: 17px;
  color: var(--grey);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about__tagline {
  color: var(--primary);
  font-size: 18px;
}

/* ============================================
   Stats
   ============================================ */
.stats {
  padding: 100px 0;
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  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");
}

.stats__title {
  text-align: center;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 56px;
  position: relative;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

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

.stat-item__number {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  line-height: 1;
}

.stat-item__suffix {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}

.stat-item__label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}

/* ============================================
   Services
   ============================================ */
.services {
  padding: 120px 0;
}

.services--page {
  padding: 80px 0;
}

.services__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.services__tab {
  padding: 14px 32px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--grey);
  background: var(--bg-light);
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.services__tab:hover {
  color: var(--primary);
}

.services__tab.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.services__panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.services__panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(21, 101, 168, 0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card--wide {
  grid-column: span 3;
  display: flex;
  align-items: center;
  gap: 24px;
}

.service-card--wide .service-card__icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.service-card__icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
}

.services__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.services__list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border-right: 4px solid var(--primary);
  transition: all var(--transition);
}

.services__list-item:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateX(-4px);
}

.services__list-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.4;
  flex-shrink: 0;
}

.services__list-item p {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
}

/* ============================================
   Why Us
   ============================================ */
.why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

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

.why-card__num {
  font-size: 48px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

/* ============================================
   Terms
   ============================================ */
.terms {
  padding: 120px 0;
  background: var(--bg-light);
}

.terms--page {
  padding: 80px 0;
}

.terms__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.terms__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.terms__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  color: var(--dark);
  line-height: 1.7;
}

.terms__list li svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.terms__highlight {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.terms__highlight-inner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  color: var(--white);
  text-align: center;
}

.terms__highlight-inner h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.terms__highlight-inner > p {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 32px;
}

.terms__payment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.terms__payment-item {
  text-align: center;
}

.terms__payment-percent {
  display: block;
  font-size: 40px;
  font-weight: 700;
}

.terms__payment-label {
  font-size: 14px;
  opacity: 0.8;
}

.terms__payment-divider {
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   Contact
   ============================================ */
.contact {
  padding: 120px 0;
}

.contact--page {
  padding: 80px 0;
}

.contact__form-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.contact__card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact__card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 10px;
  color: var(--white);
  flex-shrink: 0;
}

.contact__card-icon svg {
  width: 22px;
  height: 22px;
}

.contact__card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--grey);
  margin-bottom: 4px;
}

.contact__card a,
.contact__card p {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  display: block;
}

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

.contact__person {
  margin-top: 8px;
  padding: 20px 24px;
  background: var(--primary);
  border-radius: var(--radius);
  color: var(--white);
}

.contact__person strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.contact__person span {
  font-size: 14px;
  opacity: 0.85;
}

.contact__form {
  background: var(--white);
  border: 1px solid rgba(21, 101, 168, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 15px;
  color: var(--dark);
  background: var(--bg-light);
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey-light);
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 16px;
  background: #ecfdf5;
  color: #065f46;
  border-radius: 8px;
  font-size: 15px;
  text-align: center;
}

.form-success.show {
  display: block;
  animation: fadeIn 0.4s ease;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand img {
  margin-bottom: 20px;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 8px;
  width: auto;
  height: 52px;
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.8;
}

.footer__links h4,
.footer__contact h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  transition: color var(--transition);
}

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

.footer__contact p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

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

.footer__bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  color: #fff;
}

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

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Page Hero (inner pages)
   ============================================ */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-height);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 64, 112, 0.9) 0%, rgba(21, 101, 168, 0.8) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 60px 24px;
  text-align: center;
  color: var(--white);
}

.page-hero__content h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 12px;
}

.page-hero__content p {
  font-size: 18px;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

.section-label--light {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   Services Preview (home page)
   ============================================ */
.services-preview {
  padding: 100px 0;
  background: var(--bg-light);
}

.services-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.preview-card {
  display: block;
  background: var(--white);
  border: 1px solid rgba(21, 101, 168, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}

.preview-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.preview-card__icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.preview-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.preview-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 16px;
}

.preview-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--white);
}

.cta-banner__inner h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 8px;
}

.cta-banner__inner p {
  font-size: 16px;
  opacity: 0.85;
}

.cta-banner .btn--white {
  flex-shrink: 0;
}

/* ============================================
   Brochure Section
   ============================================ */
.brochure {
  padding: 100px 0;
  background: var(--white);
}

.brochure__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.brochure__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(29, 91, 150, 0.1);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .service-card--wide {
    grid-column: span 2;
  }

  .why-us__grid {
    grid-template-columns: 1fr;
  }

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

  .terms__highlight {
    position: static;
  }

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

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

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    z-index: 999;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav__list {
    flex-direction: column;
    gap: 4px;
  }

  .nav__link {
    display: block;
    padding: 12px 16px;
    font-size: 16px;
  }

  .header__cta {
    display: none;
  }

  .header__toggle {
    display: flex;
  }

  .values {
    margin-top: -40px;
  }

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

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

  .service-card--wide {
    grid-column: span 1;
    flex-direction: column;
    text-align: center;
  }

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

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

  .services__tab {
    text-align: center;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .page-hero {
    min-height: 280px;
  }

  .contact__form {
    padding: 28px 20px;
  }
}
