/* =============================================
   OLIB DESIGNS — Main Stylesheet
   Color Palette:
     Primary Navy:   #1e3a5f
     Mid Navy:       #2c5282
     Light Navy:     #3a6fa8
     Accent Gold:    #c9a84c
     Off-white:      #f8f7f4
     Light Grey:     #e8e6e1
     Dark Text:      #1a1a2e
     Mid Text:       #4a4a6a
   ============================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Raleway', 'Segoe UI', sans-serif;
  color: #1a1a2e;
  background-color: #f8f7f4;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  line-height: 1.2;
  color: #1e3a5f;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 500; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; }

p {
  font-size: 1rem;
  color: #4a4a6a;
  line-height: 1.8;
}

/* ---- Utility Classes ---- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #4a4a6a;
  max-width: 600px;
  margin-bottom: 3rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: #1e3a5f;
  color: #f8f7f4;
}

.btn-primary:hover {
  background-color: #2c5282;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 95, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: #f8f7f4;
  border: 1.5px solid #f8f7f4;
}

.btn-outline:hover {
  background-color: #f8f7f4;
  color: #1e3a5f;
  transform: translateY(-2px);
}

.btn-gold {
  background-color: #c9a84c;
  color: #1a1a2e;
}

.btn-gold:hover {
  background-color: #b8963d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

/* ---- Divider ---- */
.divider {
  width: 50px;
  height: 2px;
  background-color: #c9a84c;
  margin: 1rem 0 1.5rem;
}

.divider-center {
  margin: 1rem auto 1.5rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 1.5rem 0;
}

#navbar.scrolled {
  background-color: rgba(30, 58, 95, 0.97);
  padding: 0.9rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}

.nav-logo img:hover {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248, 247, 244, 0.85);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: #c9a84c;
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f8f7f4;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1e3a5f !important;
  background-color: #c9a84c;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  transition: background-color 0.3s, transform 0.3s !important;
}

.nav-cta:hover {
  background-color: #b8963d !important;
  transform: translateY(-1px);
  color: #1a1a2e !important;
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #f8f7f4;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #1e3a5f;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #f8f7f4;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: #c9a84c;
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 25, 47, 0.82) 0%,
    rgba(10, 25, 47, 0.55) 55%,
    rgba(10, 25, 47, 0.25) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  color: #f8f7f4;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-title span {
  color: #c9a84c;
}

.hero-desc {
  color: rgba(248, 247, 244, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 520px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(248, 247, 244, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
  stroke: rgba(248, 247, 244, 0.6);
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 2;
  display: flex;
  gap: 0.6rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(248, 247, 244, 0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.slider-dot.active {
  background-color: #c9a84c;
  transform: scale(1.3);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
#about {
  padding: 7rem 0;
  background-color: #f8f7f4;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
}

.about-image-accent {
  position: absolute;
  width: 55%;
  height: 220px;
  object-fit: cover;
  bottom: -2.5rem;
  right: -2.5rem;
  border: 6px solid #f8f7f4;
  border-radius: 2px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.about-badge {
  position: absolute;
  top: 2rem;
  left: -2rem;
  background-color: #1e3a5f;
  color: #f8f7f4;
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(30,58,95,0.3);
}

.about-badge .badge-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #c9a84c;
  line-height: 1;
}

.about-badge .badge-text {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
  margin-top: 0.3rem;
  color: rgba(248,247,244,0.85);
}

.about-text .section-subtitle {
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(30, 58, 95, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.feature-icon svg {
  width: 16px;
  height: 16px;
  stroke: #1e3a5f;
}

.feature-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e3a5f;
  font-family: 'Raleway', sans-serif;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
#services {
  padding: 7rem 0;
  background-color: #1e3a5f;
}

#services .section-tag {
  color: #c9a84c;
}

#services .section-title {
  color: #f8f7f4;
}

#services .section-subtitle {
  color: rgba(248, 247, 244, 0.75);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background-color: rgba(255,255,255,0.08);
}

.service-card {
  background-color: #1e3a5f;
  padding: 2.5rem 2rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #c9a84c;
  transition: width 0.4s ease;
}

.service-card:hover {
  background-color: #243f6b;
  transform: translateY(-3px);
}

.service-card:hover::before {
  width: 100%;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.2rem;
  color: #c9a84c;
}

.service-card h3 {
  color: #f8f7f4;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: rgba(248, 247, 244, 0.7);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
#portfolio {
  padding: 7rem 0;
  background-color: #f8f7f4;
}

.portfolio-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border: 1.5px solid #d0cec9;
  background: transparent;
  color: #4a4a6a;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #1e3a5f;
  border-color: #1e3a5f;
  color: #f8f7f4;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

.portfolio-item.wide {
  grid-column: span 2;
}

.portfolio-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item.wide img {
  height: 340px;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,47,0.85) 0%, rgba(10,25,47,0.2) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h4 {
  color: #f8f7f4;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.portfolio-overlay span {
  font-size: 0.78rem;
  color: #c9a84c;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
#process {
  padding: 7rem 0;
  background-color: #f0ede8;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 1rem;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 1px;
  background: linear-gradient(to right, #c9a84c, rgba(201,168,76,0.2));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #1e3a5f;
  color: #f8f7f4;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 3px solid #c9a84c;
  transition: background-color 0.3s, transform 0.3s;
}

.process-step:hover .step-number {
  background-color: #c9a84c;
  color: #1a1a2e;
  transform: scale(1.1);
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #1e3a5f;
}

.process-step p {
  font-size: 0.9rem;
  color: #4a4a6a;
}

/* ============================================
   TOOLS SECTION
   ============================================ */
#tools {
  padding: 5rem 0;
  background-color: #1e3a5f;
  text-align: center;
}

#tools .section-tag { color: #c9a84c; }
#tools .section-title { color: #f8f7f4; }
#tools .section-subtitle { color: rgba(248,247,244,0.7); margin: 0 auto 3rem; }

.tools-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.tool-badge {
  background-color: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 1.2rem 2rem;
  min-width: 160px;
  transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
}

.tool-badge:hover {
  background-color: rgba(201,168,76,0.12);
  border-color: #c9a84c;
  transform: translateY(-4px);
}

.tool-badge .tool-name {
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #f8f7f4;
  letter-spacing: 0.05em;
}

.tool-badge .tool-sub {
  font-size: 0.75rem;
  color: rgba(248,247,244,0.5);
  margin-top: 0.2rem;
  font-family: 'Raleway', sans-serif;
}

/* ============================================
   WHY US SECTION
   ============================================ */
#why-us {
  padding: 7rem 0;
  background-color: #f8f7f4;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-image-wrap {
  position: relative;
}

.why-image-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 2px;
}

