/* ─── STYLE VARIABLES & RESET ─── */
:root {
  --primary: #0f172a;       /* Deep Navy */
  --primary-light: #1e293b; /* Sleek Dark Slate */
  --accent: #2563eb;        /* Vibrant Royal Blue */
  --accent-light: #60a5fa;  /* Premium sky highlight */
  --accent-glow: rgba(37, 99, 235, 0.15);
  --text-dark: #0f172a;
  --text-light: #475569;
  --text-muted: #94a3b8;
  --bg-white: #ffffff;
  --bg-soft: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  
  --font-sans: 'Outfit', sans-serif;
  --font-serif: 'Merriweather', serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --shadow-sm: 0 2px 8px -2px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 12px 24px -4px rgba(15, 23, 42, 0.06), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 40px -8px rgba(15, 23, 42, 0.1), 0 8px 16px -4px rgba(15, 23, 42, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-light);
  background-color: var(--bg-soft);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── LAYOUT & CONTAINERS ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

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

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--bg-white);
  box-shadow: 0 4px 14px var(--accent-glow);
}

.btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  transition: var(--transition-smooth);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

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

.btn-ghost:hover {
  background-color: rgba(15, 23, 42, 0.05);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ─── NAVIGATION BAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 1.5rem 0;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-hs {
  background-color: var(--accent);
  color: var(--bg-white);
  font-weight: 800;
  font-size: 1.1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  letter-spacing: -0.5px;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-fast);
}

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

.nav-cta {
  background-color: var(--primary);
  color: var(--bg-white) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 9999px;
  font-weight: 600;
}

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

.nav-cta:hover {
  background-color: var(--accent);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-fast);
}

/* ─── HERO SECTION ─── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 8rem 0 5rem;
  display: flex;
  align-items: center;
  background-color: var(--bg-white);
  overflow: hidden;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 1;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background-color: rgba(37, 99, 235, 0.08);
  top: -100px;
  right: -50px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background-color: rgba(96, 165, 250, 0.08);
  bottom: -50px;
  left: -100px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--bg-soft);
  border: 1px solid var(--border-color);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
}

.title-hi {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 3rem;
  display: block;
  letter-spacing: 0;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.title-name {
  background: linear-gradient(135deg, var(--primary) 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-tagline .amp {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.stat-plus {
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: var(--border-color);
}

/* Hero Visual / Image Frame */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 0.77;
}

.profile-glow {
  position: absolute;
  inset: -15px;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  opacity: 0.45;
  filter: blur(25px);
  z-index: 1;
}

.profile-ring {
  position: absolute;
  inset: -10px;
  border: 2px solid var(--border-color);
  border-radius: 24px;
  z-index: 2;
  pointer-events: none;
  transform: rotate(-3deg);
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 3;
  border: 4px solid var(--bg-white);
  transition: var(--transition-smooth);
}

.profile-img:hover {
  transform: scale(1.02);
}

.profile-badge-floating {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-badge-floating svg {
  width: 16px;
  height: 16px;
  color: #fbbf24;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid var(--border-color);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: 50%;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}

/* ─── SECTION HEADERS ─── */
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
}

.highlight {
  position: relative;
  z-index: 1;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: var(--accent-glow);
  z-index: -1;
}

.highlight-light {
  color: var(--bg-white);
  border-bottom: 3px solid var(--accent-light);
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 1rem;
}

.section-sub-dark {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* ─── ABOUT SECTION ─── */
.about {
  padding: 7rem 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
}

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

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

.about-img-decor {
  position: absolute;
  inset: 15px -15px -15px 15px;
  border-radius: 20px;
  background-color: var(--bg-soft);
  border: 2px dashed var(--border-color);
  z-index: 1;
}

.about-img {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--bg-white);
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-img:hover {
  transform: scale(1.01);
}

.about-img-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: var(--accent);
  color: var(--bg-white);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
  z-index: 3;
}

.about-img-badge svg {
  width: 18px;
  height: 18px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-pillars {
  display: grid;
  gap: 1.25rem;
  margin: 1rem 0;
}

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

.pillar-icon {
  background-color: var(--bg-soft);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid var(--border-color);
  flex-shrink: 0;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ─── EXPERTISE SECTION ─── */
.expertise {
  position: relative;
  padding: 7rem 0;
  background-color: var(--primary);
  color: var(--bg-white);
}

.expertise-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.section-header.light .section-tag {
  color: var(--accent-light);
}

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

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

.expertise-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.expertise-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.3);
}

.expertise-card.featured {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(15, 23, 42, 0.3) 100%);
  border-color: rgba(37, 99, 235, 0.4);
}

