/* ===== Variables ===== */
:root {
  --bg: #0d0d0d;
  --fg: #f2f0eb;
  --card: #231e15;
  --card-fg: #f2f0eb;
  --primary: #c39a6c;
  --primary-fg: #0d0d0d;
  --secondary: #2b2218;
  --secondary-fg: #e6ddd0;
  --muted: #3d3529;
  --muted-fg: #a89a88;
  --border: #3d3122;
  --gold-light: #d4ac7a;
  --gold: #c39a6c;
  --gold-dark: #9a7548;
  --gold-muted: #4a3c2d;
  --gradient-gold: linear-gradient(135deg, #d4ac7a 0%, #c39a6c 50%, #9a7548 100%);
  --shadow-gold: 0 4px 30px rgba(195,154,108,0.15);
  --shadow-gold-lg: 0 8px 40px rgba(195,154,108,0.25);
  --radius: 0.5rem;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: 'Inter', sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, select, textarea { font: inherit; color: var(--fg); background: rgba(43,34,24,0.5); border: 1px solid rgba(61,49,34,0.5); border-radius: var(--radius); padding: 0.75rem 1rem; width: 100%; outline: none; transition: border-color 0.3s; }
input:focus, select:focus, textarea:focus { border-color: var(--primary); }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a89a88' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
textarea { resize: none; }

/* ===== Utilities ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.text-center { text-align: center; }
.text-muted { color: var(--muted-fg); font-size: 0.875rem; }
.gold-text { color: var(--primary); }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem 2rem; border-radius: var(--radius); font-weight: 600; font-size: 1rem; transition: all 0.3s; cursor: pointer; border: none; }
.btn-hero { background: var(--gradient-gold); color: var(--primary-fg); box-shadow: var(--shadow-gold); }
.btn-hero:hover { box-shadow: var(--shadow-gold-lg); transform: scale(1.05); }
.btn-hero-outline { background: transparent; color: var(--fg); border: 2px solid rgba(195,154,108,0.5); }
.btn-hero-outline:hover { border-color: var(--primary); background: rgba(195,154,108,0.1); }
.btn-gold { background: var(--gradient-gold); color: var(--primary-fg); box-shadow: var(--shadow-gold); }
.btn-gold:hover { box-shadow: var(--shadow-gold-lg); transform: scale(1.05); }
.btn-gold-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); padding: 0.75rem 1.5rem; border-radius: var(--radius); font-weight: 600; transition: all 0.3s; }
.btn-gold-outline:hover { background: rgba(195,154,108,0.1); }

/* ===== Header ===== */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: rgba(13,13,13,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 5rem; }
.logo-btn { background: none; border: none; cursor: pointer; }
.logo { height: 10rem; width: auto; }
.nav-desktop { display: none; align-items: center; gap: 2rem; }
.nav-desktop .nav-link { font-size: 0.875rem; font-weight: 500; transition: color 0.3s; }
.nav-desktop .nav-link:hover { color: var(--primary); }
.btn-cta-header { display: none; align-items: center; gap: 0.5rem; padding: 0.625rem 1.25rem; background: var(--gradient-gold); color: var(--primary-fg); font-weight: 600; border-radius: var(--radius); box-shadow: var(--shadow-gold); transition: all 0.3s; font-size: 0.875rem; }
.btn-cta-header:hover { box-shadow: var(--shadow-gold-lg); transform: scale(1.05); }
.mobile-menu-btn { display: block; padding: 0.5rem; font-size: 1.5rem; }
.mobile-menu { display: none; position: fixed; top: 5rem; left: 0; right: 0; z-index: 40; background: var(--bg); border-bottom: 1px solid var(--border); box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.mobile-menu.open { display: block; }
.mobile-nav { display: flex; flex-direction: column; padding: 1.5rem 1rem; gap: 0.5rem; }
.mobile-nav a { padding: 0.75rem 1rem; font-size: 1.125rem; font-weight: 500; border-radius: var(--radius); transition: all 0.3s; }
.mobile-nav a:hover { color: var(--primary); background: rgba(61,53,41,0.5); }
.btn-cta-mobile { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1rem; padding: 0.75rem; background: var(--gradient-gold); color: var(--primary-fg); font-weight: 600; border-radius: var(--radius); box-shadow: var(--shadow-gold); }

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .btn-cta-header { display: flex; }
  .mobile-menu-btn { display: none; }
}

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 5rem; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,13,13,0.95), rgba(13,13,13,0.8), rgba(13,13,13,0.4)); }
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle { position: absolute; border-radius: 50%; background: rgba(195,154,108,0.3); animation: particleFloat 5s ease-in-out infinite; }
.particle-large { background: rgba(195,154,108,0.2); animation: particleFloatSlow 8s ease-in-out infinite; }
.hero-content { position: relative; z-index: 10; }
.hero-text { max-width: 42rem; }
.hero-text h1 { font-size: 2.5rem; font-weight: 700; line-height: 1.15; margin-bottom: 1.5rem; }
.hero-text p { font-size: 1.125rem; color: var(--muted-fg); margin-bottom: 2rem; line-height: 1.7; }
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite; }
.scroll-mouse { width: 1.5rem; height: 2.5rem; border: 2px solid rgba(195,154,108,0.5); border-radius: 999px; display: flex; justify-content: center; padding-top: 0.5rem; }
.scroll-dot { width: 0.375rem; height: 0.75rem; background: var(--primary); border-radius: 999px; animation: pulse 2s infinite; }

