/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
  --background: #ffffff;
  --foreground: #1a1a1a;
  --card: #ffffff;
  --primary: #8b0000;
  --primary-light: rgba(139, 0, 0, 0.1);
  --primary-fg: #fafafa;
  --secondary: #f5f5f5;
  --muted: #f5f5f5;
  --muted-fg: #595959;
  --border: #e5e5e5;
  --navy: #141d2e;
  --navy-light: #1e2a3e;
  --navy-lighter: #283650;
  --radius: 0.5rem;
  --shadow-card: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 30px rgba(139,0,0,0.3);
  --gradient-cta: linear-gradient(135deg, #8b0000 0%, #b30000 100%);
  --gradient-cta-section: linear-gradient(135deg, #141d2e 0%, #1e2a3e 100%);
  --gradient-hero-navy: linear-gradient(135deg, #141d2e 0%, #1e2a3e 50%, #283650 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

/* ===== Layout ===== */
.container-custom {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container-custom { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container-custom { padding: 0 2rem; }
}

.min-h-screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* ===== Section Padding ===== */
.section-padding {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .section-padding { padding: 6rem 0; }
}

.section-white {
  background: var(--background);
}

.section-light {
  background: #fafafa;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: var(--navy);
}

.header-inner {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .header-inner { height: 5rem; }
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-top {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

.logo-bottom {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}

@media (min-width: 768px) {
  .logo-top { font-size: 1.25rem; }
  .logo-bottom { font-size: 1.5rem; }
}

/* Badge 24/7 */
.badge-24 {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #8b0000 0%, #cc0000 100%);
  box-shadow: 0 0 15px rgba(139,0,0,0.5);
}

.badge-24 svg {
  width: 1rem;
  height: 1rem;
}

/* Desktop Nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
}

.nav-link {
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.nav-link.active {
  background: var(--primary);
  color: #fff;
}

/* Phone button desktop */
.phone-desktop {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  transition: all 0.3s;
}

.phone-desktop:hover {
  box-shadow: var(--shadow-glow);
}

@media (min-width: 1024px) {
  .phone-desktop { display: flex; }
}

.phone-desktop svg {
  width: 1rem;
  height: 1rem;
}

/* Mobile menu button */
.menu-toggle {
  display: block;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.menu-toggle:hover {
  background: rgba(255,255,255,0.1);
}

.menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 768px) {
  .menu-toggle { display: none; }
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.nav-mobile a.active {
  background: var(--primary);
}

.nav-mobile .phone-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc, #fff, #f1f5f9);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 1px 1px, #141d2e 1px, transparent 0);
  background-size: 24px 24px;
}

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

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-content {
  animation: fadeIn 0.6s ease-out forwards;
}

.hero-subtitle-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

@media (min-width: 768px) {
  .hero-subtitle-row {
    flex-direction: row;
    align-items: center;
  }
}

.hero-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-fg);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-subtitle-line {
  width: 2rem;
  height: 1px;
  background: var(--primary);
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-top: 1.25rem;
  text-wrap: balance;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 3rem; margin-top: 1.5rem; }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 3.75rem; }
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--muted-fg);
  max-width: 32rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .hero-desc { font-size: 1.25rem; }
}

.hero-cta {
  margin-top: 1.5rem;
}

.hero-images {
  position: relative;
}

@media (min-width: 1024px) {
  .hero-images { padding-left: 2rem; }
}

.hero-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .hero-images-grid { gap: 1rem; }
}

.hero-img-wrap {
  position: relative;
  aspect-ratio: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

@media (min-width: 768px) {
  .hero-img-wrap { border-radius: 1rem; }
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.hero-img-wrap:hover img {
  transform: scale(1.05);
}

.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.hero-img-wrap:hover::after {
  opacity: 1;
}

.hero-deco-1 {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  width: 6rem;
  height: 6rem;
  background: var(--primary-light);
  border-radius: 50%;
  filter: blur(2rem);
}

.hero-deco-2 {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 8rem;
  height: 8rem;
  background: rgba(139,0,0,0.05);
  border-radius: 50%;
  filter: blur(3rem);
}

/* ===== Buttons ===== */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  background: var(--gradient-cta);
  box-shadow: var(--shadow-glow);
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-hero:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(139,0,0,0.5);
}

.btn-hero svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--foreground);
  font-weight: 600;
  transition: background 0.2s;
}

.btn-outline:hover {
  background: var(--secondary);
}

/* ===== Cards ===== */
.card-service {
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}

.card-service:hover {
  border-color: rgba(139,0,0,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.review-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-card);
}

/* ===== Icon circles ===== */
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--primary-light);
  margin-bottom: 1rem;
}

.icon-circle svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
  stroke: var(--primary);
}

