@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #B11226;
  --primary-light: rgba(177, 18, 38, 0.1);
  --primary-hover: rgba(177, 18, 38, 0.9);
  --foreground: #1e293b;
  --muted: #64748b;
  --secondary: #f1f5f9;
  --border: #e2e8f0;
  --background: #ffffff;
  --radius: 0.75rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; border-color: var(--border); }
body { font-family: 'Inter', sans-serif; color: var(--foreground); background: var(--background); -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; font-weight: 700; letter-spacing: -0.025em; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: 'Inter', sans-serif; }
input, textarea { font-family: 'Inter', sans-serif; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.shape-blob {
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: morph 8s ease-in-out infinite;
}
@keyframes morph {
  0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
  67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
}

@keyframes float-up { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes float-down { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(15px); } }
.animate-float-up { animation: float-up 5s ease-in-out infinite; }
.animate-float-down { animation: float-down 6s ease-in-out infinite; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-delay-1 { animation: fadeUp 0.6s ease 0.1s forwards; opacity: 0; }
.fade-up-delay-2 { animation: fadeUp 0.6s ease 0.2s forwards; opacity: 0; }
.fade-up-delay-3 { animation: fadeUp 0.6s ease 0.3s forwards; opacity: 0; }

/* Top Bar */
.top-bar { background: var(--foreground); color: rgba(255,255,255,0.8); padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.875rem; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar .left, .top-bar .right { display: flex; align-items: center; gap: 1.5rem; }
.top-bar .item { display: flex; align-items: center; gap: 0.5rem; }
.top-bar svg { width: 16px; height: 16px; color: var(--primary); }
.top-bar a:hover { color: white; }
@media (max-width: 1023px) { .top-bar { display: none; } }

/* Navbar */
.navbar { position: sticky; top: 0; width: 100%; z-index: 50; background: white; transition: all 0.3s; padding: 1.25rem 0; }
.navbar.scrolled { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); padding: 0.75rem 0; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar .logo img { height: 48px; width: auto; object-fit: contain; }
.navbar .nav-links { display: flex; align-items: center; gap: 2rem; }
.navbar .nav-links a { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600; color: var(--foreground); transition: color 0.2s; }
.navbar .nav-links a:hover, .navbar .nav-links a.active { color: var(--primary); }
.navbar .nav-right { display: flex; align-items: center; gap: 1.25rem; }
.navbar .phone-block { display: flex; align-items: center; gap: 0.75rem; }
.navbar .phone-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; color: var(--primary); }
.navbar .phone-icon svg { width: 16px; height: 16px; }
.navbar .phone-label { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; }
.navbar .phone-number { font-size: 14px; font-weight: 700; color: var(--foreground); }
.navbar .phone-number:hover { color: var(--primary); }
.navbar .btn-appointment { background: var(--primary); color: white; padding: 0.625rem 1.5rem; border-radius: 9999px; font-size: 14px; font-weight: 600; border: none; display: flex; align-items: center; gap: 0.5rem; box-shadow: 0 4px 14px 0 rgba(177,18,38,0.39); transition: all 0.2s; }
.navbar .btn-appointment:hover { background: var(--primary-hover); }
.navbar .mobile-toggle { display: none; padding: 0.5rem; background: var(--secondary); border: none; border-radius: 0.375rem; color: var(--foreground); }
.navbar .mobile-toggle svg { width: 24px; height: 24px; }
@media (max-width: 1023px) {
  .navbar .nav-links, .navbar .nav-right { display: none; }
  .navbar .mobile-toggle { display: block; }
  .navbar .logo img { height: 40px; }
}

/* Mobile Menu */
.mobile-menu { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: white; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); border-top: 1px solid var(--border); overflow: hidden; max-height: 0; opacity: 0; transition: all 0.3s; }
.mobile-menu.open { max-height: 500px; opacity: 1; }
.mobile-menu .menu-items { padding: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-menu a { display: block; padding: 0.75rem 1rem; border-radius: 0.5rem; font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 600; color: var(--foreground); }
.mobile-menu a:hover, .mobile-menu a.active { background: rgba(177,18,38,0.05); color: var(--primary); }
.mobile-menu .menu-cta { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.mobile-menu .btn-mobile-appointment { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; background: var(--primary); color: white; padding: 0.75rem; border-radius: 9999px; font-weight: 600; border: none; font-size: 16px; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }

/* Page Header */
.page-header { position: relative; padding: 6rem 0 8rem; overflow: hidden; }
.page-header .bg-image { position: absolute; inset: 0; }
.page-header .bg-image img { width: 100%; height: 100%; object-fit: cover; }
.page-header .bg-image .overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.page-header .container { position: relative; z-index: 10; text-align: center; }
.page-header .badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); border-radius: 9999px; padding: 0.5rem 1rem; margin-bottom: 1.5rem; border: 1px solid rgba(255,255,255,0.2); }
.page-header .badge span { font-size: 14px; font-weight: 600; color: white; }
.page-header h1 { font-size: 3rem; color: white; margin-bottom: 1.5rem; }
.page-header p { font-size: 1.125rem; color: #e2e8f0; max-width: 42rem; margin: 0 auto; }
@media (min-width: 768px) { .page-header h1 { font-size: 3.75rem; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 2rem; border-radius: 9999px; font-weight: 600; font-size: 1rem; border: none; transition: all 0.2s; cursor: pointer; }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 8px 20px rgba(177,18,38,0.25); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); }
.btn-outline { background: white; color: var(--foreground); border: 2px solid var(--border); }
.btn-outline:hover { background: #f9fafb; }
.btn-outline-primary { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: white; }
.btn-dark { background: var(--foreground); color: white; }
.btn-dark:hover { background: var(--primary); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.5rem; font-size: 0.875rem; }

/* Cards */
.card { background: white; border-radius: 1.5rem; border: 1px solid #f1f5f9; overflow: hidden; transition: all 0.3s; }
.card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.06); transform: translateY(-4px); }

/* Footer */
.footer { background: #0b1320; color: white; padding: 6rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; }
.footer p, .footer a { color: #9ca3af; font-size: 0.875rem; line-height: 1.75; }
.footer a:hover { color: var(--primary); }
.footer .brand-desc { margin-top: 1.5rem; }
.footer .social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer .social-link { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: white; transition: all 0.2s; }
.footer .social-link:hover { background: var(--primary); }
.footer .social-link svg { width: 16px; height: 16px; }
.footer .link-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer .link-list a { display: flex; align-items: center; gap: 0.5rem; transition: all 0.2s; }
.footer .link-list a:hover svg { transform: translateX(4px); }
.footer .link-list svg { width: 16px; height: 16px; transition: transform 0.2s; }
.footer .contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.footer .contact-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(177,18,38,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer .contact-icon svg { width: 20px; height: 20px; color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; font-size: 0.875rem; color: #6b7280; }
.footer-bottom .legal-links { display: flex; gap: 1.5rem; }
.footer-bottom a:hover { color: var(--primary); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }

/* Logo Container */
.footer .logo-container { background: white; padding: 1rem; border-radius: 0.75rem; display: inline-block; }
.footer .logo-container img { height: 40px; width: auto; }

/* Hero Section */
.hero { position: relative; padding: 3rem 0 6rem; overflow: hidden; background: linear-gradient(135deg, rgba(241,245,249,0.5), white); }
@media (min-width: 1024px) { .hero { padding: 6rem 0 8rem; } }
.hero .bg-shape { position: absolute; top: 0; right: 0; width: 66%; height: 800px; background: rgba(177,18,38,0.05); border-bottom-left-radius: 100px; z-index: 0; display: none; }
@media (min-width: 1024px) { .hero .bg-shape { display: block; } }
.hero .blob-1 { position: absolute; top: 80px; right: 80px; width: 384px; height: 384px; background: rgba(177,18,38,0.1); filter: blur(48px); z-index: 0; }
.hero .blob-2 { position: absolute; bottom: 80px; left: 40px; width: 288px; height: 288px; background: #dbeafe; filter: blur(48px); z-index: 0; }
.hero .grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; position: relative; z-index: 10; }
@media (min-width: 1024px) { .hero .grid { grid-template-columns: 1fr 1fr; } }
.hero .tagline { display: inline-flex; align-items: center; gap: 0.5rem; background: white; border-radius: 9999px; padding: 0.5rem 1rem; box-shadow: 0 1px 3px rgba(0,0,0,0.1); border: 1px solid #f1f5f9; width: fit-content; margin-bottom: 1rem; }
.hero .tagline .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.hero .tagline span { font-size: 14px; font-weight: 600; color: var(--primary); }
.hero h1 { font-size: 3rem; line-height: 1.1; margin-bottom: 1.5rem; }
.hero h1 .highlight { color: var(--primary); }
@media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4.5rem; } }
.hero .subtitle { font-size: 1.125rem; color: var(--muted); max-width: 32rem; line-height: 1.75; margin-bottom: 1.5rem; }
.hero .cta-buttons { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
@media (min-width: 640px) { .hero .cta-buttons { flex-direction: row; } }
.hero .btn-call { display: flex; align-items: center; gap: 0.75rem; width: 100%; }
@media (min-width: 640px) { .hero .btn-call { width: auto; } }
.hero .btn-call .icon { width: 32px; height: 32px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; }
.hero .btn-call .icon svg { width: 16px; height: 16px; color: var(--primary); }
.hero .trust { display: flex; align-items: center; gap: 1.5rem; margin-top: 2rem; }
.hero .avatars { display: flex; }
.hero .avatars img { width: 48px; height: 48px; border-radius: 50%; border: 2px solid white; object-fit: cover; margin-left: -16px; }
.hero .avatars img:first-child { margin-left: 0; }
.hero .stars { display: flex; color: #facc15; }
.hero .stars svg { width: 16px; height: 16px; fill: currentColor; }
.hero .trust-text { font-size: 14px; font-weight: 600; margin-top: 0.25rem; }
.hero .image-section { position: relative; }
.hero .main-image { border-radius: 2.5rem; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); position: relative; }
.hero .main-image img { width: 100%; height: 600px; object-fit: cover; }
.hero .main-image .gradient-overlay { position: absolute; inset: 0; background: linear-gradient(to top, transparent); mix-blend-mode: multiply; }
.hero .floating-badge { position: absolute; background: white; padding: 1rem; border-radius: 1rem; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 1rem; border: 1px solid #f1f5f9; }
.hero .badge-1 { top: 40px; left: -32px; }
.hero .badge-2 { bottom: 80px; right: -32px; padding: 1.25rem; max-width: 200px; flex-direction: column; align-items: flex-start; }
.hero .badge-icon { width: 48px; height: 48px; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; }
.hero .badge-icon.green { background: #dcfce7; color: #16a34a; }
.hero .badge-icon svg { width: 24px; height: 24px; }
.hero .badge-title { font-weight: 700; }
.hero .badge-sub { font-size: 14px; color: var(--muted); }
.hero .badge-2 .stars { margin-bottom: 0.5rem; }
.hero .badge-2 p { font-size: 12px; font-weight: 500; }

/* Feature Cards */
.feature-cards { position: relative; z-index: 20; margin-top: -4rem; }
.feature-cards .grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .feature-cards .grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card { border-radius: 1.5rem; padding: 2rem; display: flex; gap: 1.25rem; border: 1px solid #f1f5f9; transition: transform 0.3s; }
.feature-card:hover { transform: translateY(-8px); }
.feature-card.white { background: white; color: var(--foreground); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); }
.feature-card.primary { background: var(--primary); color: white; box-shadow: 0 10px 15px -3px rgba(177,18,38,0.3); }
.feature-card .icon { width: 56px; height: 56px; border-radius: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-card.white .icon { background: var(--primary-light); color: var(--primary); }
.feature-card.primary .icon { background: rgba(255,255,255,0.2); color: white; }
.feature-card .icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.875rem; line-height: 1.75; }
.feature-card.white p { color: var(--muted); }
.feature-card.primary p { color: rgba(255,255,255,0.8); }

/* Section Styles */
.section { padding: 6rem 0; }
.section-label { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.section-label span { color: var(--primary); font-weight: 700; text-transform: uppercase; font-size: 0.875rem; letter-spacing: 0.05em; }
.section-label .line { height: 1px; width: 3rem; background: var(--primary); }
.section-title { font-size: 2.25rem; line-height: 1.2; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .section-title { font-size: 3rem; } }
.section-bg { background: var(--secondary); }
.section-white { background: white; border-top: 1px solid #f1f5f9; }

/* About Section */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-images { position: relative; }
.about-images .img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-images .img-grid img { width: 100%; object-fit: cover; border-radius: 1.5rem; }
.about-images .img-grid img:first-child { height: 320px; }
.about-images .img-grid img:last-child { height: 256px; margin-top: 4rem; }
.about-images .play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: white; padding: 1rem; border-radius: 50%; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.about-images .play-inner { width: 64px; height: 64px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; animation: pulse 2s infinite; }
.about-images .play-inner svg { width: 24px; height: 24px; margin-left: 4px; }
.about-images .exp-badge { position: absolute; bottom: 40px; left: -20px; background: white; border-radius: 1rem; padding: 1.5rem; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); border: 1px solid #f1f5f9; }
.about-images .exp-badge .number { font-size: 2.25rem; font-weight: 700; color: var(--primary); margin-bottom: 0.25rem; font-family: 'Outfit', sans-serif; }
.about-images .exp-badge .label { font-size: 0.875rem; font-weight: 600; }
.about-text .subtitle { font-size: 1.125rem; color: var(--muted); line-height: 1.75; margin-bottom: 2rem; }
.check-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .check-grid { grid-template-columns: 1fr 1fr; } }
.check-item { display: flex; align-items: center; gap: 0.75rem; }
.check-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.check-icon svg { width: 16px; height: 16px; }
.check-item span { font-weight: 600; }

/* Services Grid */
.services-header { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .services-header { flex-direction: row; justify-content: space-between; align-items: flex-end; } }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card { background: white; border-radius: 2rem; box-shadow: 0 1px 3px rgba(0,0,0,0.03); border: 1px solid #f1f5f9; overflow: hidden; display: flex; flex-direction: column; transition: all 0.3s; }
.service-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.06); transform: translateY(-4px); }
.service-card .img-wrapper { height: 224px; overflow: hidden; position: relative; }
.service-card .img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .img-wrapper img { transform: scale(1.05); }
.service-card .img-badge { position: absolute; top: 1rem; left: 1rem; width: 48px; height: 48px; border-radius: 0.75rem; background: rgba(255,255,255,0.9); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; color: var(--primary); box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.service-card .img-badge svg { width: 24px; height: 24px; }
.service-card .content { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.service-card .desc { color: var(--muted); margin-bottom: 2rem; line-height: 1.75; flex: 1; }
.service-card .arrow-btn { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; border: 1px solid #e2e8f0; color: var(--foreground); transition: all 0.3s; background: none; }
.service-card:hover .arrow-btn { background: var(--primary); border-color: var(--primary); color: white; }
.service-card .arrow-btn svg { width: 20px; height: 20px; transition: transform 0.3s; transform: rotate(-45deg); }
.service-card:hover .arrow-btn svg { transform: rotate(0); }

/* Blog Cards */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card { background: white; border-radius: 1.5rem; overflow: hidden; border: 1px solid #f1f5f9; box-shadow: 0 4px 20px rgba(0,0,0,0.03); transition: all 0.3s; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.blog-card .img-wrapper { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--secondary); }
.blog-card .img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .img-wrapper img { transform: scale(1.05); }
.blog-card .category-badge { position: absolute; top: 1rem; left: 1rem; background: rgba(255,255,255,0.9); backdrop-filter: blur(4px); padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 12px; font-weight: 700; color: var(--primary); }
.blog-card .content { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.blog-card .meta { display: flex; align-items: center; gap: 0.5rem; font-size: 12px; color: var(--muted); font-weight: 500; margin-bottom: 0.75rem; }
.blog-card .meta .dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(177,18,38,0.5); }
.blog-card h3 { font-size: 1.25rem; margin-bottom: 1rem; transition: color 0.2s; line-height: 1.4; }
.blog-card:hover h3 { color: var(--primary); }
.blog-card .excerpt { color: var(--muted); font-size: 0.875rem; line-height: 1.75; margin-bottom: 1.5rem; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card .read-more { font-size: 0.875rem; font-weight: 700; color: var(--foreground); display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.blog-card:hover .read-more { color: var(--primary); }
.blog-card .read-more svg { width: 16px; height: 16px; }

/* Testimonials */
.testimonial-card { background: #f8f9fa; border-radius: 1.5rem; padding: 2rem; border: 1px solid #f1f5f9; position: relative; transition: all 0.3s; }
.testimonial-card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); background: white; }
.testimonial-card .quote-icon { position: absolute; top: 2rem; right: 2rem; color: rgba(177,18,38,0.1); transition: color 0.3s; }
.testimonial-card:hover .quote-icon { color: rgba(177,18,38,0.2); }
.testimonial-card .quote-icon svg { width: 48px; height: 48px; }
.testimonial-card .stars { display: flex; gap: 0.25rem; color: #facc15; margin-bottom: 1.5rem; }
.testimonial-card .stars svg { width: 20px; height: 20px; fill: currentColor; }
.testimonial-card .review { font-size: 15px; line-height: 1.75; margin-bottom: 2rem; font-weight: 500; min-height: 96px; }
.testimonial-card .author { display: flex; align-items: center; gap: 1rem; }
.testimonial-card .avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; color: var(--primary); font-weight: 700; font-size: 1.125rem; }
.testimonial-card .author-name { font-weight: 700; }
.testimonial-card .author-role { font-size: 0.875rem; color: var(--muted); }

/* CTA Section */
.cta-section { padding-bottom: 6rem; }
.cta-box { background: var(--foreground); border-radius: 3rem; padding: 3rem; position: relative; overflow: hidden; text-align: center; }
@media (min-width: 1024px) { .cta-box { padding: 5rem; } }
.cta-box .glow { position: absolute; top: -160px; right: -160px; width: 384px; height: 384px; background: var(--primary); border-radius: 50%; filter: blur(48px); opacity: 0.3; }
.cta-box .inner { position: relative; z-index: 10; max-width: 48rem; margin: 0 auto; }
.cta-box h2 { font-size: 2.25rem; color: white; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .cta-box h2 { font-size: 3rem; } }
.cta-box p { font-size: 1.125rem; color: #d1d5db; margin-bottom: 2.5rem; }
.cta-box .buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 640px) { .cta-box .buttons { flex-direction: row; } }
.btn-whatsapp { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.2); }
.btn-whatsapp:hover { background: white; color: var(--foreground); }

/* Form Styles */
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.5rem; }
.form-input { width: 100%; padding: 0.75rem 1rem; border: 1px solid transparent; background: rgba(241,245,249,0.5); border-radius: 0.75rem; font-size: 1rem; height: 48px; transition: all 0.2s; }
.form-input:focus { outline: none; background: white; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(177,18,38,0.1); }
.form-textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid transparent; background: rgba(241,245,249,0.5); border-radius: 0.75rem; font-size: 1rem; min-height: 120px; resize: none; transition: all 0.2s; }
.form-textarea:focus { outline: none; background: white; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(177,18,38,0.1); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
.btn-submit { width: 100%; padding: 1rem; border: none; background: var(--primary); color: white; border-radius: 0.75rem; font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 0.5rem; box-shadow: 0 10px 15px -3px rgba(177,18,38,0.3); cursor: pointer; transition: all 0.2s; height: 56px; }
.btn-submit:hover { background: var(--primary-hover); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }

/* Contact Cards Grid */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card { background: white; padding: 2rem; border-radius: 1.5rem; box-shadow: 0 1px 3px rgba(0,0,0,0.03); border: 1px solid #f1f5f9; text-align: center; }
.contact-card .icon-wrapper { width: 64px; height: 64px; background: var(--secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); margin: 0 auto 1.5rem; }
.contact-card .icon-wrapper svg { width: 28px; height: 28px; }
.contact-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.contact-card p, .contact-card a { color: var(--muted); font-size: 0.875rem; line-height: 1.75; }
.contact-card a.phone { display: block; font-size: 1.125rem; font-weight: 600; color: var(--foreground); margin-bottom: 0.25rem; }
.contact-card a.phone:hover { color: var(--primary); }

/* Form Card */
.form-card { background: white; border-radius: 2rem; padding: 2.5rem; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); border: 1px solid #f1f5f9; }
.form-card h2 { font-size: 1.875rem; margin-bottom: 0.5rem; }
.form-card .form-subtitle { color: var(--muted); margin-bottom: 2rem; }

/* Success State */
.success-state { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 3rem 0; text-align: center; }
.success-icon { width: 80px; height: 80px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.success-icon svg { width: 40px; height: 40px; color: #16a34a; }
.success-state h2 { font-size: 1.875rem; margin-bottom: 0.75rem; }
.success-state p { color: var(--muted); max-width: 24rem; margin-bottom: 2rem; }

/* Legal Content */
.legal-content { max-width: 56rem; margin: 0 auto; }
.legal-card { background: white; border-radius: 1.5rem; padding: 2rem; box-shadow: 0 1px 3px rgba(0,0,0,0.03); border: 1px solid #f1f5f9; }
@media (min-width: 768px) { .legal-card { padding: 3rem; } }
.legal-card h2 { font-size: 1.5rem; margin-bottom: 1rem; margin-top: 2rem; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p { color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; }
.legal-card ul { color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; padding-left: 1.5rem; }
.legal-card li { margin-bottom: 0.5rem; }

/* Blog Listing */
.blog-filters { display: flex; flex-direction: column; justify-content: space-between; align-items: center; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .blog-filters { flex-direction: row; } }
.category-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.category-btn { padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500; border: none; cursor: pointer; transition: all 0.2s; background: var(--secondary); color: var(--foreground); }
.category-btn:hover { background: #e2e8f0; }
.category-btn.active { background: var(--primary); color: white; box-shadow: 0 4px 6px -1px rgba(177,18,38,0.3); }
.search-box { position: relative; width: 100%; }
@media (min-width: 768px) { .search-box { width: 288px; } }
.search-box input { width: 100%; padding: 0.5rem 1rem 0.5rem 2.5rem; border-radius: 9999px; border: 1px solid #e2e8f0; background: rgba(241,245,249,0.5); font-size: 0.875rem; height: 40px; }
.search-box input:focus { outline: none; background: white; border-color: var(--primary); }
.search-box svg { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: #9ca3af; }
.no-results { grid-column: 1 / -1; padding: 5rem 0; text-align: center; color: var(--muted); }

/* Blog Single */
.blog-header { background: var(--secondary); padding: 6rem 0 4rem; }
.blog-header .container { max-width: 56rem; }
.blog-header .back-link { display: inline-flex; align-items: center; font-size: 0.875rem; font-weight: 500; color: var(--muted); margin-bottom: 2rem; gap: 0.5rem; transition: color 0.2s; }
.blog-header .back-link:hover { color: var(--primary); }
.blog-header .back-link svg { width: 16px; height: 16px; }
.blog-header .blog-meta { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; font-weight: 500; margin-bottom: 1.5rem; }
.blog-header .cat-badge { color: var(--primary); background: var(--primary-light); padding: 0.25rem 0.75rem; border-radius: 9999px; }
.blog-header .blog-date { color: var(--muted); }
.blog-header h1 { font-size: 1.875rem; line-height: 1.2; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .blog-header h1 { font-size: 3rem; } }
.blog-header .author-block { display: flex; align-items: center; gap: 1rem; }
.blog-header .author-img { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; background: white; border: 2px solid white; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.blog-header .author-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-header .author-name { font-weight: 600; }
.blog-header .author-title { font-size: 0.875rem; color: var(--muted); }
.blog-featured-img { max-width: 64rem; margin: -2.5rem auto 4rem; padding: 0 1rem; position: relative; z-index: 10; }
.blog-featured-img .img-wrapper { aspect-ratio: 21/9; border-radius: 1rem; overflow: hidden; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); border: 4px solid white; background: #f1f5f9; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-content { max-width: 48rem; margin: 0 auto; padding: 0 1rem; }
.blog-body { display: flex; flex-direction: column; gap: 3rem; }
@media (min-width: 768px) { .blog-body { flex-direction: row; } }
.social-sidebar { display: none; flex-direction: column; gap: 1rem; align-items: center; position: sticky; top: 128px; height: fit-content; }
@media (min-width: 768px) { .social-sidebar { display: flex; } }
.social-sidebar .label { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.social-btn { width: 40px; height: 40px; border-radius: 50%; background: var(--secondary); display: flex; align-items: center; justify-content: center; color: var(--foreground); border: none; transition: all 0.2s; cursor: pointer; }
.social-btn:hover { background: var(--primary); color: white; }
.social-btn svg { width: 16px; height: 16px; }
.social-divider { width: 1px; height: 48px; background: #e2e8f0; margin: 0.5rem 0; }
.article-body { flex: 1; padding-bottom: 4rem; border-bottom: 1px solid #f1f5f9; }
.article-body h2 { font-size: 1.875rem; margin: 2rem 0 1rem; }
.article-body h3 { font-size: 1.5rem; margin: 1.5rem 0 0.75rem; }
.article-body p { color: var(--muted); line-height: 1.875; margin-bottom: 1rem; font-size: 1.125rem; }
.article-body ul, .article-body ol { color: var(--muted); line-height: 1.875; margin-bottom: 1rem; padding-left: 1.5rem; font-size: 1.125rem; }
.article-body li { margin-bottom: 0.5rem; }
.article-body strong { color: var(--foreground); }
.blog-cta { margin-top: 4rem; background: rgba(177,18,38,0.05); border: 1px solid rgba(177,18,38,0.1); border-radius: 1rem; padding: 2rem; text-align: center; }
@media (min-width: 768px) { .blog-cta { padding: 3rem; } }
.blog-cta h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.blog-cta p { color: var(--muted); max-width: 36rem; margin: 0 auto 2rem; }

/* Service Detail Cards (Services Page) */
.service-detail-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 72rem; margin: 0 auto; }
@media (min-width: 1024px) { .service-detail-grid { grid-template-columns: 1fr 1fr; } }
.service-detail-card { background: white; border-radius: 2rem; padding: 1.5rem; box-shadow: 0 10px 40px rgba(0,0,0,0.03); border: 1px solid #f1f5f9; display: flex; flex-direction: column; transition: all 0.3s; }
.service-detail-card:hover { border-color: rgba(177,18,38,0.2); }
.service-detail-card .img-wrapper { height: 224px; border-radius: 0.75rem; overflow: hidden; margin-bottom: 1.5rem; position: relative; }
.service-detail-card .img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-detail-card:hover .img-wrapper img { transform: scale(1.05); }
.service-detail-card .img-overlay { position: absolute; top: 1rem; left: 1rem; background: rgba(255,255,255,0.9); backdrop-filter: blur(4px); padding: 0.5rem 0.75rem; border-radius: 0.5rem; box-shadow: 0 1px 3px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 0.5rem; color: var(--primary); }
.service-detail-card .img-overlay svg { width: 20px; height: 20px; }
.service-detail-card .img-overlay span { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.service-detail-card .card-body { padding: 0 0.5rem 0.5rem; flex: 1; display: flex; flex-direction: column; }
.service-detail-card h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.service-detail-card .full-desc { color: var(--muted); font-size: 15px; line-height: 1.75; margin-bottom: 2rem; flex: 1; }
.service-detail-card .who-needs { background: #f8f9fa; border-radius: 1rem; padding: 1.25rem; margin-bottom: 2rem; }
.service-detail-card .who-needs h4 { font-size: 0.875rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.service-detail-card .who-needs h4 svg { width: 16px; height: 16px; color: var(--primary); }
.service-detail-card .who-needs p { font-size: 0.875rem; color: var(--muted); line-height: 1.75; }
.service-detail-card .accordion { margin-top: auto; padding-top: 1.5rem; border-top: 1px solid #f1f5f9; }
.accordion-trigger { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: none; font-size: 0.875rem; font-weight: 600; color: var(--foreground); cursor: pointer; padding: 0; }
.accordion-trigger:hover { color: var(--primary); }
.accordion-trigger svg { width: 16px; height: 16px; transition: transform 0.3s; }
.accordion-trigger.open svg { transform: rotate(180deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-content .inner { padding-top: 1rem; font-size: 0.875rem; color: var(--muted); line-height: 1.75; }

/* About Page Specific */
.about-content-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .about-content-grid { grid-template-columns: 1fr 1fr; } }
.about-page-images { position: relative; }
.about-page-images .flex-imgs { display: flex; gap: 1.5rem; align-items: flex-end; }
.about-page-images .flex-imgs img { border-radius: 2rem; object-fit: cover; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.about-page-images .flex-imgs img:first-child { width: 50%; height: 400px; }
.about-page-images .flex-imgs img:last-child { width: 50%; height: 300px; margin-bottom: 2.5rem; }
.about-page-images .satisfaction-badge { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); background: white; padding: 1.25rem 2rem; border-radius: 1rem; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); border: 1px solid #f1f5f9; display: flex; align-items: center; gap: 1rem; white-space: nowrap; }
.satisfaction-badge .badge-circle { width: 48px; height: 48px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #16a34a; }
.satisfaction-badge .badge-circle svg { width: 24px; height: 24px; }
.satisfaction-badge .badge-number { font-weight: 700; font-size: 1.25rem; }
.satisfaction-badge .badge-label { font-size: 0.875rem; color: var(--muted); }

/* Doctor Profile */
.doctor-profile { max-width: 64rem; margin: 0 auto; }
.doctor-card { background: var(--secondary); border-radius: 3rem; padding: 2.5rem; display: flex; flex-direction: column; gap: 3rem; align-items: center; position: relative; overflow: hidden; }
@media (min-width: 768px) { .doctor-card { padding: 4rem; flex-direction: row; } }
.doctor-card .bg-blur { position: absolute; top: 0; right: 0; width: 256px; height: 256px; background: rgba(255,255,255,0.5); border-radius: 50%; filter: blur(48px); }
.doctor-card .doctor-img { width: 100%; position: relative; z-index: 10; }
@media (min-width: 768px) { .doctor-card .doctor-img { width: 33%; } }
.doctor-card .doctor-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 1.5rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); border: 4px solid white; }
.doctor-card .doctor-info { width: 100%; position: relative; z-index: 10; }
@media (min-width: 768px) { .doctor-card .doctor-info { width: 67%; } }
.doctor-card .role-badge { display: inline-block; background: var(--primary-light); color: var(--primary); padding: 0.25rem 0.75rem; border-radius: 0.375rem; font-size: 0.875rem; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 1rem; }
.doctor-card h3 { font-size: 2.25rem; margin-bottom: 0.5rem; }
.doctor-card .qualification { font-size: 1.125rem; font-weight: 500; margin-bottom: 1.5rem; }
.doctor-card .bio { color: var(--muted); line-height: 1.75; margin-bottom: 2rem; }
.doctor-card .expertise-title { font-weight: 700; margin-bottom: 1rem; }
.doctor-card .expertise-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.doctor-card .tag { background: white; padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500; border: 1px solid #f1f5f9; box-shadow: 0 1px 3px rgba(0,0,0,0.03); }

/* Loader */
@keyframes spin { to { transform: rotate(360deg); } }
.spinner { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: white; border-radius: 50%; animation: spin 0.6s linear infinite; }

/* Utility */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-6 { margin-top: 1.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.pb-24 { padding-bottom: 6rem; }
.hidden { display: none; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }

/* Two column layout */
.two-col { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; } }

/* Areas Grid */
.areas-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .areas-grid { grid-template-columns: 1fr 1fr; gap-x: 2rem; } }
