/* Cerrajero 24h Cambrils - Same design as Salou (gold #F9BF03) */

:root {
    --primary: #F9BF03;
    --primary-dark: #D4A502;
    --primary-text: #8a7000; /* Dark gold for text on light bg (WCAG AA) */
    --dark: #1a1a1a;
    --dark-light: #2d2d2d;
    --text: #333333;
    --text-light: #555555; /* Sufficient contrast on white (WCAG AA) */
    --bg: #ffffff;
    /* WCAG AA 1.4.3: white text needs 4.5:1+ on background - https://dequeuniversity.com/rules/axe/4.11/color-contrast */
    --whatsapp-green: #0d6b33;   /* ~6.5:1 with white */
    --whatsapp-green-hover: #0a5528;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --border: #e5e5e5;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar - full width with padding */
.top-bar .container {
    max-width: none;
    padding-left: 24px;
    padding-right: 24px;
}

.top-bar {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.top-bar span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar strong {
    color: var(--dark);
    margin-right: 5px;
}

/* Header - full width with padding */
.main-header .container {
    max-width: none;
    padding-left: 24px;
    padding-right: 24px;
}

.main-header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo img {
    height: 65px;
    width: auto;
}

.logo .logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
}

.main-nav {
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    flex: 1;
    justify-content: center;
    flex-wrap: nowrap;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.3px;
    transition: color 0.3s;
    padding: 12px 4px;
    display: flex;
    align-items: center;
    min-height: 44px;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-text);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-header {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 10px 18px !important;
    border-radius: 6px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    border: 2px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}

.btn-header.btn-phone {
    background: var(--dark) !important;
    color: var(--bg) !important;
}

.btn-header.btn-phone:hover {
    background: var(--dark-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn-header.btn-whatsapp {
    background: var(--whatsapp-green) !important;
    color: white !important;
}

.btn-header.btn-whatsapp:hover {
    background: var(--whatsapp-green-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37,211,102,0.3);
}

.btn-header svg {
    flex-shrink: 0;
    width: 18px !important;
    height: 18px !important;
    fill: white;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    position: relative;
    pointer-events: auto;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text);
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 100px 0 80px;
    text-align: center;
    color: var(--dark);
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: var(--dark);
}

/* Hero Trust Box - same design as Salou */
.hero-trust-box {
    max-width: 600px;
    margin: 0 auto 30px;
    background: #1a1a1a;
    color: var(--bg);
    border-radius: 24px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    text-align: center;
}

.hero-trust-box-header {
    background: var(--primary);
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 28px;
    text-align: center;
}

.hero-trust-box-body {
    padding: 32px 32px 36px;
}

.hero-trust-bullets {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    text-align: left;
    width: 100%;
}

.hero-trust-bullets li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.5;
    color: #ffffff;
}

.hero-trust-bullets li.hero-trust-bullet-first {
    font-weight: 400;
}

.hero-trust-bullets li.hero-trust-bullet-first strong {
    font-weight: 600;
}

.hero-trust-bullets li .hero-trust-bullet-line2 {
    font-weight: 400;
    display: block;
    margin-top: 2px;
}

.hero-trust-bullets li:last-of-type {
    margin-bottom: 0;
}

.hero-trust-bullets li:not(.hero-trust-bullet-first)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17L4 12' stroke='%23F9BF03' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.hero-trust-bullets li.hero-trust-bullet-first::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z' stroke='%23F9BF03' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 12l2 2 4-4' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.hero-trust-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 24px;
    background: var(--primary);
    color: #000000;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border-radius: 999px;
    transition: background 0.2s, transform 0.2s;
    min-height: 56px;
    box-sizing: border-box;
}

.hero-trust-cta:hover {
    background: var(--primary-dark);
}

.hero-trust-cta:active {
    transform: scale(0.98);
}

.hero-supporting-text {
    max-width: 640px;
    margin: 36px auto 30px;
    text-align: center;
    color: var(--dark);
}

.hero-supporting-text p {
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 12px;
}

.hero-supporting-text p:last-child {
    margin-bottom: 0;
}

.hero-intro {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 25px;
    line-height: 1.8;
    color: var(--dark);
    opacity: 0.95;
}

.hero-motto {
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 60px;
    color: var(--dark);
}

/* Discount Notification - PERMANENT */
.discount-notification {
    max-width: 700px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--bg);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 3px var(--primary);
    position: relative;
    animation: slideDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
}