.icon-circle-sm {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.icon-circle-sm svg {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-circle-lg {
  width: 4rem;
  height: 4rem;
}

.icon-circle-lg svg {
  width: 2rem;
  height: 2rem;
}

/* ===== Grid helpers ===== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

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

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

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

@media (min-width: 768px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Gallery grid */
.grid-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .grid-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid-gallery { grid-template-columns: repeat(4, 1fr); }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ===== Section hero (inner pages) ===== */
.page-hero {
  background: var(--gradient-hero-navy);
  padding: 5rem 0;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(139,0,0,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .page-hero h1 { font-size: 3rem; }
}

.page-hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.7);
}

.text-primary {
  color: var(--primary);
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--gradient-cta-section);
}

.cta-section h2 {
  color: #fff;
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-section h2 { font-size: 2.25rem; }
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.25rem;
  max-width: 40rem;
  margin: 0 auto 1.5rem;
}

/* ===== Text helpers ===== */
.text-center { text-align: center; }
.text-muted { color: var(--muted-fg); }
.text-white { color: #fff; }
.text-lg { font-size: 1.125rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-8 { margin-top: 2rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-12 > * + * { margin-top: 3rem; }

/* ===== Steps section ===== */
.step-card {
  text-align: center;
}

.step-icon-wrap {
  display: inline-block;
  position: relative;
  margin-bottom: 1.5rem;
}

.step-number {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 10;
}

.step-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  stroke: var(--primary);
}

/* ===== Stars ===== */
.stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.stars svg {
  width: 1rem;
  height: 1rem;
  fill: var(--primary);
  color: var(--primary);
  stroke: var(--primary);
}

/* ===== Quote icon ===== */
.quote-icon {
  width: 2rem;
  height: 2rem;
  color: rgba(139,0,0,0.3);
  stroke: rgba(139,0,0,0.3);
  margin-bottom: 1rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

.footer h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.footer p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact a,
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  transition: color 0.2s;
  margin-bottom: 0.75rem;
}

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

.footer-contact svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  stroke: var(--primary);
  flex-shrink: 0;
}

.footer-contact span {
  font-weight: 600;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

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

/* ===== Floating Call Button ===== */
.floating-call {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  background: var(--gradient-cta);
  box-shadow: var(--shadow-glow);
  animation: pulseGlow 2s ease-in-out infinite;
  transition: transform 0.3s;
}

.floating-call:hover {
  transform: scale(1.1);
}

.floating-call svg {
  width: 1.5rem;
  height: 1.5rem;
}

.floating-call-text {
  display: none;
}

@media (min-width: 640px) {
  .floating-call-text { display: inline; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(139,0,0,0.4); }
  50% { box-shadow: 0 0 40px rgba(139,0,0,0.7); }
}

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

/* ===== Services page: alternating layout ===== */
.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .service-row { grid-template-columns: 1fr 1fr; }
}

.service-img {
  min-height: 250px;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

@media (min-width: 1024px) {
  .service-img { min-height: 300px; }
}

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

@media (min-width: 1024px) {
  .service-row.reverse .service-content { order: 2; }
  .service-row.reverse .service-img { order: 1; }
}

.service-content .card-service {
  padding: 2rem;
}

/* Feature list */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.feature-list svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  stroke: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ===== Cenovnik factors ===== */
.grid-factors {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-factors { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-factors { grid-template-columns: repeat(3, 1fr); }
}

/* ===== FAQ Accordion ===== */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--card);
  box-shadow: var(--shadow-card);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  transition: color 0.2s;
}

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

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-fg);
}

/* ===== Kontakt ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-card {
  padding: 2rem;
}

.contact-card a,
.contact-card > div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
  stroke: var(--primary);
}

.contact-icon-lg {
  width: 4rem;
  height: 4rem;
}

.contact-icon-lg svg {
  width: 2rem;
  height: 2rem;
}

.contact-phone-text {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
}

@media (min-width: 768px) {
  .contact-phone-text { font-size: 2.25rem; }
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.map-wrap {
  height: 400px;
  min-height: 400px;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

@media (min-width: 1024px) {
  .map-wrap { height: 100%; }
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== O nama page ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-img {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-img img {
  width: 100%;
  display: block;
}

.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 0.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

/* Flex gap helper */
.flex-gap-4 {
  display: flex;
  gap: 1rem;
}

.flex-col {
  flex-direction: column;
}

.items-start {
  align-items: flex-start;
}

/* ===== SVG icon default styling ===== */
svg {
  display: inline-block;
  vertical-align: middle;
}

/* ===== Utility: visually hidden ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ===== Print ===== */
@media print {
  .header, .footer, .floating-call, .cta-section { display: none; }
}