.why-image-overlay {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background-color: #c9a84c;
  padding: 2rem;
  max-width: 200px;
  text-align: center;
}

.why-image-overlay .stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #1e3a5f;
  line-height: 1;
}

.why-image-overlay .stat-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1e3a5f;
  margin-top: 0.4rem;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 2rem;
}

.why-point {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.why-point-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(30,58,95,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-point-icon svg {
  width: 20px;
  height: 20px;
  stroke: #1e3a5f;
}

.why-point-text h4 {
  font-size: 1rem;
  color: #1e3a5f;
  margin-bottom: 0.3rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
}

.why-point-text p {
  font-size: 0.9rem;
  color: #4a4a6a;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
  padding: 7rem 0;
  background-color: #f0ede8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 0.5rem;
}

.contact-info .section-subtitle {
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  background-color: #1e3a5f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: #f8f7f4;
}

.contact-detail-text .label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 0.2rem;
}

.contact-detail-text .value {
  font-size: 0.95rem;
  color: #1e3a5f;
  font-weight: 500;
}

/* Contact Form */
.contact-form-wrap {
  background-color: #fff;
  padding: 3rem;
  box-shadow: 0 10px 50px rgba(0,0,0,0.08);
  border-radius: 2px;
}

.contact-form-wrap h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.contact-form-wrap p {
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1e3a5f;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid #e8e6e1;
  border-radius: 2px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  color: #1a1a2e;
  background-color: #fafafa;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1e3a5f;
  box-shadow: 0 0 0 3px rgba(30,58,95,0.08);
  background-color: #fff;
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231e3a5f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 0.9rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: #1e3a5f;
}

.form-success svg {
  width: 48px;
  height: 48px;
  stroke: #c9a84c;
  margin-bottom: 1rem;
}

.form-success h3 {
  margin-bottom: 0.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background-color: #0f2238;
  color: rgba(248,247,244,0.7);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1.2rem;
}

.footer-brand p {
  color: rgba(248,247,244,0.6);
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.8;
}

.footer-col h4 {
  color: #f8f7f4;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col ul li a {
  color: rgba(248,247,244,0.6);
  font-size: 0.9rem;
  transition: color 0.3s;
  font-family: 'Raleway', sans-serif;
}

.footer-col ul li a:hover {
  color: #c9a84c;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(248,247,244,0.4);
  font-size: 0.82rem;
}

.footer-bottom a {
  color: rgba(248,247,244,0.4);
  font-size: 0.82rem;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: #c9a84c;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-accent {
    right: 1rem;
    bottom: -1.5rem;
  }

  .about-badge {
    left: 1rem;
  }

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

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

  .portfolio-item.wide {
    grid-column: span 1;
  }

  .portfolio-item.wide img {
    height: 280px;
  }

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

  .process-steps::before {
    display: none;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

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

  .about-features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .why-image-overlay {
    right: 0;
    bottom: -1rem;
  }

  .tools-grid {
    gap: 1rem;
  }

  .tool-badge {
    min-width: 130px;
    padding: 1rem 1.5rem;
  }

  .slider-dots {
    right: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    text-align: center;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}
