/* ===========================
   Dr. Doğan Uysal - Main CSS
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

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

:root {
  --gold:       #B8975A;
  --gold-light: #D4B483;
  --gold-pale:  #F3EDE0;
  --dark:       #1A1A2E;
  --dark2:      #2C2C3E;
  --cream:      #FAF8F4;
  --white:      #FFFFFF;
  --text:       #3A3A3A;
  --text-light: #888888;
  --border:     #E8E0D0;
  --ff-head:    'Cormorant Garamond', serif;
  --ff-body:    'Jost', sans-serif;
  --transition: 0.35s ease;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-body); color: var(--text); background: var(--white); line-height: 1.75; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--ff-body); }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--ff-head); font-weight: 400; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
p  { font-size: 1rem; font-weight: 300; color: var(--text); }

/* --- Utility --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.bg-cream { background: var(--cream); }
.bg-dark { background: var(--dark); }

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--dark);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.section-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.8;
}

.divider-gold {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto;
}

.divider-gold.left { margin-left: 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
}
.btn-gold:hover { background: transparent; color: var(--gold); }

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

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

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height var(--transition);
}

.navbar.scrolled .navbar-inner { height: 68px; }

.navbar-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar-logo .logo-name {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.navbar-logo .logo-title {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.navbar.scrolled .logo-name { color: var(--dark); }
.navbar.scrolled .logo-title { color: var(--text-light); }

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.navbar-menu a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.navbar-menu a:hover, .navbar-menu a.active { color: var(--gold); }
.navbar-menu a:hover::after, .navbar-menu a.active::after { width: 100%; }

.navbar.scrolled .navbar-menu a { color: var(--text); }
.navbar.scrolled .navbar-menu a:hover { color: var(--gold); }

.navbar-cta {
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  color: var(--white) !important;
  background: var(--gold);
  padding: 0.65rem 1.6rem;
  transition: background var(--transition) !important;
}
.navbar-cta::after { display: none !important; }
.navbar-cta:hover { background: var(--dark) !important; color: var(--white) !important; }

.navbar.scrolled .navbar-cta { color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--dark); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(360px, 100%);
  height: 100vh;
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.5rem;
  transition: right 0.4s cubic-bezier(0.77,0,0.175,1);
}

.mobile-menu.open { right: 0; }
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

.mobile-menu-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.5rem;
  color: var(--white);
  opacity: 0.6;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu nav a {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.mobile-menu nav a:hover { color: var(--gold); }

.mobile-menu .mobile-contact {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0F0F1E 0%, #1A1A2E 50%, #2A1F3D 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(184,151,90,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(184,151,90,0.05) 0%, transparent 40%);
}

.hero-image-side {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  overflow: hidden;
}

.hero-image-side::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 200px;
  background: linear-gradient(to right, var(--dark), transparent);
  z-index: 2;
}

.hero-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.6;
}

.hero-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2A2A3E 0%, #1E1E30 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  padding-top: 80px;
}

.hero-inner { max-width: 560px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  font-weight: 300;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  bottom: 4rem;
  right: 2rem;
  z-index: 3;
  display: flex;
  gap: 3rem;
}

.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--ff-head);
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
  font-weight: 300;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 0.4rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
  0%, 100% { opacity: 0; transform: scaleY(0) translateY(-20px); }
  50% { opacity: 1; transform: scaleY(1) translateY(0); }
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5px;
  background: var(--border);
}

.service-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 3px; width: 0;
  background: var(--gold);
  transition: width 0.4s ease;
}

.service-card:hover::before { width: 100%; }
.service-card:hover { background: var(--cream); transform: translateY(-4px); }

.service-icon {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: border-color var(--transition), background var(--transition);
}
.service-card:hover .service-icon { border-color: var(--gold); background: var(--gold-pale); }

.service-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; }

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}
.service-card:hover .card-link { gap: 0.8rem; }

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

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

.about-image-frame {
  position: relative;
  padding-right: 2rem;
  padding-bottom: 2rem;
}

.about-image-frame::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80%;
  height: 80%;
  border: 2px solid var(--gold);
  z-index: -1;
}

.about-image-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--cream), var(--border));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-light);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-badge {
  position: absolute;
  bottom: 2.5rem;
  left: -2rem;
  background: var(--gold);
  color: var(--white);
  padding: 1.5rem;
  min-width: 160px;
  text-align: center;
}

.about-badge-num {
  font-family: var(--ff-head);
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 300;
}
.about-badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  opacity: 0.85;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

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

.about-feature-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.55rem;
}

.about-feature span {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 400;
}

/* --- Process / Steps --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

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

.process-num {
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--ff-head);
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 500;
}

.process-step h4 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.process-step p { font-size: 0.85rem; color: var(--text-light); }

/* --- Testimonials --- */
.testimonials-wrap { position: relative; }

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--border);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.testimonial-card::before {
  content: '"';
  font-family: var(--ff-head);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 1rem; left: 1.5rem;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.testimonial-stars span { color: var(--gold); font-size: 0.9rem; }

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-style: italic;
  font-family: var(--ff-head);
  font-weight: 400;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 1.1rem;
  color: var(--gold);
}

.testimonial-name { font-size: 0.9rem; font-weight: 500; }
.testimonial-meta { font-size: 0.75rem; color: var(--text-light); }

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

/* --- CTA Banner --- */
.cta-banner {
  background: var(--dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,151,90,0.08) 0%, transparent 60%);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.55); margin-top: 0.75rem; }
.cta-banner-actions { display: flex; gap: 1rem; flex-shrink: 0; }

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; }

.contact-info-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact-info-value { font-size: 0.95rem; color: var(--text); }

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: 0;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}

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

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

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

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: var(--dark);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,151,90,0.06) 0%, transparent 50%);
}

.page-hero-content { position: relative; z-index: 1; }
.page-hero-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.55); margin-top: 1rem; max-width: 540px; font-size: 1rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* --- Footer --- */
.footer {
  background: #0F0F1E;
  color: rgba(255,255,255,0.55);
}

.footer-main {
  padding: 70px 0 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
}

.footer-brand .logo-name {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  color: var(--white);
  display: block;
  margin-bottom: 0.3rem;
}

.footer-brand .logo-title {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
}

.footer-brand p { font-size: 0.85rem; line-height: 1.75; max-width: 280px; }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.footer-social a:hover { border-color: var(--gold); background: var(--gold); }
.footer-social a svg { width: 15px; height: 15px; stroke: currentColor; fill: none; color: rgba(255,255,255,0.6); }
.footer-social a:hover svg { color: var(--white); }

.footer-col h5 {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}
.footer-contact-item svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; min-width: 15px; margin-top: 3px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

/* --- Service Detail Page --- */
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.service-detail-content h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.service-detail-content p {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.85;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--ff-head);
  font-size: 1.1rem;
  color: var(--dark);
  gap: 1rem;
}

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--white); border-color: var(--gold); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

.sticky-card {
  position: sticky;
  top: 100px;
  background: var(--cream);
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.sticky-card h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.sticky-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.sidebar-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.sidebar-contact-item svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; }

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-in.visible { opacity: 1; }

/* --- Responsive --- */
@media (max-width: 1100px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .hero-image-side { width: 40%; }
}

@media (max-width: 900px) {
  .hero-stats { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-image-side { opacity: 0.3; width: 100%; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .sticky-card { position: static; }
}

@media (max-width: 768px) {
  .navbar-menu { display: none; }
  .hamburger { display: flex; }
  .about-badge { left: 0.5rem; }
  .about-features { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .section-pad { padding: 70px 0; }
}
