/* Studio Legale - Static CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a{
    hover:cursor;
}
:root {
  --navy: hsl(220, 40%, 13%);
  --navy-light: hsl(220, 30%, 20%);
  --gold: hsl(35, 80%, 45%);
  --gold-light: hsl(35, 70%, 55%);
  --cream: hsl(40, 30%, 96%);
  --white: hsl(0, 0%, 100%);
  --foreground: hsl(220, 20%, 10%);
  --muted: hsl(220, 10%, 45%);
  --border: hsl(220, 15%, 90%);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background: var(--white);
}

.font-serif {
  font-family: Georgia, 'Times New Roman', serif;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-muted { color: var(--muted); }
.bg-navy { background: var(--navy); }
.bg-gold { background: var(--gold); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }

/* Header */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 50;
  background: rgba(26, 32, 44, 0.95);
  backdrop-filter: blur(8px);
}

.header-top {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.header-top a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-top a:hover { color: var(--gold); }

.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

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

.logo-icon {
  width: 62px;
  height: 48px;
  background: var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--navy);
}

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

.logo-title {
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: bold;
}

.logo-subtitle {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

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

.nav-links a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu {
  display: none;
  background: var(--navy);
  padding: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu.active { display: block; }

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 500;
}

.mobile-menu a:hover { color: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover { background: var(--gold-light); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover { background: var(--navy-light); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
}

.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  background: var(--navy);
}

/* Hero Carousel */
.hero-carousel {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 0.4;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.carousel-dot:hover {
  border-color: var(--gold);
}

.carousel-dot.active {
  background: var(--gold);
  border-color: var(--gold);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,32,44,0.9), rgba(26,32,44,0.7));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero-label {
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

.hero h1 span { color: var(--gold); }

.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

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

/* Page Hero */
.page-hero {
  position: relative;
  padding: 8rem 0 4rem;
  background: var(--navy);
  margin-top: 120px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.page-hero-content {
  position: relative;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 1rem auto 0;
}

/* Stats Section */
.stats {
  background: var(--gold);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.stat {
  text-align: center;
}

.stat-number {
  font-family: Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
}

.stat-label {
  color: rgba(26,32,44,0.8);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Section */
.section {
  padding: 5rem 0;
}

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

.section-label {
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.section-title {
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .section-title { font-size: 2.5rem; }
}

.section-desc {
  color: var(--muted);
  margin-top: 1rem;
}

/* Cards */
.card {
  background: var(--white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s;
}

.card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.1); }

.card-content { padding: 1.5rem; }

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

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

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

/* Service Card */
.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.service-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border-color: var(--gold);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(183, 121, 31, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--gold);
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--navy);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-desc {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Lawyer Card */
.lawyer-card {
  background: var(--white);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s;
}

.lawyer-card:hover { transform: translateY(-4px); box-shadow: 0 10px 40px rgba(0,0,0,0.1); }

.lawyer-image {
  aspect-ratio: 3/4;
  overflow: hidden;
}

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

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

.lawyer-info {
  padding: 1.5rem;
  text-align: center;
}

.lawyer-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
}

.lawyer-role {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.25rem;
}

.lawyer-specialty {
  color: var(--muted);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* Case Card */
.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all 0.3s;
}

.case-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.1); }

.case-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.case-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1rem 0 0.5rem;
}

.case-category {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
}

.case-desc {
  color: var(--muted);
  font-size: 0.875rem;
  margin-top: 1rem;
  line-height: 1.6;
}

/* CTA Section */
.cta {
  background: var(--gold);
  padding: 4rem 0;
  text-align: center;
}

.cta h2 {
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(26,32,44,0.8);
  max-width: 600px;
  margin: 0 auto 2rem;
}

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

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
}

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

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.checkbox-label input { margin-top: 0.25rem; }

/* Footer */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0 0;
}

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

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

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

.footer-title {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

.footer-contact a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

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

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--navy-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s;
}

.social-link:hover { background: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

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

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.875rem;
}

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

/* Office Card */
.office-card {
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.office-card.main {
  background: var(--navy);
  color: var(--white);
}

.office-card:not(.main) { background: var(--cream); }

.office-name {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.office-card.main .office-name { color: var(--white); }
.office-card:not(.main) .office-name { color: var(--navy); }

.office-info {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.office-card.main .office-info { color: rgba(255,255,255,0.8); }
.office-card:not(.main) .office-info { color: var(--muted); }

.office-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: 0.5rem;
}

/* Timeline */
.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.timeline-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-dot-inner {
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
}

.timeline-line {
  width: 2px;
  flex: 1;
  background: rgba(183, 121, 31, 0.3);
  margin-top: 0.5rem;
}

.timeline-year {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.125rem;
}

.timeline-event {
  color: var(--foreground);
  margin-top: 0.25rem;
}

/* Values */
.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
}

.value-icon {
  width: 64px;
  height: 64px;
  background: rgba(183, 121, 31, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: var(--gold);
}

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}

.value-desc {
  color: var(--muted);
  line-height: 1.6;
}

/* Why Choose Us */
.why-section {
  background: var(--navy);
  padding: 5rem 0;
}

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

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

.why-content h2 {
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem 0 1.5rem;
}

.why-content p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.why-list { list-style: none; }

.why-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}

.why-list .check {
  color: var(--gold);
  font-size: 1.25rem;
}

.why-form {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 0.5rem;
}

.why-form h3 {
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.why-form input, .why-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.375rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.why-form input::placeholder, .why-form textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.why-form input:focus, .why-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* Process */
.process-step {
  text-align: center;
}

.process-number {
  font-family: Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(183, 121, 31, 0.3);
  margin-bottom: 1rem;
}

.process-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.process-desc {
  color: var(--muted);
  font-size: 0.875rem;
}

/* Highlight List */
.highlight-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.highlight-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.highlight-list .check {
  color: var(--gold);
}

/* Contact icons */
.contact-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold);
}

/* Lawyer Bio */
.lawyer-bio {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lawyer-meta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
}

.lawyer-meta p {
  margin-bottom: 0.5rem;
  color: var(--muted);
}

.lawyer-meta strong { color: var(--foreground); }

.lawyer-contact {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.lawyer-contact a {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background 0.2s;
}

.lawyer-contact a:hover { background: var(--gold); }

/* Disclaimer */
.disclaimer {
  background: var(--cream);
  padding: 3rem 0;
  text-align: center;
}

.disclaimer p {
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer strong { color: var(--foreground); }

/* Emergency Box */
.emergency-box {
  background: rgba(183, 121, 31, 0.1);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 2rem;
}

.emergency-box h3 {
  color: var(--navy);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.emergency-box p {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.emergency-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}

.emergency-phone:hover { color: var(--gold); }

/* Map Placeholder */
.map-placeholder {
  height: 400px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.map-placeholder svg {
  width: 64px;
  height: 64px;
  color: rgba(183, 121, 31, 0.3);
  margin-bottom: 1rem;
}

.map-placeholder p { color: var(--muted); }

/* Flex utilities */
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

/* Spacing */
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.pt-4 { padding-top: 1rem; }

/* Main wrapper to push footer down */
.main-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content { flex: 1; }

/* SVG Icons inline */
.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}
.floating-contact {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

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

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25); }
  50% { box-shadow: 0 4px 30px rgba(180, 120, 40, 0.5); }
}