/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
   :root {
    /* Colors */
    --primary: #0056b3; /* Deep Medical Blue */
    --primary-light: #3385ff;
    --primary-dark: #003d82;
    --secondary: #00b4d8; /* Cyan/Teal for Dental/Accent */
    --accent: #00E676; /* WhatsApp Green */
    --accent-dark: #00C853;
    
    --bg-main: #f8fafc;
    --bg-light: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.85);
    
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 24px rgba(0,0,0,0.12);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Border Radius */
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.4);
}

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-dark);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-light);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: var(--transition);
    padding: 16px 0;
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-main);
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 180, 216, 0.1) 0%, transparent 40%),
                radial-gradient(circle at bottom left, rgba(0, 86, 179, 0.05) 0%, transparent 40%);
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 180, 216, 0.2);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content h1 span {
    color: var(--primary);
    position: relative;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--bg-light);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: inline-flex;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 1.125rem;
    color: var(--primary-dark);
}

.stat span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

/* Glass Card in Hero */
.glass-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-glass);
}

.main-hero-card {
    position: relative;
    z-index: 1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.card-header i {
    font-size: 32px;
    color: var(--primary);
}

.card-header h3 {
    font-size: 1.5rem;
    color: var(--text-main);
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.125rem;
    color: var(--text-main);
    font-weight: 500;
}

.benefit-list i {
    color: var(--secondary);
    font-size: 24px;
}

/* ==========================================================================
   Sections General
   ========================================================================== */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header h2 span {
    color: var(--primary);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

.bg-light {
    background-color: var(--bg-light);
}

.grid {
    display: grid;
    gap: 32px;
}

.cards-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
}

.blue-icon { background: rgba(0, 86, 179, 0.1); color: var(--primary); }
.green-icon { background: rgba(0, 200, 83, 0.1); color: var(--accent-dark); }
.purple-icon { background: rgba(138, 43, 226, 0.1); color: #8A2BE2; }

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.card p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary);
    font-weight: 600;
    font-family: var(--font-heading);
}

.card-link i {
    transition: var(--transition);
}

.card-link:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   Dental Section
   ========================================================================== */
.dental-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.dental-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.dental-content h2 span {
    color: var(--secondary);
}

.dental-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.check-list i {
    color: var(--secondary);
    background: rgba(0, 184, 216, 0.1);
    padding: 4px;
    border-radius: 50%;
    font-size: 16px;
}

.dental-cards {
    display: grid;
    gap: 24px;
}

.mini-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mini-card i {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.mini-card h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.mini-card span {
    color: var(--text-muted);
}

/* ==========================================================================
   Form Section
   ========================================================================== */
.form-section {
    background: var(--bg-main);
    position: relative;
    padding: 120px 0;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--primary-dark);
    z-index: 0;
}

.form-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.form-info {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 64px 48px;
}

.form-info h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.form-info h2 span {
    color: var(--secondary);
}