/* Prevent any hiding */
.discount-notification[style*="display: none"],
.discount-notification[style*="visibility: hidden"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.discount-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, #FFD700 50%, var(--primary) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.discount-notification.expiring {
    box-shadow: 0 10px 40px rgba(220, 53, 69, 0.4), 0 0 0 3px #dc3545;
    animation: pulseWarning 1s ease-in-out infinite;
}

@keyframes pulseWarning {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(220, 53, 69, 0.4), 0 0 0 3px #dc3545;
    }
    50% {
        box-shadow: 0 10px 40px rgba(220, 53, 69, 0.6), 0 0 0 4px #dc3545;
    }
}

.discount-badge {
    background: linear-gradient(135deg, var(--primary) 0%, #FFD700 100%);
    color: var(--dark);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 20px;
    text-align: center;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.discount-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    position: relative;
}

.discount-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #FFD700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.discount-icon svg {
    width: 32px;
    height: 32px;
}

.discount-text {
    flex: 1;
    text-align: left;
}

.discount-message {
    margin: 0 0 20px 0;
    font-size: 18px;
    line-height: 1.6;
    color: var(--bg);
}

.discount-message strong {
    font-weight: 700;
    font-size: 19px;
}

.discount-message .day-name {
    color: var(--primary);
    text-transform: capitalize;
    font-weight: 800;
    font-size: 20px;
}

.discount-timer-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.timer-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.promo-code-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.timer-label {
    font-weight: 600;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timer-countdown {
    font-weight: 800;
    font-family: 'Courier New', 'Monaco', monospace;
    font-size: 24px;
    color: var(--primary);
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 18px;
    border-radius: 8px;
    min-width: 90px;
    display: inline-block;
    text-align: center;
    border: 2px solid var(--primary);
}

.discount-notification.expiring .timer-countdown {
    color: #ff6b6b;
    border-color: #ff6b6b;
}

.promo-code-label {
    font-weight: 600;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-code {
    font-weight: 900 !important;
    font-family: 'Courier New', 'Monaco', monospace;
    font-size: 24px;
    color: #FFD700 !important;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 18px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #FFD700;
    letter-spacing: 2px;
    cursor: pointer;
    user-select: all;
    transition: background 0.2s;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    box-sizing: border-box;
}

.promo-code:hover {
    background: rgba(0, 0, 0, 0.5);
}

.promo-instruction {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    text-align: left;
    margin-top: 4px;
    line-height: 1.4;
    width: 100%;
}


.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 20px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-hero.btn-hero-phone {
    background: var(--dark);
    color: var(--bg);
}

.btn-hero.btn-hero-phone:hover {
    background: var(--dark-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.btn-hero.btn-hero-whatsapp {
    background: var(--whatsapp-green);
    color: white;
}

.btn-hero.btn-hero-whatsapp:hover {
    background: var(--whatsapp-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37,211,102,0.4);
}

.btn-hero svg {
    flex-shrink: 0;
    width: 20px !important;
    height: 20px !important;
    fill: white;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-feature-box {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--dark);
    stroke-width: 2;
}

.hero-feature-box h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
    text-transform: uppercase;
}

.hero-feature-box p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 15px;
}

.btn-feature {
    display: inline-block;
    padding: 12px 30px;
    background: var(--dark);
    color: var(--bg);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s;
    border: 2px solid var(--dark);
}

.btn-feature:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
}

/* Footer */
.main-footer {
    background: var(--bg-dark);
    color: var(--bg);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 600;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 4px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
    display: inline-block;
    padding: 10px 4px 10px 0;
    min-height: 44px;
    line-height: 24px;
    box-sizing: border-box;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-legal {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    padding: 10px 6px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.footer-legal a:hover {
    color: var(--primary);
}

.footer-copyright {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 999;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

    .whatsapp-float svg {
        width: 32px !important;
        height: 32px !important;
        fill: white;
    }

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 30px;
    padding: 15px 0;
}

.breadcrumbs ol {
    display: flex;
    list-style: none;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 14px;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: var(--primary-text);
}

.breadcrumbs .separator {
    color: var(--text-light);
    margin: 0 5px;
}

.breadcrumbs span {
    color: var(--text);
    font-weight: 500;
}

/* Links block (Guías, servicios, zonas) */
.links-servicios-zonas {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}
.links-servicios-zonas-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text);
}
.links-servicios-zonas-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem 1.5rem;
    list-style: none;
    padding: 0;
}
.links-servicios-zonas-list a {
    color: var(--primary-text);
    text-decoration: none;
}
.links-servicios-zonas-list a:hover {
    text-decoration: underline;
}

