/* ===== RESET & BASE ===== */
*,*::before,*::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #0c4a6e;
  --primary-light: #0369a1;
  --accent: #ea580c;
  --accent-light: #fb923c;
  --dark: #0f172a;
  --secondary: #1e293b;
  --text: #334155;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --light: #f8fafc;
  --lighter: #f1f5f9;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 20px -5px rgba(0,0,0,0.08), 0 4px 8px -4px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 40px -10px rgba(0,0,0,0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
h1,h2,h3,h4,h5,h6 { color: var(--secondary); line-height: 1.2; font-weight: 700; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 16px; letter-spacing: -0.5px; }
.section-header p { font-size: 1.1rem; color: var(--text-light); max-width: 560px; margin: 0 auto; }
.section-tag { display: inline-block; font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 12px; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9375rem; cursor: pointer; transition: all var(--transition); border: 2px solid transparent; font-family: inherit; white-space: nowrap; }
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: #c2410c; border-color: #c2410c; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(234,88,12,0.3); }
.btn-ghost { background: transparent; color: var(--secondary); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--secondary); transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVIGATION ===== */
.main-nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(255,255,255,0); backdrop-filter: blur(0px); transition: all var(--transition); padding: 16px 0; }
.main-nav.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); box-shadow: 0 1px 3px rgba(0,0,0,0.06); padding: 10px 0; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-logo { font-size: 1.375rem; font-weight: 800; color: var(--secondary); letter-spacing: -0.5px; }
.main-nav:not(.scrolled) .nav-logo { color: var(--white); }
.nav-links { display: flex; list-style: none; gap: 4px; margin-left: auto; }
.nav-links a { color: var(--text-light); padding: 8px 14px; border-radius: var(--radius-xs); font-weight: 500; font-size: 0.875rem; transition: all var(--transition); }
.nav-links a:hover { color: var(--secondary); background: var(--lighter); }
.main-nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.85); }
.main-nav:not(.scrolled) .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.12); }
.nav-cta { flex-shrink: 0; }
.main-nav:not(.scrolled) .nav-cta { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); color: var(--white); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--secondary); transition: all var(--transition); border-radius: 2px; }
.main-nav:not(.scrolled) .nav-toggle span { background: var(--white); }

/* ===== HERO: SPLIT SCREEN ===== */
.hero { min-height: 100vh; background: var(--primary); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -30%; width: 80%; height: 200%; background: rgba(255,255,255,0.03); border-radius: 50%; }
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-block; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); padding: 8px 18px; border-radius: 100px; font-size: 0.8125rem; font-weight: 600; margin-bottom: 24px; letter-spacing: 0.5px; border: 1px solid rgba(255,255,255,0.12); }
.hero h1 { font-size: 3.25rem; color: var(--white); margin-bottom: 20px; font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; }
.hero-sub { font-size: 1.125rem; color: rgba(255,255,255,0.7); margin-bottom: 36px; line-height: 1.7; max-width: 480px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero .btn-primary { background: var(--accent); border-color: var(--accent); }
.hero .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.25); }
.hero .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); }
.hero-trust { display: flex; gap: 32px; }
.trust-item { text-align: left; }
.trust-value { font-size: 1.5rem; font-weight: 800; color: var(--white); display: block; line-height: 1; }
.trust-label { font-size: 0.8125rem; color: rgba(255,255,255,0.55); margin-top: 4px; display: block; }

.hero-mosaic { position: relative; }
.mosaic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 40px 0; }
.mosaic-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.mosaic-img:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 2; aspect-ratio: 4/5; }
.mosaic-img:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; aspect-ratio: 4/3; transform: translateY(40px); }
.mosaic-img:nth-child(3) { grid-column: 1 / 3; grid-row: 2 / 3; aspect-ratio: 16/7; }
.mosaic-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.mosaic-img:hover img { transform: scale(1.05); }
.mosaic-accent { position: absolute; bottom: 20px; left: -30px; width: 120px; height: 120px; border: 3px solid var(--accent); border-radius: 50%; opacity: 0.3; }

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrapper { position: relative; }
.about-img-main { border-radius: var(--radius); width: 100%; height: 480px; object-fit: cover; box-shadow: var(--shadow-lg); }
.about-floating-card { position: absolute; bottom: -24px; right: -24px; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-xl); border: 4px solid var(--white); }
.about-img-secondary { width: 180px; height: 180px; object-fit: cover; }
.about-highlights { display: flex; gap: 12px; margin-top: 32px; }
.about-highlight-chip { display: flex; align-items: center; gap: 8px; background: var(--lighter); padding: 10px 16px; border-radius: 100px; font-size: 0.8125rem; font-weight: 600; color: var(--secondary); border: 1px solid var(--border); }
.about-highlight-chip svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.about-text .section-tag { display: block; }
.about-text h2 { font-size: 2.25rem; margin-bottom: 20px; letter-spacing: -0.5px; }
.about-text p { color: var(--text-light); margin-bottom: 20px; font-size: 1.0625rem; line-height: 1.8; }
.about-text .btn { margin-top: 12px; }

