/* ============================================
   iPrint India — Creative & Colorful Theme
   ============================================ */

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

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

:root {
  --red: #C62828;
  --red-light: #EF5350;
  --orange: #F57C00;
  --gold: #F9A825;
  --teal: #00897B;
  --green: #43A047;
  --blue: #1565C0;
  --blue-light: #42A5F5;
  --purple: #7B1FA2;
  --dark: #1a1a1a;
  --charcoal: #2d2d2d;
  --gray: #6b6b6b;
  --gray-light: #999;
  --smoke: #f4f4f4;
  --white: #ffffff;
  --warm-white: #fafaf8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--dark); background: var(--warm-white); overflow-x: hidden; line-height: 1.7; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
p { font-size: 1.05rem; color: var(--gray); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-label { font-family: var(--font-body); font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: .75rem; display: inline-block; }
.section-title { margin-bottom: 1.5rem; }
.section-subtitle { font-size: 1.15rem; color: var(--gray); max-width: 600px; margin-bottom: 3rem; }
.gradient-text {
  background: linear-gradient(135deg, var(--red), var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-teal {
  background: linear-gradient(135deg, var(--teal), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body); font-size: .95rem; font-weight: 600;
  transition: var(--transition);
  cursor: pointer; border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  box-shadow: 0 4px 20px rgba(198,40,40,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(198,40,40,.4); }
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline:hover { background: var(--dark); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--dark);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn svg { width: 18px; height: 18px; }

/* ---- NAVIGATION ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 4%;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  padding: .7rem 4%;
}
.navbar.dark-nav { }
.navbar.scrolled .nav-links a { color: var(--dark); }
.navbar.scrolled .nav-links a:hover { color: var(--red); }
.nav-logo img { height: 40px; }
.navbar.scrolled .nav-logo img { height: 36px; }
.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a {
  color: #fff;
  font-size: .88rem; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: .55rem 1.5rem !important;
  border-radius: 100px;
  letter-spacing: 0 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-light) !important; }
.navbar.scrolled .nav-cta { background: var(--red) !important; color: #fff !important; }

/* Mobile Nav */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1100; background: none; border: none; padding: 4px; }
.hamburger span { width: 26px; height: 2.5px; background: #fff; border-radius: 4px; transition: var(--transition); }
.navbar.scrolled .hamburger span { background: var(--dark); }

/* ---- HERO ---- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1a1a 40%, #1a2d2d 70%, #1a1a2d 100%);
}
.hero-shapes { position: absolute; inset: 0; overflow: hidden; }
.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .3;
  animation: float 20s ease-in-out infinite;
}
.hero-shapes .shape-1 { width: 500px; height: 500px; background: var(--red); top: -10%; right: -5%; animation-delay: 0s; }
.hero-shapes .shape-2 { width: 400px; height: 400px; background: var(--orange); bottom: -15%; left: 10%; animation-delay: -7s; }
.hero-shapes .shape-3 { width: 350px; height: 350px; background: var(--teal); top: 30%; right: 25%; animation-delay: -14s; }
.hero-shapes .shape-4 { width: 300px; height: 300px; background: var(--blue); bottom: 10%; right: -5%; animation-delay: -3s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(.95); }
  75% { transform: translate(15px, 30px) scale(1.02); }
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 8%; max-width: 850px;
}
.hero-content .section-label { color: var(--gold); }
.hero-content h1 { color: #fff; margin-bottom: 1.5rem; font-size: clamp(2.8rem, 5.5vw, 4.5rem); }
.hero-content h1 em { font-style: italic; color: var(--red-light); }
.hero-content p { color: rgba(255,255,255,.7); font-size: 1.2rem; margin-bottom: 2.5rem; max-width: 560px; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  position: absolute; bottom: 4rem; right: 6%; z-index: 2;
  display: flex; gap: 3rem;
}
.hero-stat { text-align: center; }
.hero-stat .number { font-family: var(--font-display); font-size: 3rem; color: #fff; font-weight: 700; }
.hero-stat .label { font-size: .8rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.scroll-indicator span { font-size: .7rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .15em; }
.scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,.15); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: var(--red); animation: scrollDown 2s ease-in-out infinite; }
@keyframes scrollDown { 0% { top: -100%; } 50% { top: 100%; } 100% { top: 100%; } }

/* ---- ABOUT SECTION (Home) ---- */
.about-home { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1.5rem; }
.about-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.about-tag {
  padding: .45rem 1.2rem;
  border-radius: 100px;
  font-size: .82rem; font-weight: 500;
  border: 1px solid #e0e0e0;
  color: var(--gray);
  transition: var(--transition);
}
.about-tag:hover { border-color: var(--red); color: var(--red); }

.about-visual { position: relative; }
.about-visual .card-stack { position: relative; height: 450px; }
.color-card {
  position: absolute;
  width: 260px; height: 160px;
  border-radius: var(--radius);
  padding: 1.5rem;
  color: #fff;
  font-family: var(--font-display);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  cursor: default;
}
.color-card:hover { transform: scale(1.05) !important; z-index: 10 !important; }
.color-card h4 { font-size: 1.3rem; margin-bottom: .4rem; }
.color-card p { font-size: .82rem; color: rgba(255,255,255,.8); font-family: var(--font-body); }
.cc-red { background: linear-gradient(135deg, #C62828, #EF5350); top: 0; left: 0; z-index: 4; }
.cc-gray { background: linear-gradient(135deg, #424242, #757575); top: 60px; left: 140px; z-index: 3; }
.cc-green { background: linear-gradient(135deg, #2E7D32, #66BB6A); top: 170px; left: 20px; z-index: 2; }
.cc-blue { background: linear-gradient(135deg, #1565C0, #42A5F5); top: 250px; left: 160px; z-index: 1; }

/* ---- SERVICES SECTION (Home) ---- */
.services-home { background: var(--smoke); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--red); }
.service-card .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.icon-red { background: linear-gradient(135deg, rgba(198,40,40,.1), rgba(239,83,80,.1)); color: var(--red); }
.icon-orange { background: linear-gradient(135deg, rgba(245,124,0,.1), rgba(249,168,37,.1)); color: var(--orange); }
.icon-teal { background: linear-gradient(135deg, rgba(0,137,123,.1), rgba(67,160,71,.1)); color: var(--teal); }
.icon-blue { background: linear-gradient(135deg, rgba(21,101,192,.1), rgba(66,165,245,.1)); color: var(--blue); }
.icon-green { background: linear-gradient(135deg, rgba(46,125,50,.1), rgba(102,187,106,.1)); color: var(--green); }
.icon-purple { background: linear-gradient(135deg, rgba(123,31,162,.1), rgba(171,71,188,.1)); color: var(--purple); }

.service-card h3 { font-size: 1.25rem; margin-bottom: .75rem; }
.service-card p { font-size: .95rem; }
.service-card .card-line { position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--red), var(--orange), var(--gold)); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.service-card:hover .card-line { transform: scaleX(1); }

/* ---- CLIENTS MARQUEE ---- */
.clients-section { padding: 4rem 0; background: var(--white); overflow: hidden; }
.clients-section .section-label { text-align: center; display: block; margin-bottom: 2rem; }
.marquee-track { display: flex; gap: 4rem; animation: marquee 30s linear infinite; width: max-content; }
.marquee-track span {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: #ddd; white-space: nowrap;
  transition: var(--transition);
}
.marquee-track span:hover { color: var(--dark); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---- PORTFOLIO (Home) ---- */
.portfolio-home { background: var(--dark); color: #fff; }
.portfolio-home .section-label { color: var(--gold); }
.portfolio-home .section-title { color: #fff; }
.portfolio-home .section-subtitle { color: rgba(255,255,255,.5); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.portfolio-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  group: true;
}
.portfolio-card .card-bg {
  position: absolute; inset: 0;
  transition: var(--transition);
}
.portfolio-card:hover .card-bg { transform: scale(1.05); }
.portfolio-card .card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.1) 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.8rem;
  transition: var(--transition);
}
.portfolio-card:hover .card-overlay { background: linear-gradient(0deg, rgba(198,40,40,.85) 0%, rgba(0,0,0,.2) 60%); }
.portfolio-card h3 { font-size: 1.3rem; color: #fff; margin-bottom: .3rem; }
.portfolio-card span { font-size: .85rem; color: rgba(255,255,255,.6); }

/* ---- STATS BAR ---- */
.stats-bar {
  background: linear-gradient(135deg, var(--red), var(--orange), var(--gold));
  padding: 4rem 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item .stat-number { font-family: var(--font-display); font-size: 3.5rem; color: #fff; font-weight: 700; }
.stat-item .stat-label { font-size: .9rem; color: rgba(255,255,255,.8); }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.testimonial-card {
  background: var(--smoke);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
}
.testimonial-card .quote-mark {
  font-family: var(--font-display); font-size: 5rem; color: var(--red);
  line-height: 1; opacity: .15; position: absolute; top: 1rem; left: 1.5rem;
}
.testimonial-card blockquote { font-size: 1rem; color: var(--gray); margin-bottom: 1.5rem; font-style: italic; position: relative; z-index: 1; }
.testimonial-card .author { display: flex; align-items: center; gap: 1rem; }
.testimonial-card .author-info strong { display: block; font-size: .95rem; color: var(--dark); }
.testimonial-card .author-info span { font-size: .82rem; color: var(--gray-light); }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1.1rem;
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: var(--dark);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: var(--red); opacity: .08; filter: blur(80px);
}
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.5); margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.footer {
  background: #111;
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,.5);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 36px; margin-bottom: 1rem; filter: brightness(10); }
.footer-brand p { font-size: .9rem; max-width: 300px; line-height: 1.6; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 600; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: .6rem; }
.footer ul a { color: rgba(255,255,255,.5); font-size: .9rem; transition: var(--transition); }
.footer ul a:hover { color: var(--red-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem;
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
  font-size: .85rem;
}
.footer-social a:hover { border-color: var(--red); color: var(--red); }

/* ---- PAGE HEADERS (inner pages) ---- */
.page-header {
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-header.red-header { background: linear-gradient(135deg, #B71C1C, #C62828, #D32F2F); }
.page-header.teal-header { background: linear-gradient(135deg, #00695C, #00897B, #26A69A); }
.page-header.blue-header { background: linear-gradient(135deg, #0D47A1, #1565C0, #1E88E5); }
.page-header.orange-header { background: linear-gradient(135deg, #E65100, #F57C00, #FB8C00); }
.page-header.dark-header { background: linear-gradient(135deg, #1a1a1a, #2d2d2d, #333); }
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: #fff; margin-bottom: 1rem; }
.page-header p { color: rgba(255,255,255,.75); font-size: 1.2rem; max-width: 600px; }
.page-header .header-shapes { position: absolute; inset: 0; overflow: hidden; }
.page-header .header-shapes .shape {
  position: absolute; border-radius: 50%; background: rgba(255,255,255,.05);
}
.header-shapes .hs1 { width: 300px; height: 300px; top: -80px; right: -50px; }
.header-shapes .hs2 { width: 200px; height: 200px; bottom: -60px; right: 20%; }
.header-shapes .hs3 { width: 150px; height: 150px; top: 30%; right: 10%; }

/* ---- ABOUT PAGE ---- */
.values-section { background: var(--white); }
.value-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid #eee;
}
.value-row:last-child { border-bottom: none; }
.value-row.reverse .value-text { order: 2; }
.value-row.reverse .value-visual { order: 1; }
.value-color-block {
  width: 100%; height: 300px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-display); font-size: 2rem;
}
.value-text h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.value-text .value-subtitle { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; margin-bottom: .5rem; }

.team-section { background: var(--smoke); }
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}
.team-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow); }
.team-card .team-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.team-card h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; margin-bottom: .3rem; }
.team-card p { font-size: .85rem; }

/* ---- SERVICES PAGE ---- */
.service-detail {
  padding: 5rem 0;
  border-bottom: 1px solid #eee;
}
.service-detail:nth-child(even) { background: var(--smoke); }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.service-detail.reverse .service-detail-grid { direction: rtl; }
.service-detail.reverse .service-detail-grid > * { direction: ltr; }
.service-detail h3 { font-size: 2rem; margin-bottom: 1rem; }
.service-detail p { margin-bottom: 1rem; }
.service-features { list-style: none; margin-top: 1.5rem; }
.service-features li {
  padding: .6rem 0;
  font-size: .95rem;
  color: var(--gray);
  display: flex; align-items: center; gap: .75rem;
}
.service-features li::before {
  content: '✓';
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; flex-shrink: 0;
}
.service-visual {
  height: 360px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

/* ---- PORTFOLIO PAGE ---- */
.portfolio-filter { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn {
  padding: .5rem 1.5rem;
  border-radius: 100px;
  border: 1px solid #ddd;
  background: transparent;
  font-family: var(--font-body);
  font-size: .88rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray);
}
.filter-btn:hover, .filter-btn.active { background: var(--dark); color: #fff; border-color: var(--dark); }

.portfolio-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.pf-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.pf-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pf-card .pf-image {
  height: 240px;
  position: relative;
  overflow: hidden;
}
.pf-card .pf-image .pf-bg {
  position: absolute; inset: 0;
  transition: var(--transition);
}
.pf-card:hover .pf-image .pf-bg { transform: scale(1.08); }
.pf-card .pf-content { padding: 1.5rem; }
.pf-card .pf-tag { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--red); font-weight: 600; margin-bottom: .4rem; }
.pf-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.pf-card p { font-size: .9rem; }

/* ---- CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info { }
.contact-item { display: flex; gap: 1.2rem; margin-bottom: 2rem; }
.contact-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.contact-item h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; margin-bottom: .3rem; }
.contact-item p { font-size: .9rem; }

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: .88rem; font-weight: 500; margin-bottom: .5rem; color: var(--dark); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: .85rem 1.2rem;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: .95rem;
  transition: var(--transition);
  background: var(--smoke);
  color: var(--dark);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(198,40,40,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---- MAP ---- */
.map-section { background: var(--smoke); }
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #ddd;
  position: relative;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ---- PARTNERS GRID ---- */
.partners-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.5rem; }
.partner-badge {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: .9rem; font-weight: 700;
  color: var(--gray-light);
  border: 1px solid #eee;
  transition: var(--transition);
  text-align: center;
  min-height: 80px;
}
.partner-badge:hover { border-color: var(--red); color: var(--dark); transform: translateY(-2px); }

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }
.fade-up-delay-4 { transition-delay: .4s; }
.fade-up-delay-5 { transition-delay: .5s; }

/* ---- MOBILE MENU OVERLAY ---- */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(26,26,26,.98);
  z-index: 1050;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  color: #fff; font-size: 1.8rem;
  font-family: var(--font-display);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--red-light); }
.mobile-menu .close-btn {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: #fff; font-size: 2rem; cursor: pointer;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-full-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(4, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-stats { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 5%; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-full-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .value-row { grid-template-columns: 1fr; gap: 2rem; }
  .value-row.reverse .value-text { order: 1; }
  .value-row.reverse .value-visual { order: 2; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .page-header { padding: 8rem 0 3rem; }
  .section { padding: 4rem 0; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; }
}
