/* AMOTEPORTUGAL - Zamilujte se s námi do Portugalska */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
  /* Portuguese palette */
  --azulejo-blue: #1B4B8A;
  --azulejo-light: #3B7DD8;
  --tile-white: #F5F0E8;
  --sunset-gold: #D4912A;
  --sunset-orange: #C4642A;
  --sunset-rose: #B85A5A;
  --terracotta: #C67B4B;
  --warm-cream: #FAF5ED;
  --warm-sand: #F2E8D5;
  --deep-navy: #0D2240;
  --olive-dark: #2A3A2A;
  --text-primary: #1A1A2E;
  --text-secondary: #4A4A5A;
  --text-light: #7A7A8A;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(13,34,64,0.08);
  --shadow-md: 0 4px 20px rgba(13,34,64,0.12);
  --shadow-lg: 0 8px 40px rgba(13,34,64,0.16);
  --shadow-xl: 0 16px 60px rgba(13,34,64,0.2);
}

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

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

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-primary);
  background: var(--warm-cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══ TYPOGRAPHY ═══ */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.font-serif { font-family: 'Lora', serif; }
.font-display { font-family: 'Playfair Display', serif; }

/* ═══ AZULEJO PATTERN OVERLAY ═══ */
.azulejo-pattern {
  position: relative;
}
.azulejo-pattern::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(27,75,138,0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(27,75,138,0.03) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(27,75,138,0.015) 30px, rgba(27,75,138,0.015) 31px),
    repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(27,75,138,0.015) 30px, rgba(27,75,138,0.015) 31px);
  pointer-events: none;
  z-index: 0;
}

/* ═══ NAVIGATION ═══ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 0.6rem 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  transition: color 0.3s;
}

.nav.scrolled .nav-logo { color: var(--azulejo-blue); }

.nav-logo span {
  color: var(--sunset-gold);
}

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

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s;
}

.nav.scrolled .nav-links a { color: var(--text-secondary); }
.nav.scrolled .nav-links a:hover { color: var(--azulejo-blue); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sunset-gold);
  transition: width 0.3s ease;
}

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

.nav-cta {
  background: var(--sunset-gold) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212,145,42,0.4);
  background: var(--sunset-orange) !important;
}

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

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.nav.scrolled .nav-toggle span { background: var(--text-primary); }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(13,34,64,0.4) 0%, rgba(13,34,64,0.2) 40%, rgba(13,34,64,0.5) 80%, rgba(13,34,64,0.8) 100%),
    linear-gradient(90deg, rgba(196,100,42,0.1) 0%, transparent 50%, rgba(27,75,138,0.1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.hero-subtitle {
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  font-style: italic;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  text-align: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  margin: 0.8rem auto 0;
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 100% { transform: scaleY(0.5); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.2rem;
  border-radius: 100px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--sunset-gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--sunset-orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212,145,42,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--azulejo-blue);
  border: 2px solid var(--azulejo-blue);
}
.btn-outline:hover {
  background: var(--azulejo-blue);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(27,75,138,0.3);
}

.btn-dark {
  background: var(--deep-navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--azulejo-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ═══ SECTIONS ═══ */
.section {
  padding: 6rem 2rem;
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sunset-gold);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--deep-navy);
}

.section-subtitle {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-style: italic;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--sunset-gold), var(--sunset-orange));
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

/* ═══ USP STRIP ═══ */
.usp-strip {
  background: var(--deep-navy);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}

.usp-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(27,75,138,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(212,145,42,0.15) 0%, transparent 60%);
}

.usp-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.usp-item {
  text-align: center;
  color: var(--white);
}

.usp-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sunset-gold);
  margin-bottom: 0.3rem;
}

.usp-text {
  font-size: 0.9rem;
  opacity: 0.8;
  letter-spacing: 0.05em;
}