.expertise-card.featured::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent) 0%, transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.featured-label {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: var(--accent);
  color: var(--bg-white);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(37, 99, 235, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.expertise-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--bg-white);
}

.expertise-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.card-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
}

/* ─── ACHIEVEMENTS / TIMELINE ─── */
.achievements {
  padding: 7rem 0;
  background-color: var(--bg-soft);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background-color: var(--border-color);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 2rem 3rem 2rem 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  padding: 2rem 0 2rem 3rem;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: var(--accent);
  border: 4px solid var(--bg-white);
  border-radius: 50%;
  top: 2.75rem;
  right: -8px;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.timeline-item.right .timeline-dot {
  left: -8px;
  right: auto;
}

.timeline-content {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}

.timeline-year {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  background-color: rgba(37, 99, 235, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.timeline-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ─── GALLERY / JOURNEY SECTION ─── */
.gallery {
  padding: 7rem 0;
  background-color: var(--bg-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 280px 220px;
  gap: 2rem;
}

.gallery-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-card.large {
  grid-row: span 2;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--bg-white);
  font-weight: 700;
  font-size: 1.1rem;
}

.gallery-quote {
  background-color: var(--bg-soft);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.quote-icon {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.1;
  color: rgba(37, 99, 235, 0.15);
  position: absolute;
  top: 2rem;
  left: 2rem;
}

.gallery-quote blockquote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--primary);
  font-style: italic;
  position: relative;
  z-index: 2;
  margin-bottom: 1rem;
}

.gallery-quote cite {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── TESTIMONIALS SECTION ─── */
.testimonials {
  position: relative;
  padding: 7rem 0;
  background-color: var(--primary-light);
  color: var(--bg-white);
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 80%, rgba(37, 99, 235, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

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

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.stars {
  color: #fbbf24;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  font-style: italic;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--bg-white);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--bg-white);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ─── CONTACT SECTION ─── */
.contact {
  padding: 7rem 0;
  background-color: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
}

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

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background-color: var(--bg-soft);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.contact-card:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-card span, .contact-card a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
}

.contact-card a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.contact-form {
  background-color: var(--bg-soft);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input, .form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--border-color);
  background-color: var(--bg-white);
  border-radius: 10px;
  outline: none;
  transition: var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.form-submit-btn svg {
  width: 16px;
  height: 16px;
}

.form-success {
  display: none;
  background-color: #d1fae5;
  color: #065f46;
  padding: 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

/* ─── FOOTER ─── */
.footer {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand strong {
  display: block;
  color: var(--bg-white);
  font-size: 1.1rem;
}

.footer-brand span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-copy {
  font-size: 0.9rem;
}

/* ─── ANIMATION TRIGGERS (Simple AOS) ─── */
.aos-init {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-right"].aos-init {
  transform: translateX(-30px);
}

[data-aos="fade-left"].aos-init {
  transform: translateX(30px);
}

[data-aos="fade-up"].aos-init {
  transform: translateY(30px);
}

[data-aos="zoom-in"].aos-init {
  transform: scale(0.95);
}

.aos-init.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* ─── RESPONSIVE STYLES ─── */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .title-hi {
    font-size: 2.5rem;
  }
  .hero-inner {
    gap: 2rem;
  }
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border-color);
    clip-path: circle(0% at 90% -10%);
    transition: clip-path 0.5s ease-in-out;
  }
  
  .nav-links.open {
    clip-path: circle(150% at 90% -10%);
  }
  
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2rem;
  }
  
  .hero-text {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-visual {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .profile-frame {
    max-width: 280px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-img-wrap {
    max-width: 450px;
    margin: 0 auto;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline::after {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 3.5rem;
    padding-right: 0;
    text-align: left !important;
  }
  
  .timeline-item.right {
    left: 0;
  }
  
  .timeline-dot {
    left: 12px !important;
    right: auto !important;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .gallery-card.large {
    grid-row: auto;
    height: 300px;
  }
  
  .gallery-card {
    height: 250px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid .testimonial-card:last-child {
    grid-column: auto;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-inner {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-brand {
    flex-direction: column;
  }
}