/* ===== STATS: CARD GRID ===== */
.stats-section { background: var(--lighter); }
.stats-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-card { background: var(--white); padding: 32px 28px; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--border); text-align: center; transition: all var(--transition); position: relative; overflow: hidden; }
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transition: transform var(--transition); }
.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat-icon { width: 52px; height: 52px; background: var(--lighter); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--accent); transition: all var(--transition); }
.stat-card:hover .stat-icon { background: var(--accent); color: var(--white); }
.stat-icon svg { width: 24px; height: 24px; }
.stat-value { font-size: 2.5rem; font-weight: 800; color: var(--secondary); display: block; line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.9375rem; font-weight: 600; color: var(--secondary); margin-bottom: 6px; display: block; }
.stat-desc { font-size: 0.8125rem; color: var(--text-muted); }

/* ===== SERVICES: MASONRY ===== */
.services { background: var(--white); }
.services-masonry { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.svc-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: all var(--transition); position: relative; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-img { height: 220px; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.svc-card:hover .svc-img img { transform: scale(1.06); }
.svc-body { padding: 24px; }
.svc-icon { width: 40px; height: 40px; border-radius: var(--radius-xs); background: var(--lighter); display: inline-flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 14px; transition: all var(--transition); }
.svc-card:hover .svc-icon { background: var(--accent); color: var(--white); }
.svc-icon svg { width: 20px; height: 20px; }
.svc-body h3 { font-size: 1.125rem; margin-bottom: 8px; }
.svc-body p { font-size: 0.875rem; color: var(--text-light); line-height: 1.7; }

/* ===== FEATURES ===== */
.features { background: var(--lighter); }
.features-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.features-content .section-tag { display: block; }
.features-content h2 { font-size: 2.25rem; margin-bottom: 12px; letter-spacing: -0.5px; }
.features-sub { color: var(--text-light); margin-bottom: 36px; font-size: 1.0625rem; }
.features-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; padding: 16px; border-radius: var(--radius-sm); transition: all var(--transition); }
.feature-item:hover { background: var(--white); box-shadow: var(--shadow-sm); }
.feature-icon { width: 44px; height: 44px; min-width: 44px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xs); display: flex; align-items: center; justify-content: center; color: var(--accent); transition: all var(--transition); }
.feature-item:hover .feature-icon { background: var(--accent); color: var(--white); border-color: var(--accent); }
.feature-icon svg { width: 20px; height: 20px; }
.feature-text h3 { font-size: 1rem; margin-bottom: 4px; }
.feature-text p { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }
.features-visual { position: relative; }
.features-visual img { border-radius: var(--radius); width: 100%; height: 540px; object-fit: cover; box-shadow: var(--shadow-lg); }
.features-badge { position: absolute; bottom: -20px; left: -20px; background: var(--accent); color: var(--white); padding: 20px 24px; border-radius: var(--radius-sm); box-shadow: var(--shadow-md); text-align: center; }
.badge-number { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.badge-text { display: block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }

/* ===== GALLERY: BENTO ===== */
.gallery { background: var(--white); }
.bento-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: 240px; gap: 16px; }
.bento-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.bento-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.bento-item:hover img { transform: scale(1.08); }
.bento-caption { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 20px; background: rgba(15,23,42,0); transition: background var(--transition); }
.bento-item:hover .bento-caption { background: rgba(15,23,42,0.5); }
.bento-caption span { color: var(--white); font-size: 0.875rem; font-weight: 600; opacity: 0; transform: translateY(10px); transition: all var(--transition); }
.bento-item:hover .bento-caption span { opacity: 1; transform: translateY(0); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--lighter); }
.testimonials-track { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review-card { background: var(--white); padding: 32px; border-radius: var(--radius); border: 1px solid var(--border); transition: all var(--transition); }
.review-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.review-stars { display: flex; gap: 2px; margin-bottom: 20px; }
.review-stars svg { width: 16px; height: 16px; fill: var(--accent); color: var(--accent); }
.review-text { font-size: 0.9375rem; line-height: 1.7; color: var(--text); margin-bottom: 24px; }
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--border); }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.review-info h4 { font-size: 0.9375rem; font-weight: 600; }
.review-info p { font-size: 0.8125rem; color: var(--text-muted); }