/* ═══ ABOUT SECTION ═══ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.about-image-accent {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 120px;
  height: 120px;
  border: 3px solid var(--sunset-gold);
  border-radius: 1rem;
  z-index: -1;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--deep-navy);
}

.about-text .highlight {
  color: var(--sunset-gold);
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

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

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: var(--white);
  border-radius: 0.8rem;
  box-shadow: var(--shadow-sm);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sunset-gold), var(--sunset-orange));
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-feature span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ═══ SERVICES SECTION ═══ */
.services-bg {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--warm-cream);
  border-radius: 1.2rem;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(27,75,138,0.08);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--azulejo-blue), var(--azulejo-light));
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--azulejo-blue), var(--azulejo-light));
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--white);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--deep-navy);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ═══ EXPERIENCES SECTION ═══ */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.experience-card {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  height: 350px;
  cursor: pointer;
  transition: transform 0.3s;
}

.experience-card:hover {
  transform: scale(1.02);
}

.experience-card.large {
  grid-column: span 2;
  height: 450px;
}

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

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

.experience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,34,64,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.experience-overlay h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.experience-overlay p {
  color: rgba(255,255,255,0.8);
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  font-style: italic;
}

/* ═══ TESTIMONIALS ═══ */
.testimonials-bg {
  background: var(--deep-navy);
  position: relative;
  overflow: hidden;
}

.testimonials-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 0% 0%, rgba(27,75,138,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(212,145,42,0.2) 0%, transparent 50%);
}

.testimonials-bg .section-title { color: var(--white); }
.testimonials-bg .section-subtitle { color: rgba(255,255,255,0.6); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.2rem;
  padding: 2.5rem;
}

.testimonial-stars {
  color: var(--sunset-gold);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.2em;
}

.testimonial-text {
  color: rgba(255,255,255,0.85);
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azulejo-blue), var(--sunset-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
}

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

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

/* ═══ CTA SECTION ═══ */
.cta-section {
  position: relative;
  padding: 8rem 2rem;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,34,64,0.85) 0%, rgba(27,75,138,0.75) 100%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255,255,255,0.8);
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 2.5rem;
}

/* ═══ CONTACT FORM ═══ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-card {
  background: var(--deep-navy);
  border-radius: 1.5rem;
  padding: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,145,42,0.1) 0%, transparent 50%);
}

.contact-info-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.contact-info-card > p {
  color: rgba(255,255,255,0.6);
  font-family: 'Lora', serif;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 0.8rem;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.contact-item-text span {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.contact-item-text a {
  color: var(--sunset-gold);
  text-decoration: none;
}
.contact-item-text a:hover { text-decoration: underline; }

.contact-form-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 2px solid #E8E0D4;
  border-radius: 0.8rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--warm-cream);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--azulejo-blue);
  box-shadow: 0 0 0 4px rgba(27,75,138,0.1);
}

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

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

/* ═══ FOOTER ═══ */
.footer {
  background: var(--deep-navy);
  color: var(--white);
  padding: 4rem 2rem 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--azulejo-blue), var(--sunset-gold), var(--sunset-orange));
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-top: 1rem;
  line-height: 1.7;
}

.footer h4 {
  font-size: 1rem;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--sunset-gold);
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 0.8rem; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: var(--sunset-gold);
  text-decoration: none;
}

/* ═══ PAGE HEADERS ═══ */
.page-header {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--deep-navy);
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,34,64,0.7) 0%, rgba(13,34,64,0.9) 100%);
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 2rem 3rem;
}

.page-header-content h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.page-header-content p {
  color: rgba(255,255,255,0.7);
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.2rem;
}

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

.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,34,64,0.0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(13,34,64,0.4);
}

.gallery-item-overlay span {
  color: white;
  font-size: 2rem;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s;
}

.gallery-item:hover .gallery-item-overlay span {
  opacity: 1;
  transform: scale(1);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image img { height: 350px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .experiences-grid { grid-template-columns: 1fr; }
  .experience-card.large { grid-column: span 1; height: 350px; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 0;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.active { display: flex; }
  .nav-links a {
    color: var(--text-primary) !important;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    display: block;
  }
  .nav-toggle { display: flex; }
  
  .section { padding: 4rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .usp-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .about-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
}