@media (min-width: 640px) {
  .hero-text h1 { font-size: 3rem; }
  .hero-buttons { flex-direction: row; }
}
@media (min-width: 1024px) {
  .hero-text h1 { font-size: 3.75rem; }
}

/* ===== Services ===== */
.services { padding: 5rem 0; background: linear-gradient(180deg, var(--bg) 0%, rgba(43,34,24,0.2) 50%, var(--bg) 100%); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.section-header p { color: var(--muted-fg); font-size: 1.125rem; max-width: 42rem; margin: 0 auto; }
.badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 999px; background: rgba(195,154,108,0.1); border: 1px solid rgba(195,154,108,0.2); color: var(--primary); font-size: 0.875rem; font-weight: 500; margin-bottom: 1.5rem; }
.badge-small { display: inline-block; padding: 0.375rem 1rem; background: rgba(195,154,108,0.1); color: var(--primary); border-radius: 999px; font-size: 0.875rem; font-weight: 500; margin-bottom: 1rem; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.service-card { background: linear-gradient(135deg, var(--card), rgba(35,30,21,0.8)); border-radius: 0.75rem; padding: 1.5rem; border: 1px solid var(--border); transition: all 0.3s; display: flex; flex-direction: column; text-align: center; }
.service-card:hover { border-color: rgba(195,154,108,0.5); transform: translateY(-8px); box-shadow: var(--shadow-gold); }
.service-icon { width: 3.5rem; height: 3.5rem; margin: 0 auto 1rem; background: var(--gradient-gold); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-gold); font-size: 1.5rem; color: var(--primary-fg); transition: transform 0.3s; }
.service-card:hover .service-icon { transform: scale(1.1); }
.service-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; font-family: 'Inter', sans-serif; }
.service-card > p { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 1rem; flex: 1; }
.service-card .btn-service { width: 100%; padding: 0.625rem 1rem; background: var(--gradient-gold); color: var(--primary-fg); font-weight: 500; border-radius: var(--radius); font-size: 0.875rem; transition: all 0.3s; border: none; cursor: pointer; }
.service-card .btn-service:hover { box-shadow: var(--shadow-gold-lg); transform: scale(1.05); }

@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } .section-header h2 { font-size: 2.5rem; } }

/* ===== Partners ===== */
.partners { padding: 4rem 0 5rem; background: linear-gradient(180deg, var(--bg), rgba(43,34,24,0.2)); overflow: hidden; }
.carousel-wrapper { position: relative; overflow: hidden; }
.carousel-mask { position: absolute; top: 0; bottom: 0; width: 5rem; z-index: 10; pointer-events: none; }
.carousel-mask.left { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.carousel-mask.right { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.carousel-track { display: flex; gap: 2rem; animation: scrollInfinite 25s linear infinite; width: max-content; }
.carousel-track:hover { animation-play-state: paused; }
.partner-card { flex-shrink: 0; display: flex; align-items: center; justify-content: center; padding: 1.25rem; background: rgba(43,34,24,0.4); backdrop-filter: blur(4px); border: 1px solid rgba(195,154,108,0.2); border-radius: 0.75rem; width: 11rem; height: 7rem; transition: all 0.3s; }
.partner-card:hover { border-color: rgba(195,154,108,0.4); background: rgba(43,34,24,0.6); box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.partner-card img { max-height: 4rem; max-width: 8rem; width: auto; object-fit: contain; opacity: 0.8; transition: opacity 0.3s; }
.partner-card:hover img { opacity: 1; }

/* ===== About ===== */
.about { padding: 5rem 0 8rem; background: var(--card); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 4rem; }
.stat-card { text-align: center; padding: 1.5rem; background: var(--bg); border-radius: 0.75rem; border: 1px solid var(--border); }
.stat-value { font-size: 2.5rem; font-weight: 700; color: var(--primary); font-family: 'Playfair Display', serif; display: inline; }
.stat-suffix { font-size: 2.5rem; font-weight: 700; color: var(--primary); font-family: 'Playfair Display', serif; display: inline; }
.stat-card p { color: var(--muted-fg); font-size: 0.875rem; margin-top: 0.5rem; }
.about-grid { display: grid; gap: 3rem; }
.about-text h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1.5rem; }
.about-text p { color: var(--muted-fg); font-size: 1.125rem; line-height: 1.7; margin-bottom: 1rem; }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.feature-card { padding: 1.5rem; background: var(--bg); border-radius: 0.75rem; border: 1px solid var(--border); transition: all 0.3s; }
.feature-card:hover { border-color: rgba(195,154,108,0.5); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.feature-icon { width: 3.5rem; height: 3.5rem; margin-bottom: 1rem; background: var(--gradient-gold); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-gold); font-size: 1.5rem; color: var(--primary-fg); transition: transform 0.3s; }
.feature-card:hover .feature-icon { transform: scale(1.1); }
.feature-card h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; font-family: 'Inter', sans-serif; }
.feature-card p { color: var(--muted-fg); font-size: 0.875rem; line-height: 1.6; }

@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .about-grid { grid-template-columns: repeat(2, 1fr); align-items: center; }
  .about-text h2 { font-size: 2.5rem; }
}