/* ===== CTA MODERN ===== */
.cta-modern { background: var(--white); padding: 80px 0; }
.cta-card { background: var(--primary); border-radius: var(--radius); padding: 64px; display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; overflow: hidden; }
.cta-card::before { content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%; background: rgba(255,255,255,0.04); border-radius: 50%; }
.cta-text { position: relative; z-index: 1; max-width: 560px; }
.cta-card h2 { font-size: 2rem; color: var(--white); margin-bottom: 12px; }
.cta-card p { color: rgba(255,255,255,0.75); font-size: 1.0625rem; }
.cta-card .btn-primary { position: relative; z-index: 1; flex-shrink: 0; background: var(--accent); border-color: var(--accent); }

/* ===== MAP ===== */
.map-section { background: var(--white); }
.map-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.map-wrapper iframe { display: block; width: 100%; min-height: 400px; }

/* ===== CONTACT ===== */
.contact { background: var(--lighter); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.contact-left .section-tag { display: block; }
.contact-left h2 { font-size: 2.25rem; margin-bottom: 12px; letter-spacing: -0.5px; }
.contact-intro { color: var(--text-light); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 12px; }
.contact-detail-item { display: flex; align-items: center; gap: 16px; padding: 16px; border-radius: var(--radius-sm); background: var(--white); border: 1px solid var(--border); transition: all var(--transition); }
.contact-detail-item:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.contact-detail-icon { width: 40px; height: 40px; min-width: 40px; border-radius: var(--radius-xs); background: var(--lighter); display: flex; align-items: center; justify-content: center; color: var(--accent); }
.contact-detail-item strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); font-weight: 600; }
.contact-detail-item span { font-size: 0.9375rem; color: var(--secondary); font-weight: 500; }
.contact-form { background: var(--white); padding: 40px; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.contact-form h3 { font-size: 1.25rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-xs); font-family: inherit; font-size: 0.9375rem; color: var(--text); transition: all var(--transition); background: var(--light); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); background: var(--white); box-shadow: 0 0 0 3px rgba(234,88,12,0.1); }
.form-group textarea { resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 64px 0 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand h3 { color: var(--white); font-size: 1.375rem; margin-bottom: 12px; font-weight: 800; }
.footer-brand p { font-size: 0.9375rem; line-height: 1.7; }
.footer h4 { color: var(--white); font-size: 0.875rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9375rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-contact-info p { font-size: 0.9375rem; margin-bottom: 8px; }
.footer-contact-info a { color: rgba(255,255,255,0.55); }
.footer-contact-info a:hover { color: var(--accent); }
.footer-social { display: flex; flex-direction: column; }
.social-icons { display: flex; gap: 10px; }
.social-link { width: 40px; height: 40px; border-radius: var(--radius-xs); background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: all var(--transition); border: 1px solid rgba(255,255,255,0.08); }
.social-link:hover { background: var(--accent); color: var(--white); border-color: var(--accent); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; }
.footer-bottom { text-align: center; padding: 24px 0; font-size: 0.8125rem; color: rgba(255,255,255,0.4); }

/* ===== ANIMATIONS ===== */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-on-scroll.visible .stat-card,
.animate-on-scroll.visible .svc-card,
.animate-on-scroll.visible .review-card,
.animate-on-scroll.visible .bento-item,
.animate-on-scroll.visible .feature-item,
.animate-on-scroll.visible .contact-detail-item { opacity: 0; animation: fadeUp 0.5s ease forwards; }
.animate-on-scroll.visible :nth-child(1) { animation-delay: 0.05s; }
.animate-on-scroll.visible :nth-child(2) { animation-delay: 0.1s; }
.animate-on-scroll.visible :nth-child(3) { animation-delay: 0.15s; }
.animate-on-scroll.visible :nth-child(4) { animation-delay: 0.2s; }
.animate-on-scroll.visible :nth-child(5) { animation-delay: 0.25s; }
.animate-on-scroll.visible :nth-child(6) { animation-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding-top: 120px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-mosaic { max-width: 600px; margin: 0 auto; }
  .about-layout, .features-split, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .services-masonry { grid-template-columns: 1fr; }
  .stats-cards { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .section-header h2 { font-size: 2rem; }
  .hero h1 { font-size: 2.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-links.active { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); padding: 20px 24px; box-shadow: var(--shadow-md); border-top: 1px solid var(--border); }
  .nav-links.active a { color: var(--text); padding: 12px 0; }
  .nav-toggle { display: flex; }
  .main-nav:not(.scrolled) .nav-links.active a { color: var(--text); }
  .services-masonry { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .mosaic-grid { grid-template-columns: 1fr; }
  .mosaic-img:nth-child(2) { transform: none; }
  .about-floating-card { display: none; }
  .features-badge { bottom: auto; top: 20px; left: 20px; }
  .cta-card { flex-direction: column; text-align: center; padding: 40px 28px; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-highlights { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-trust { flex-direction: column; gap: 16px; align-items: center; }
  .stats-cards { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .bento-item:nth-child(1), .bento-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
  .contact-form { padding: 24px; }
}
