/* ===== bestultrapremiumcard.live - Ultra Luxury Banking Theme ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #0a0808;
  --bg-secondary: #0d0a0a;
  --bg-card: rgba(255, 255, 255, 0.02);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --border-glass: rgba(212, 175, 55, 0.12);
  --gold: #d4af37;
  --gold-light: #f0d68a;
  --gold-dark: #b8962e;
  --gold-glow: rgba(212, 175, 55, 0.25);
  --marble-dark: #1a1818;
  --marble-light: #2a2828;
  --cream: #f5f0e8;
  --cream-dark: #e8e0d0;
  --white: #ffffff;
  --text-primary: #f5f0e8;
  --text-secondary: #a09888;
  --gradient-hero: linear-gradient(135deg, #0a0808 0%, #1a1510 30%, #0d0a0a 70%, #0a0808 100%);
  --gradient-gold: linear-gradient(135deg, #d4af37, #f0d68a, #d4af37);
  --gradient-card: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(10, 8, 8, 0.9));
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --shadow-gold: 0 0 60px rgba(212, 175, 55, 0.1);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ===== Marble Texture Background ===== */
.marble-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.marble-bg::before {
  content: '';
  position: absolute;
  width: 200%; height: 200%;
  top: -50%; left: -50%;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.015) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
  animation: marbleShift 20s ease-in-out infinite;
}

@keyframes marbleShift {
  0%, 100% { transform: scale(1) rotate(0deg); }
  33% { transform: scale(1.05) rotate(1deg); }
  66% { transform: scale(0.98) rotate(-0.5deg); }
}

.marble-veins {
  position: absolute;
  width: 100%; height: 100%;
  background-image: 
    repeating-linear-gradient(45deg, 
      transparent, 
      transparent 100px, 
      rgba(212, 175, 55, 0.008) 100px, 
      transparent 110px),
    repeating-linear-gradient(-30deg, 
      transparent, 
      transparent 200px, 
      rgba(255, 255, 255, 0.005) 200px, 
      transparent 210px);
}

/* ===== Gold Particles ===== */
.gold-particles {
  position: fixed;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

.gold-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp 8s ease-in-out infinite;
}

@keyframes floatUp {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  20% { opacity: 0.6; }
  80% { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.gold-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.gold-particle:nth-child(2) { left: 25%; animation-delay: 1s; animation-duration: 10s; }
.gold-particle:nth-child(3) { left: 40%; animation-delay: 2s; }
.gold-particle:nth-child(4) { left: 55%; animation-delay: 3s; animation-duration: 9s; }
.gold-particle:nth-child(5) { left: 70%; animation-delay: 0.5s; }
.gold-particle:nth-child(6) { left: 85%; animation-delay: 1.5s; animation-duration: 11s; }

/* ===== Navigation ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 8, 8, 0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  transition: var(--transition);
}

nav.scrolled {
  background: rgba(10, 8, 8, 0.97);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-icon {
  width: 48px; height: 48px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--bg-primary);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
  font-family: var(--font-display);
  font-weight: 700;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  font-family: var(--font-display);
}

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

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

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  font-family: var(--font-main);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient-gold);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 12px 28px;
  background: var(--gradient-gold);
  color: var(--bg-primary) !important;
  border-radius: 0;
  font-weight: 600 !important;
  font-size: 12px !important;
  letter-spacing: 2px !important;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
  transition: var(--transition);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(212, 175, 55, 0.3); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 50px 80px;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.15);
  font-size: 11px;
  color: var(--gold);
  margin-bottom: 32px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-badge .diamond {
  font-size: 14px;
  animation: diamondShine 3s ease-in-out infinite;
}

@keyframes diamondShine {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.hero h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  font-family: var(--font-display);
  letter-spacing: -1px;
}

.hero h1 .gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.hero p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.8;
  font-weight: 300;
  font-family: var(--font-elegant);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 16px 36px;
  background: var(--gradient-gold);
  color: var(--bg-primary);
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  padding: 16px 36px;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-3px);
}

/* ===== Hero Visual ===== */
.hero-visual {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 550px;
}

.luxury-card {
  position: relative;
  width: 420px;
  height: 260px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1a1510, #2a2015, #1a1510);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(212, 175, 55, 0.08);
  overflow: hidden;
  animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(0.5deg); }
}

.luxury-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(212, 175, 55, 0.05) 100%);
  pointer-events: none;
}

.card-chip {
  width: 48px;
  height: 36px;
  background: var(--gradient-gold);
  border-radius: 4px;
  margin-bottom: 40px;
  position: relative;
}