.form-info p {
    font-size: 1.1rem;
    margin-bottom: 48px;
    opacity: 0.9;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-circle {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    backdrop-filter: blur(10px);
}

.contact-item span {
    display: block;
    font-size: 0.875rem;
    opacity: 0.8;
}

.contact-item strong {
    font-size: 1.125rem;
    font-family: var(--font-heading);
}

.form-box {
    padding: 64px 48px;
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
    font-size: 0.9rem;
}

.input-wrapper, .select-wrapper {
    position: relative;
}

.input-wrapper i, .select-wrapper i:not(.ph-caret-down) {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 20px;
}

.select-wrapper .ph-caret-down {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

input, select {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    background: var(--bg-light);
    transition: var(--transition);
}

select {
    appearance: none;
    cursor: pointer;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
}

.btn-block {
    width: 100%;
    margin-top: 16px;
    padding: 18px;
    font-size: 1.125rem;
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
}

.btn-block:hover {
    background: var(--accent-dark);
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.4);
}

.form-secure {
    text-align: center;
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background: #0f172a;
    color: #f8fafc;
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand img {
    height: 48px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: #94a3b8;
    max-width: 400px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.footer-links ul, .footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a, .footer-contact a, .footer-contact li {
    color: #94a3b8;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--secondary);
}

.footer-contact i {
    color: var(--secondary);
    font-size: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    text-align: center;
    color: #94a3b8;
}

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-whatsapp i {
    color: #ffffff !important;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: var(--accent-dark);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(0, 230, 118, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.visible {
    opacity: 1;
    transform: translate(0);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 3rem; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-content { order: 1; }
    .hero-image { order: 2; display: flex; justify-content: center; }
    .hero-buttons { justify-content: center; }
    
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    
    .dental-container { grid-template-columns: 1fr; }
    .dental-content { text-align: center; }
    .check-list { align-items: center; }
    
    .form-wrapper { grid-template-columns: 1fr; }
    .form-info { padding: 48px 32px; }
    .form-box { padding: 48px 32px; }
    
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 73px);
        background: var(--bg-light);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
    }
    
    .nav-links.active { left: 0; }
    .mobile-menu-btn { display: block; }
    
    .hero-content h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .divider { width: 100%; height: 1px; }
    
    .cards-grid { grid-template-columns: 1fr; }
    
    .form-row { grid-template-columns: 1fr; }
    
    .footer-container { grid-template-columns: 1fr; gap: 40px; }
}

/* ==========================================================================
   GEO Pages - SEO Content Styles
   ========================================================================== */
.geo-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.geo-hero .hero-container {
    position: relative;
    z-index: 1;
}

.geo-hero h1,
.geo-hero h1 a,
.geo-hero p {
    color: white !important;
}

.geo-hero .badge {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.geo-hero h1 a {
    text-decoration: none;
    transition: var(--transition);
}

.geo-hero h1 a:hover {
    opacity: 0.85;
}

.seo-content {
    padding: 4rem 0;
}

.seo-content h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.seo-content h3 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.seo-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: var(--text-main);
}

.seo-content strong {
    color: var(--primary);
}

.seo-long-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--bg-main);
}

.seo-long-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    color: var(--primary);
}

.seo-long-content p {
    margin-bottom: 1.2rem;
    line-height: 1.85;
}

/* Service Details Cards on GEO pages */
.service-details .card {
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.service-details .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Internal Links Section */
.internal-links-section a {
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.internal-links-section a:hover {
    background: var(--primary);
    color: white;
}

/* ==========================================================================
   Cookie Banner
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.97);
    backdrop-filter: blur(12px);
    color: white;
    z-index: 10000;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    animation: slideUp 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
}

.cookie-buttons .btn-outline {
    border-color: rgba(255,255,255,0.4);
    color: white;
}

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

/* ==========================================================================
   Testimonials on GEO pages
   ========================================================================== */
.testimonials-section .testimonial-stars {
    letter-spacing: 2px;
}

/* ==========================================================================
   Sitemap / Institutional Pages
   ========================================================================== */
.sitemap-section h3 {
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary);
}

.bairros-grid a {
    color: var(--primary);
    font-size: 0.9rem;
    padding: 0.4rem 0;
    display: block;
    transition: var(--transition);
}

.bairros-grid a:hover {
    color: var(--secondary);
    padding-left: 0.5rem;
}

.privacy-section h2,
.cookies-section h2 {
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.privacy-section h3,
.cookies-section h3 {
    color: var(--primary-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-section ul,
.cookies-section ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.privacy-section li,
.cookies-section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* Contact Page */
.contact-section .form-group {
    margin-bottom: 1.2rem;
}

.contact-section label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: var(--text-main);
}

.contact-section input,
.contact-section select,
.contact-section textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-section input:focus,
.contact-section select:focus,
.contact-section textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.contact-info-sidebar {
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.map-responsive {
    margin-top: 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.map-responsive iframe {
    border-radius: var(--radius-md);
}

/* Section padding for institutional pages */
.py-5 {
    padding: 4rem 0;
}

.row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .row {
        grid-template-columns: 1fr;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