/* ===== Quote Form ===== */
.quote-section { padding: 5rem 0 8rem; background: linear-gradient(180deg, rgba(43,34,24,0.3), var(--bg)); }
.quote-wrapper { max-width: 56rem; margin: 0 auto; }
.form-card { background: rgba(35,30,21,0.5); backdrop-filter: blur(4px); border: 1px solid rgba(61,49,34,0.5); border-radius: 1rem; padding: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.form-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; margin-top: 1.5rem; }
.form-hint { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-fg); }
.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 2rem; font-size: 0.875rem; color: var(--muted-fg); }
.trust-badges i { margin-right: 0.25rem; }

@media (min-width: 768px) {
  .form-card { padding: 2.5rem; }
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .form-actions { flex-direction: row; align-items: center; }
}

/* ===== Testimonials ===== */
.testimonials { padding: 5rem 0; background: var(--bg); }
.testimonials-grid { display: grid; gap: 1.5rem; max-width: 64rem; margin: 0 auto; }
.testimonial-card { background: var(--card); border: 1px solid var(--border); border-radius: 0.75rem; padding: 1.5rem; transition: all 0.3s; }
.testimonial-card:hover { border-color: rgba(195,154,108,0.5); box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.testimonial-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.testimonial-avatar { width: 3rem; height: 3rem; border-radius: 50%; background: rgba(195,154,108,0.2); display: flex; align-items: center; justify-content: center; color: var(--primary); font-weight: 700; font-size: 1.125rem; }
.testimonial-header h4 { font-weight: 600; font-family: 'Inter', sans-serif; }
.stars { color: var(--primary); letter-spacing: 2px; }
.star-empty { color: var(--muted); }
.testimonial-card p { color: var(--muted-fg); font-size: 0.875rem; line-height: 1.6; }
.google-link { color: var(--primary); font-weight: 500; transition: color 0.3s; display: inline-flex; align-items: center; gap: 0.5rem; }
.google-link:hover { color: var(--gold-light); }

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

/* ===== FAQ ===== */
.faq { padding: 5rem 0; background: rgba(43,34,24,0.3); }
.faq-list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.3s; }
.faq-item.open { border-color: rgba(195,154,108,0.5); }
.faq-question { width: 100%; padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; text-align: left; font-weight: 500; transition: color 0.3s; }
.faq-question:hover { color: var(--primary); }
.faq-question i { transition: transform 0.3s; color: var(--muted-fg); }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; color: var(--muted-fg); line-height: 1.6; }