/* Content Sections */
.section {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.content-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 35px;
    transition: all 0.3s;
}

.content-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.content-card h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark);
}

.content-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-card a {
    color: var(--primary-text);
    text-decoration: none;
    font-weight: 500;
}

.content-card a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 0;
    transition: all 0.3s;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

.faq-section {
    margin-top: 40px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 12px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary-text);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s;
    stroke: currentColor;
    stroke-width: 2;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

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

.section-alt .container {
    padding-left: 40px;
    padding-right: 40px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Booking Form Styles */
.booking-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-form-wrapper {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--dark);
    font-size: 15px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    color: var(--text);
    background: var(--bg);
    transition: all 0.3s;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="date"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249, 191, 3, 0.1);
}

.form-group input[type="date"] {
    cursor: pointer;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: inherit;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(249, 191, 3, 0.3);
}

.btn-secondary {
    background: var(--dark);
    color: var(--bg);
    border: 2px solid var(--dark);
}

.btn-secondary:hover {
    background: var(--dark-light);
    border-color: var(--dark-light);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-large svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin-top: 30px;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.success-icon svg {
    width: 48px;
    height: 48px;
    stroke: white;
    stroke-width: 2;
}

.success-message h3 {
    font-size: 28px;
    font-weight: 700;
    color: #155724;
    margin-bottom: 15px;
}

.success-message p {
    font-size: 16px;
    color: #155724;
    margin-bottom: 10px;
    line-height: 1.6;
}

.success-details {
    font-size: 14px;
    color: #155724;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* Booking Info Cards */
.booking-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
}

.info-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    stroke-width: 2;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 15px;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Responsive */
@media (max-width: 968px) {
    .main-header {
        position: relative;
        padding: 15px 0;
    }
    
    .header-content {
        flex-wrap: nowrap;
        position: relative;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }
    
    .logo {
        flex: 0 0 auto;
        order: 1;
    }
    
    .logo img {
        height: 70px;
        width: auto;
    }
    
    .main-nav {
        position: static;
        order: 3;
        width: auto;
        flex: 0 0 auto;
        margin-top: 0;
    }
    
    .nav-menu {
        display: none !important;
        position: fixed;
        top: auto;
        left: 20px;
        right: 20px;
        width: auto;
        background: var(--bg);
        flex-direction: column;
        padding: 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        border: 1px solid var(--border);
        border-radius: 8px;
        z-index: 1000;
        margin: 0;
        visibility: hidden;
        opacity: 0;
        transition: visibility 0.3s, opacity 0.3s;
        max-height: 0;
        overflow: hidden;
    }
    
    .nav-menu.active {
        display: flex !important;
        flex-direction: column !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-height: 500px;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex !important;
        flex-direction: column !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-height: 500px;
        overflow-y: auto;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        order: 2;
        margin-left: 0;
        align-self: center;
    }
    
    .header-contact {
        order: 4;
        display: none !important;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 15px 20px;
        display: block;
        width: 100%;
        text-align: left;
        box-sizing: border-box;
    }
    
    .nav-menu-contact-mobile {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 15px 0;
        margin-top: 10px;
        border-top: 2px solid var(--border);
    }
    
    .btn-menu-phone,
    .btn-menu-whatsapp {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 20px !important;
        border-radius: 6px;
        text-decoration: none !important;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s;
        width: 100%;
        border-bottom: none !important;
    }
    
    .btn-menu-phone {
        background: var(--dark) !important;
        color: var(--bg) !important;
    }
    
    .btn-menu-phone:hover {
        background: var(--dark-light) !important;
    }
    
    .btn-menu-whatsapp {
        background: var(--whatsapp-green) !important;
        color: white !important;
    }
    
    .btn-menu-whatsapp:hover {
        background: var(--whatsapp-green-hover) !important;
    }
    
    .btn-menu-phone svg,
    .btn-menu-whatsapp svg {
        width: 18px !important;
        height: 18px !important;
        fill: white;
        flex-shrink: 0;
    }
    
    .header-contact {
        display: none;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .top-bar {
        padding: 4px 0;
        font-size: 11px;
    }
    
    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }
    
    .top-bar-left,
    .top-bar-right {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 10px;
    }
    
    .top-bar span {
        font-size: 10px;
        padding: 2px 0;
    }
    
    .top-bar strong {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0 50px;
    }
    
    .hero h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .discount-notification {
        margin: 0 auto 15px;
        max-width: 100%;
    }
    
    .discount-badge {
        font-size: 10px;
        padding: 6px 15px;
        letter-spacing: 1px;
    }
    
    .discount-content {
        gap: 15px;
        padding: 20px;
        flex-direction: column;
    }
    
    .discount-icon {
        width: 50px;
        height: 50px;
        align-self: center;
    }
    
    .discount-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .discount-message {
        font-size: 15px;
        margin-bottom: 12px;
        text-align: center;
    }
    
    .discount-message strong {
        font-size: 16px;
    }
    
    .discount-message .day-name {
        font-size: 17px;
    }
    
    .discount-timer-wrapper {
        padding: 12px;
        gap: 15px;
        width: 100%;
        grid-template-columns: 1fr;
    }
    
    .timer-section {
        width: 100%;
        align-items: center;
    }
    
    .promo-code-section {
        width: 100%;
        align-items: center;
    }
    
    .timer-label {
        font-size: 11px;
    }
    
    .timer-countdown {
        font-size: 20px;
        padding: 8px 16px;
        min-width: 80px;
    }
    
    .promo-code {
        font-size: 18px;
        padding: 8px 15px;
        letter-spacing: 1.5px;
    }
    
    .promo-instruction {
        font-size: 10px;
        text-align: center;
    }
    
    .hero-intro {
        font-size: 14px;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        max-height: 40px;
        line-height: 1.4;
    }
    
    .hero-motto {
        font-size: 15px;
        margin-bottom: 12px;
        display: none; /* Hide on mobile to save space */
    }
    
    .hero .container {
        display: flex;
        flex-direction: column;
    }
    
    .hero h1 {
        order: 1;
    }
    
    .hero-trust-box {
        order: 2;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        margin-bottom: 0;
    }
    
    .hero-trust-box-header {
        font-size: 15px;
        padding: 16px 24px;
    }
    
    .hero-trust-box-body {
        padding: 28px 28px 32px;
    }
    
    .hero-supporting-text {
        order: 3;
        margin: 32px auto 24px;
        padding: 0 8px;
    }
    
    .hero-supporting-text p {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .hero-cta {
        margin-top: 0;
        margin-bottom: 12px;
        order: 4;
    }
    
    .discount-notification {
        order: 5;
    }
    
    .hero-intro {
        order: 6;
    }
    
    .hero-motto {
        order: 7;
    }
    
    .hero-features {
        order: 8;
    }
    
    .hero-features {
        margin-top: 20px;
    }
}

/* Reviews Carousel Styles */
.reviews-carousel-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark);
}