.card-chip::after {
  content: '';
  position: absolute;
  top: 4px; left: 4px;
  width: 40px; height: 28px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
}

.card-number {
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--cream);
  margin-bottom: 24px;
  font-family: var(--font-main);
  font-weight: 300;
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-holder {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
}

.card-holder .name {
  font-size: 16px;
  color: var(--cream);
  margin-top: 4px;
  letter-spacing: 1px;
  font-family: var(--font-elegant);
}

.card-brand {
  font-size: 28px;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 2px;
}

/* ===== Trust Bar ===== */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(212, 175, 55, 0.06);
  border-bottom: 1px solid rgba(212, 175, 55, 0.06);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

.trust-item .icon { font-size: 20px; }
.trust-item .gold-check { color: var(--gold); }

/* ===== Sections Common ===== */
.section {
  padding: 120px 50px;
  position: relative;
}

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

.section-header .subtitle {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}

.section-header h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: var(--font-display);
  letter-spacing: -0.5px;
}

.section-header h2 .gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-family: var(--font-elegant);
}

/* ===== Features Grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  padding: 48px 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(212, 175, 55, 0.02));
  border: 1px solid rgba(212, 175, 55, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-gold);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(212, 175, 55, 0.12);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  font-family: var(--font-display);
  position: relative;
  z-index: 1;
  color: var(--cream);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  position: relative;
  z-index: 1;
  font-family: var(--font-elegant);
}

/* ======== */
/* ===== Stats Section ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 48px 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(212, 175, 55, 0.01));
  border: 1px solid rgba(212, 175, 55, 0.08);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.2);
}

.stat-number {
  font-size: 44px;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  height: 240px;
  background: var(--marble-dark);
  border: 1px solid rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.gallery-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: scale(1.03);
}

.gallery-item .label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ===== Footer ===== */
footer {
  padding: 60px 50px 40px;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.06);
  background: var(--bg-secondary);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  text-align: left;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.06);
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-col p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-family: var(--font-elegant);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  font-family: var(--font-elegant);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

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

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ===== Page Header ===== */
.page-header {
  padding: 180px 50px 80px;
  text-align: center;
  background: var(--gradient-hero);
  position: relative;
}

.page-header h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.page-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-family: var(--font-elegant);
}

/* ===== Contact Page ===== */
.contact-section {
  padding: 80px 50px;
  max-width: 750px;
  margin: 0 auto;
}

.contact-form {
  display: grid;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.12);
  color: var(--cream);
  font-size: 15px;
  font-family: var(--font-elegant);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.08);
}

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

.form-group select option {
  background: var(--bg-primary);
  color: var(--cream);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.08);
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  cursor: pointer;
  letter-spacing: 0;
  text-transform: none;
}

/* ===== Content Page ===== */
.content-section {
  padding: 80px 50px;
  max-width: 800px;
  margin: 0 auto;
}

.content-section h2 {
  font-size: 30px;
  margin: 50px 0 20px;
  color: var(--gold);
  font-family: var(--font-display);
}

.content-section h2:first-child {
  margin-top: 0;
}

.content-section h3 {
  font-size: 22px;
  margin: 36px 0 16px;
  color: var(--cream);
  font-family: var(--font-display);
}

.content-section p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 16px;
  font-family: var(--font-elegant);
}

.content-section ul {
  margin: 12px 0 24px;
  padding-left: 24px;
}

.content-section ul li {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
  font-family: var(--font-elegant);
}

.disclaimer-box {
  padding: 32px;
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.12);
  margin: 40px 0;
}

.disclaimer-box h3 {
  color: var(--gold);
  margin-top: 0;
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 48px; }
  .hero-visual { width: 400px; right: 2%; }
  .hero-visual .luxury-card { width: 350px; height: 220px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10, 8, 8, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  }
  .hero { flex-direction: column; padding: 120px 24px 60px; }
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 16px; }
  .hero-visual { position: relative; right: auto; top: auto; transform: none; width: 100%; margin-top: 50px; }
  .hero-visual .luxury-card { width: 100%; height: auto; min-height: 200px; padding: 24px; }
  .card-number { font-size: 18px; }
  .features-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 24px; }
  .section-header h2 { font-size: 32px; }
  .page-header { padding: 140px 24px 60px; }
  .page-header h1 { font-size: 36px; }
  .contact-section { padding: 50px 24px; }
  .content-section { padding: 50px 24px; }
  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .trust-bar { gap: 30px; padding: 30px 24px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
}