/* ===== Contact ===== */
.contact { padding: 5rem 0 8rem; background: linear-gradient(180deg, var(--bg), var(--card)); }
.contact-grid { display: grid; gap: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card { display: flex; align-items: flex-start; gap: 1rem; padding: 1.5rem; background: var(--card); border-radius: 0.75rem; border: 1px solid var(--border); transition: all 0.3s; }
.contact-card:hover { border-color: rgba(195,154,108,0.5); }
.contact-icon { width: 3rem; height: 3rem; background: var(--gradient-gold); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.25rem; color: var(--primary-fg); }
.contact-card h3 { font-weight: 600; margin-bottom: 0.25rem; font-family: 'Inter', sans-serif; font-size: 1.125rem; }
.contact-card p { color: var(--muted-fg); font-size: 0.875rem; line-height: 1.5; }
.whatsapp-cta { background: linear-gradient(135deg, var(--gold-muted), var(--card)); padding: 2rem; border-radius: 1rem; border: 1px solid rgba(195,154,108,0.2); text-align: center; }
.whatsapp-icon-big { width: 5rem; height: 5rem; margin: 0 auto 1.5rem; background: var(--gradient-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-gold-lg); font-size: 2.5rem; color: var(--primary-fg); }
.whatsapp-cta h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.whatsapp-cta p { color: var(--muted-fg); margin-bottom: 2rem; line-height: 1.6; }

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

/* ===== Footer ===== */
.footer { background: var(--card); border-top: 1px solid var(--border); }
.footer-grid { display: grid; gap: 2rem; padding: 3rem 0; }
.footer-logo { height: 12rem; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: var(--muted-fg); font-size: 0.875rem; line-height: 1.6; max-width: 28rem; }
.footer-links h4, .footer-social h4 { font-weight: 600; margin-bottom: 1rem; font-family: 'Inter', sans-serif; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--muted-fg); font-size: 0.875rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--primary); }
.social-icons { display: flex; gap: 0.75rem; }
.social-icons a { width: 2.5rem; height: 2.5rem; background: var(--secondary); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--muted-fg); font-size: 1.25rem; transition: all 0.3s; }
.social-icons a:hover { background: var(--primary); color: var(--primary-fg); }
.footer-bottom { padding: 1.5rem 0; border-top: 1px solid var(--border); text-align: center; }
.footer-bottom p { color: var(--muted-fg); font-size: 0.875rem; }

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

/* ===== WhatsApp Float ===== */
.whatsapp-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50; }
.whatsapp-pulse { position: absolute; inset: 0; border-radius: 50%; background: #22c55e; animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite; opacity: 0.25; }
.whatsapp-btn-inner { position: relative; width: 3.5rem; height: 3.5rem; border-radius: 50%; background: #22c55e; box-shadow: 0 4px 20px rgba(34,197,94,0.3); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; color: #fff; transition: all 0.3s; }
.whatsapp-float:hover .whatsapp-btn-inner { background: #16a34a; transform: scale(1.1); box-shadow: 0 8px 30px rgba(34,197,94,0.4); }
.whatsapp-tooltip { position: absolute; right: 100%; margin-right: 0.75rem; top: 50%; transform: translateY(-50%); padding: 0.5rem 0.75rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 4px 20px rgba(0,0,0,0.3); opacity: 0; transition: opacity 0.3s; pointer-events: none; white-space: nowrap; font-size: 0.875rem; font-weight: 500; }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

@media (min-width: 1024px) {
  .whatsapp-btn-inner { width: 4rem; height: 4rem; font-size: 2rem; }
}

/* ===== Animations ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

@keyframes scrollInfinite { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-10px); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }
@keyframes particleFloat { 0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; } 25% { transform: translateY(-20px) translateX(10px); opacity: 0.6; } 50% { transform: translateY(-40px) translateX(-5px); opacity: 0.4; } 75% { transform: translateY(-20px) translateX(-10px); opacity: 0.5; } }
@keyframes particleFloatSlow { 0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.2; } 33% { transform: translateY(-30px) translateX(15px) scale(1.2); opacity: 0.4; } 66% { transform: translateY(-60px) translateX(-10px) scale(0.8); opacity: 0.3; } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .carousel-track { animation: none; }
  .particle, .particle-large { animation: none; }
  .scroll-indicator { animation: none; }
  .whatsapp-pulse { animation: none; }
}

/* ===== Local SEO Section ===== */
.local-seo { padding: 5rem 0; background: linear-gradient(to bottom, var(--card), var(--bg)); }
.city-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.city-card { padding: 1.5rem; background: var(--bg); border-radius: 0.75rem; border: 1px solid var(--border); transition: all 0.3s; }
.city-card:hover { border-color: rgba(195,154,108,0.5); }
.city-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.city-icon { width: 2.5rem; height: 2.5rem; background: linear-gradient(135deg, var(--gold-light), var(--primary), var(--gold-dark)); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; color: var(--primary-fg); flex-shrink: 0; }
.city-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--fg); }
.city-card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }
.insurance-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 1rem; }
.insurance-tag { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: var(--bg); border: 1px solid var(--border); border-radius: 9999px; font-size: 0.875rem; color: var(--muted-fg); transition: all 0.3s; }
.insurance-tag:hover { border-color: rgba(195,154,108,0.5); color: var(--fg); }
.insurance-tag i { color: var(--primary); }