.stars {
    display: flex;
    gap: 4px;
}

.review-count {
    font-size: 16px;
    color: var(--text-light);
}

.reviews-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto 30px;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.review-card {
    display: none;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: opacity 0.3s ease;
}

.review-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.review-meta {
    font-size: 14px;
    color: var(--text-light);
}

.review-location {
    font-weight: 500;
    color: var(--dark);
}

.review-meta-sep {
    color: var(--text-light);
    margin: 0 2px;
}

.review-date {
    color: var(--text-light);
}

.review-rating {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--bg);
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--dark);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 16px;
    margin: -16px 0;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.carousel-dot.active {
    background: var(--primary);
    width: 14px;
    height: 14px;
}

.carousel-dot:hover::after {
    background: var(--primary-dark);
}

.reviews-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-reviews {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary);
    color: var(--dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.btn-reviews:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 191, 3, 0.3);
}

/* Reviews Page Styles */
.reviews-page-header {
    margin-bottom: 40px;
}

.reviews-summary-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.summary-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.rating-value-large {
    font-size: 64px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.stars-large {
    display: flex;
    gap: 6px;
}

.review-count-large {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-label {
    font-size: 14px;
    color: var(--text);
    min-width: 80px;
    text-align: left;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: var(--primary);
    transition: width 0.3s ease;
}

.rating-count {
    font-size: 14px;
    color: var(--text-light);
    min-width: 30px;
    text-align: right;
}

.reviews-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.filter-group select {
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    background: var(--bg);
    color: var(--text);
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.filter-group select:hover {
    border-color: var(--primary);
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249, 191, 3, 0.1);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.review-card-full {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card-full:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.review-header-full {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
}

.review-author-full {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.author-avatar-full {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info-full {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name-full {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.review-meta-full {
    font-size: 14px;
    color: var(--text-light);
}

.review-location-full {
    font-weight: 500;
    color: var(--dark);
}

.review-date-full {
    color: var(--text-light);
}

.review-rating-full {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.review-text-full {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
}

.no-reviews {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    font-size: 18px;
}

/* Related links - internal linking for SEO */
.related-links-section {
    padding-top: 40px;
    padding-bottom: 50px;
}

.related-links-section .section-title {
    margin-bottom: 24px;
    font-size: 1.35rem;
}

.related-links-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px 24px;
    margin: 0;
    padding: 0;
}

.related-links-list li {
    margin: 0;
}

.related-links-list a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    display: inline-block;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.related-links-list a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary);
}

/* Responsive Reviews Styles */
@media (max-width: 768px) {
    .reviews-carousel-section {
        padding: 40px 0;
    }
    
    .rating-value {
        font-size: 36px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .review-rating {
        align-self: flex-start;
    }
    
    .reviews-summary-card {
        padding: 30px 20px;
    }
    
    .rating-value-large {
        font-size: 48px;
    }
    
    .reviews-filters {
        flex-direction: column;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .carousel-controls {
        gap: 15px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    .booking-container {
        grid-template-columns: 1fr;
    }
    .booking-form-wrapper {
        padding: 25px;
    }
    .section-title {
        font-size: 28px;
    }
    .section-subtitle {
        font-size: 16px;
    }
    
    .rating-value {
        font-size: 32px;
    }
    
    .rating-value-large {
        font-size: 40px;
    }
    
    .review-card {
        padding: 15px;
    }
    
    .review-card-full {
        padding: 20px;
    }
    
    .reviews-summary-card {
        padding: 25px 15px;
    }
}

/* ========== Inner page compatibility: .wrap, .content, .card, .breadcrumb, .btn, .related-links, .links-block ========== */
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content .content.wrap,
.main-content .content {
    padding: 40px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.main-content .content h1,
.main-content .content.wrap h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--dark);
}

.hero .wrap {
    padding: 0 20px;
}

.card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px 28px;
    margin-bottom: 24px;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.card h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--dark);
}

.card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--dark);
}

.card h3 a {
    color: var(--primary-text);
    text-decoration: none;
}

.card h3 a:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

.card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 12px;
}

.card p:last-child {
    margin-bottom: 0;
}

.card a {
    color: var(--primary-text);
    text-decoration: none;
}

.card a:hover {
    text-decoration: underline;
}

/* Contact page map (schema coordinates) */
.contact-map-card .contact-map-desc {
    margin-bottom: 16px;
}
.contact-map-wrap {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-light);
}
.contact-map-iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
}

/* Simple breadcrumb (nav.breadcrumb from components) */
.breadcrumb {
    padding: 12px 0 20px;
    font-size: 14px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary-text);
}

.breadcrumb span {
    color: var(--text);
    font-weight: 500;
}

/* Buttons in hero/content (inner pages) */
.content .btn,
.hero .btn,
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
    margin-right: 8px;
    margin-bottom: 8px;
}

.btn-phone {
    background: var(--dark);
    color: var(--bg);
    border-color: var(--dark);
}

.btn-phone:hover {
    background: var(--dark-light);
    color: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn-wa {
    background: var(--whatsapp-green);
    color: white;
    border-color: var(--whatsapp-green);
}

.btn-wa:hover {
    background: var(--whatsapp-green-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37,211,102,0.3);
}

/* Related links section (components.php relatedLinks()) */
.related-links {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.related-links h2 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.related-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px 24px;
}

.related-links li {
    margin: 0;
}

.related-links a {
    color: var(--primary-text);
    text-decoration: none;
    font-size: 15px;
}

.related-links a:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

/* Links block (components.php linksBlockServiciosZonas()) */
.links-block {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.links-block h2 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.links-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 6px 1.5rem;
}

.links-block a {
    color: var(--primary-text);
    text-decoration: none;
    font-size: 14px;
}

.links-block a:hover {
    text-decoration: underline;
}