/* Self-hosted Poppins font (GDPR compliant - no external requests) */
@font-face { font-family: 'Poppins'; font-weight: 300; font-style: normal; font-display: swap; src: url('/fonts/poppins-300.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-weight: 400; font-style: normal; font-display: swap; src: url('/fonts/poppins-400.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-weight: 500; font-style: normal; font-display: swap; src: url('/fonts/poppins-500.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-weight: 600; font-style: normal; font-display: swap; src: url('/fonts/poppins-600.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-weight: 700; font-style: normal; font-display: swap; src: url('/fonts/poppins-700.woff2') format('woff2'); }

/* Root variables - Brand colors */
:root {
    --primary-brown: #8B7355;
    --dark-brown-hover: #6B5745;
    --dark-bg: #3E3228;
    --light-bg: #D4C4B0;
    --beige-bg: #D4C4B0;
    --light-beige: #E8DCC8;
    --accent-terracotta: #C17859;
    --dark-terracotta: #a5634a;
    --white: #ffffff;
    --text-dark: #2C2418;
    --text-dark-alt: #3E3228;
}

/* Global styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--beige-bg);
}

/* Add horizontal padding to text elements */
h1, h2, h3, h4, h5, h6, p, ul, ol, li {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
}

/* Remove padding from text inside containers and footer (handled by their own layout) */
.container h1, .container h2, .container h3, .container h4, .container h5, .container h6,
.container p, .container ul, .container ol, .container li,
.footer-custom h1, .footer-custom h2, .footer-custom h3, .footer-custom h4, .footer-custom h5, .footer-custom h6,
.footer-custom p, .footer-custom ul, .footer-custom ol, .footer-custom li {
    padding: 0;
}

/* Full-width page wrapper - removes beige margins */
.page-wrapper {
    margin-top: -4rem;
    margin-bottom: -4rem;
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-dark);
}

/* Navbar styles */
.navbar-custom {
    background-color: #000000 !important;
    padding: 1rem 0;
    min-height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: padding 0.3s ease, min-height 0.3s ease, box-shadow 0.3s ease;
}
.navbar-custom.scrolled {
    padding: 0.5rem 0;
    min-height: 70px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}
body {
    padding-top: 100px;
}

@media (max-width: 768px) {
    .navbar-custom {
        min-height: 90px;
    }
    body {
        padding-top: 90px;
    }
    .navbar-custom.scrolled {
        min-height: 60px;
    }
}

.navbar-custom .navbar-brand {
    color: var(--white) !important;
    font-weight: 700;
    font-size: 1.5rem;
}
.navbar-logo {
    height: 52px;
    width: auto;
    transition: height 0.3s ease;
}
.navbar-custom.scrolled .navbar-logo {
    height: 38px;
}

.btn-nav-call {
    display: none;
    align-items: center;
    gap: 0.35rem;
    background: var(--accent-terracotta);
    color: var(--white) !important;
    border: none;
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.2s ease;
}
.btn-nav-call:hover {
    background: var(--dark-terracotta);
    color: var(--white) !important;
    transform: scale(1.05);
}
.navbar-custom.scrolled .btn-nav-call {
    display: inline-flex;
}

.navbar-custom .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--accent-terracotta) !important;
}

.navbar-custom .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero section */
.hero-section {
    background: url('/images/dog-background.jpg') center/cover no-repeat fixed;
    color: var(--white);
    padding: 5rem 0;
    margin-bottom: 0;
    position: relative;
}

.hero-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    font-weight: 300;
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-terracotta);
    border-color: var(--accent-terracotta);
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
    border-radius: 5px;
    border-width: 2px;
}

.btn-primary:hover {
    background-color: var(--dark-terracotta);
    border-color: var(--dark-terracotta);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary {
    color: var(--accent-terracotta);
    border-color: var(--accent-terracotta);
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    border-width: 2px;
}

.btn-outline-primary:hover {
    background-color: var(--accent-terracotta);
    border-color: var(--accent-terracotta);
    color: var(--white);
}

/* Services Section - Editorial Style */
.services-header {
    margin-bottom: 3.5rem;
}

.services-tagline {
    display: block;
    color: var(--accent-terracotta);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

/* Editorial Grid */
.services-editorial {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Editorial Item - Card with overlapping image */
.service-editorial-item {
    text-align: left;
    position: relative;
    padding-top: 100px;
}

/* White card background that sits behind content */
.service-editorial-card {
    background: var(--white);
    border-radius: 10px;
    padding: 100px 1.75rem 1.75rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

/* Image floats above the card */
.service-editorial-img {
    position: absolute;
    top: 0;
    right: 1rem;
    width: 65%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.service-editorial-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.service-editorial-item:hover .service-editorial-img img {
    transform: scale(1.03);
}

/* Content */
.service-editorial-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.service-editorial-item p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Link */
.service-editorial-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent-terracotta);
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: gap 0.3s ease;
}

.service-editorial-link:hover {
    color: var(--dark-terracotta);
    gap: 0.6rem;
}

.service-editorial-link i {
    font-size: 0.85rem;
}

/* Services Footer */
.services-footer {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.services-all-link {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.services-all-link:hover {
    color: var(--accent-terracotta);
}

/* Responsive */
@media (max-width: 992px) {
    .services-editorial {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .services-header h2 {
        font-size: 1.75rem;
    }

    .services-editorial {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .service-editorial-img {
        width: 60%;
    }

    .service-editorial-img img {
        height: 160px;
    }
}

/* Service Detail Cards (Services Page) */
.service-detail-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.service-detail-card .service-image {
    border-radius: 12px;
    width: 100%;
    height: 280px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-detail-card h2 {
    color: var(--accent-terracotta);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-detail-card .lead {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.service-detail-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-detail-card h5 {
    color: var(--accent-terracotta);
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail-card ul li {
    padding: 0.5rem 0;
    padding-left: 0;
    display: flex;
    align-items: flex-start;
    color: #555;
}

/* Service badge above title */
.service-badge {
    display: inline-block;
    background: var(--accent-terracotta);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Feature list icons */
.service-detail-card ul li i {
    color: var(--accent-terracotta);
    margin-right: 0.75rem;
    font-size: 1.1rem;
    width: 1.25rem;
    text-align: center;
}

.service-detail-card .btn {
    border-radius: 25px;
    padding: 0.6rem 1.8rem;
}

@media (max-width: 768px) {
    .service-detail-card {
        padding: 1.5rem;
    }

    .service-detail-card .service-image {
        height: 200px;
        margin-bottom: 1.5rem;
    }

    .service-detail-card h2 {
        font-size: 1.5rem;
    }
}

/* Footer styles */
.footer-custom {
    background-color: #1a1a1a;
    padding: 1.25rem 0 0.75rem 0;
    margin-top: 0;
    border-top: none;
}

.footer-custom [class*="col-"] {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-custom h6 {
    color: var(--white);
    font-weight: 600;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-custom p,
.footer-custom ul {
    color: rgba(255, 255, 255, 0.8);
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.footer-custom ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.footer-custom ul li {
    margin-bottom: 0.15rem;
}

.footer-custom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-custom a:hover {
    color: var(--white);
}

.footer-custom .text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
}

.footer-bottom {
    background-color: #000000;
    color: var(--white);
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.8rem;
}

/* Contact form */
.contact-form .form-control {
    border: 2px solid #e0e0e0;
    padding: 0.75rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--accent-terracotta);
    box-shadow: 0 0 0 0.2rem rgba(55, 122, 0, 0.15);
}

/* Page Hero Sections */
.page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    color: var(--white);
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-hero-content .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 220px;
        background-attachment: scroll; /* Fallback for mobile */
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .page-hero-content .lead {
        font-size: 1rem;
    }

    .hero-section {
        background-attachment: scroll; /* Fallback for mobile */
    }
}

/* Page sections */
.page-section {
    padding: 2rem 0;
    background-color: var(--beige-bg);
    position: relative;
    z-index: 1;
}

/* Section with solid background (scrolls over parallax) */
.section-content {
    background-color: var(--beige-bg);
    position: relative;
    z-index: 1;
}

/* Spacer section - shows the background image with parallax */
.section-spacer {
    height: 300px;
    position: relative;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.section-spacer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .section-spacer {
        display: none;
    }
}

/* Alternating section background */
.section-alt {
    background-color: #f5ebe0;
    position: relative;
    z-index: 1;
}

/* Centered section title (no underline) */
.section-alt .section-title {
    text-align: center;
}

.section-alt .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Feature items for "Why Choose Us" section */
.feature-item {
    padding: 1.5rem 1rem;
    text-align: center;
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.75rem;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1);
}

.feature-icon.icon-clock {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1976d2;
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.25);
}

.feature-icon.icon-climate {
    background: linear-gradient(135deg, #fff3e0 0%, #ffccbc 100%);
    color: #e65100;
    box-shadow: 0 8px 25px rgba(230, 81, 0, 0.25);
}

.feature-icon.icon-pool {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    color: #00838f;
    box-shadow: 0 8px 25px rgba(0, 131, 143, 0.25);
}

.feature-icon.icon-house {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
    color: #c2185b;
    box-shadow: 0 8px 25px rgba(194, 24, 91, 0.25);
}
.feature-icon.icon-space {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.25);
}

.feature-item h5 {
    color: var(--accent-terracotta);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   ABOUT PAGE - Chi Siamo
   ============================================ */

/* Story block: image + text side by side */
.about-block {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-block.reversed {
    flex-direction: row-reverse;
}

.about-block-img {
    flex: 0 0 45%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.about-block-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.about-block-text {
    flex: 1;
}

/* Small label above heading */
.about-label {
    display: block;
    color: var(--accent-terracotta);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.about-block-text h3 {
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.about-block-text p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

/* Quote Banner */
.about-quote-banner {
    background: var(--dark-bg);
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.about-quote-banner blockquote {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    text-align: center;
    margin: 0;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.about-quote-banner blockquote i {
    display: block;
    font-size: 2.5rem;
    color: var(--accent-terracotta);
    margin-bottom: 0.75rem;
    font-style: normal;
}

/* Section title for values */
.about-section-title {
    color: var(--accent-terracotta);
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

.about-values-section {
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .about-block,
    .about-block.reversed {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-block-img {
        flex: none;
        width: 100%;
    }

    .about-block-img img {
        height: 220px;
    }

    .about-block-text h3 {
        font-size: 1.4rem;
    }

    .about-quote-banner blockquote {
        font-size: 1.15rem;
    }
}

/* Values / "Why Choose Us" cards */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.value-card {
    position: relative;
    padding-top: 40px;
    text-align: left;
}

.value-card-body {
    background: var(--white);
    border-radius: 10px;
    padding: 55px 1.75rem 1.75rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.value-card-icon {
    position: absolute;
    top: 0;
    left: 1.75rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    border-radius: 12px;
    background: var(--accent-terracotta);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(193, 120, 89, 0.35);
    z-index: 2;
}

.value-card h5 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* CTA banner */
.about-cta {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.about-cta h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.about-cta .lead {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.section-title {
    color: var(--accent-terracotta);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Utilities */
.text-primary-green {
    color: var(--accent-terracotta);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

.whatsapp-icon {
    width: 36px;
    height: 36px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-icon {
        width: 32px;
        height: 32px;
    }
}

/* ============================================
   VALIDATION ERROR STYLING
   ============================================ */

/* Validation error text */
.field-validation-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Invalid input border */
.input-validation-error {
    border-color: #dc3545 !important;
}

/* Validation summary box */
.validation-summary-errors {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.validation-summary-errors ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

/* Alert animations */
.alert {
    animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================
   SOCIAL MEDIA LINKS (FOOTER)
   ============================================ */

.social-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--white);
    color: #1a1a1a;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments for social links */
@media (max-width: 768px) {
    .social-link {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }
}

/* ============================================
   IMAGE CAROUSEL STYLES
   ============================================ */

#estateCarousel {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

#estateCarousel .carousel-inner {
    height: 75vh;
    min-height: 300px;
    background-color: var(--beige-bg);
}

#estateCarousel .carousel-item {
    height: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
#estateCarousel .carousel-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(20px) brightness(0.5);
    transform: scale(1.08);
    z-index: 0;
}
.carousel-image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}



/* Custom controls */
#estateCarousel .carousel-control-prev,
#estateCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(55, 122, 0, 0.7);
    border-radius: 50%;
    opacity: 0.9;
    transition: all 0.3s ease;
}

#estateCarousel .carousel-control-prev { left: 15px; }
#estateCarousel .carousel-control-next { right: 15px; }

#estateCarousel .carousel-control-prev:hover,
#estateCarousel .carousel-control-next:hover {
    background-color: var(--accent-terracotta);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

/* Indicators */
#estateCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
}

#estateCarousel .carousel-indicators button.active {
    background-color: var(--accent-terracotta);
    transform: scale(1.2);
}

/* Thumbnails */
.carousel-thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    border: 3px solid transparent;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-thumbnail:hover,
.carousel-thumbnail.active {
    opacity: 1;
    border-color: var(--accent-terracotta);
    transform: scale(1.05);
}

@media (max-width: 576px) {
    .carousel-thumbnail { width: 60px; height: 45px; }
}

/* Lightbox */

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact page - remove main margins and extend to edges */
.contact-page-wrapper {
    margin-top: -4rem;
    margin-bottom: -4rem;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #1a1a1a;
}

/* Contact page content - parallax background with overlay */
.contact-page-content {
    position: relative;
    background: url('/images/dog-background.jpg') center/cover no-repeat fixed;
    padding: 0;
}

.contact-page-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.contact-page-content > *:not(.contact-page-content-overlay) {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .contact-page-content {
        background-attachment: scroll;
    }
}

/* Map Section - Clean, simple styling */
.map-section {
    background-color: #1a1a1a;
    padding: 2rem 0;
    text-align: center;
}

.map-section-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

.map-section iframe {
    display: block;
    width: 80%;
    max-width: 1000px;
    height: 400px;
    border: none;
    margin: 0 auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .map-section iframe {
        width: 95%;
        height: 300px;
    }
}

/* Contact Cards */
.contact-card {
    display: block;
    background-color: #1a1a1a;
    border-radius: 0;
    padding: 40px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: none;
    height: 100%;
    min-height: 200px;
    overflow: hidden;
    word-wrap: break-word;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(55, 122, 0, 0.3);
    color: var(--white);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 2.5rem;
}

/* Icon Colors */
.phone-icon {
    background-color: #ff6b35;
    color: var(--white);
}

.whatsapp-icon {
    background-color: #25D366;
    color: var(--white);
}

.email-icon {
    background-color: #ff6b35;
    color: var(--white);
}

.facebook-icon {
    background-color: #1877f2;
    color: var(--white);
}

.instagram-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.tiktok-icon {
    background-color: #000000;
    color: var(--white);
    border: 2px solid var(--white);
}

.contact-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-card-info {
    font-size: 1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    word-wrap: break-word;
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width: 100%;
    hyphens: auto;
}

/* Contact page columns overflow protection */
.container .row [class*="col-"] .contact-card {
    max-width: 100%;
}

@media (max-width: 768px) {
    .contact-card {
        padding: 20px 10px;
        min-height: 160px;
    }

    .contact-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .contact-card-title {
        font-size: 1rem;
    }

    .contact-card-info {
        font-size: 0.85rem;
        padding: 0 5px;
    }
}

@media (max-width: 576px) {
    .contact-card {
        padding: 15px 8px;
        min-height: 140px;
    }

    .contact-card-info {
        font-size: 0.8rem;
        padding: 0 3px;
    }
}

/* Hours Section */
.contact-hours-section {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 40px;
    margin-top: 30px;
    color: var(--white);
    overflow: hidden;
    word-wrap: break-word;
}

.contact-hours-title {
    color: #ff6b35;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.contact-hours-address {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-hours-table {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

.contact-hours-table .row {
    padding: 10px 0;
}

.contact-hours-table hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 5px 0;
}

@media (max-width: 768px) {
    .contact-hours-section {
        padding: 30px 20px;
    }

    .contact-hours-title {
        font-size: 1.5rem;
    }

    .contact-hours-address {
        font-size: 1rem;
    }

    .contact-hours-table {
        font-size: 0.9rem;
    }
}

/* ============================================
   REVIEWS SECTION - Google Reviews Style
   ============================================ */

.reviews-section {
    background-color: #f0f0f0;
    padding: 60px 0;
    margin-top: 60px;
}

.reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.reviews-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive for reviews */
@media (max-width: 768px) {
    .reviews-header h2 {
        font-size: 1.8rem;
    }
}

/* ============================================
   Legal Pages (Cookie Policy, Privacy, Legal Notice)
   ============================================ */
.legal-page-wrapper {
    background: #ffffff;
    padding: 4rem 0 5rem;
}
.legal-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: #888;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
    margin-bottom: 2.5rem;
}
.legal-meta i { margin-right: 0.4rem; color: var(--accent-terracotta); }

.legal-section {
    border-bottom: 1px solid #f0f0f0;
    padding: 2.5rem 0;
}
.legal-section:last-of-type { border-bottom: none; }

.legal-section-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.legal-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ebebeb;
    line-height: 1;
    min-width: 2.5rem;
}
.legal-section-header h2 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}
.legal-subsection-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.legal-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.legal-badge-ok { background: #d4edda; color: #155724; }
.legal-badge-warn { background: #fff3cd; color: #856404; }

.legal-table-wrap {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #eee;
    margin: 1rem 0;
}
.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    margin: 0;
}
.legal-table thead th {
    background: #f8f8f8;
    padding: 0.75rem 1rem;
    font-weight: 600;
    color: #555;
    border-bottom: 1px solid #eee;
    white-space: nowrap;
}
.legal-table tbody td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f5f5f5;
    vertical-align: top;
    line-height: 1.5;
}
.legal-table tbody tr:last-child td { border-bottom: none; }
.legal-table code {
    background: #f4f4f4;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    font-size: 0.82rem;
    color: #c17859;
}
.legal-table a { color: var(--accent-terracotta); text-decoration: none; }
.legal-table a:hover { text-decoration: underline; }

.legal-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 1rem;
}
.legal-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0;
    font-size: 0.95rem;
}
.legal-list .bi-check-circle-fill { color: #28a745; }
.legal-list .bi-x-circle-fill { color: #dc3545; }
.legal-list .bi-sliders { color: var(--accent-terracotta); }

.legal-browser-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}
.legal-browser-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #555;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}
.legal-browser-btn:hover {
    border-color: var(--accent-terracotta);
    color: var(--accent-terracotta);
}

.legal-warning {
    background: #fff8f0;
    border-left: 3px solid var(--accent-terracotta);
    padding: 0.75rem 1rem;
    border-radius: 0 6px 6px 0;
    font-size: 0.88rem;
    color: #7a4a2a;
    margin-top: 1rem;
}
.legal-warning i { margin-right: 0.4rem; }

.legal-info-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    margin: 1rem 0;
}
.legal-info-row {
    display: flex;
    gap: 1rem;
    padding: 0.65rem 1rem;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.9rem;
    align-items: baseline;
}
.legal-info-row:last-child { border-bottom: none; }
.legal-info-row:nth-child(odd) { background: #fafafa; }
.legal-info-row span {
    min-width: 130px;
    color: #888;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    flex-shrink: 0;
}
.legal-info-row strong { color: var(--text-dark); font-weight: 500; }
.legal-info-row a { color: var(--accent-terracotta); text-decoration: none; }
.legal-info-row a:hover { text-decoration: underline; }

.legal-footer-note {
    margin-top: 3rem;
    padding: 1.25rem 1.5rem;
    background: #f8f8f8;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #666;
}
.legal-footer-note i { margin-right: 0.5rem; color: var(--accent-terracotta); }
.legal-footer-note a { color: var(--accent-terracotta); text-decoration: none; }
.legal-footer-note a:hover { text-decoration: underline; }

/* ============================================
   Cookie Consent Banner
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    color: #f0f0f0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
}
.cookie-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    position: relative;
}
.cookie-banner-close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem;
}
.cookie-banner-close:hover { color: #fff; }
.cookie-banner-text { margin-bottom: 1rem; padding-right: 2rem; }
.cookie-banner-text strong { color: #fff; font-size: 1rem; }
.cookie-banner-text p { margin: 0.5rem 0 0; color: #ccc; font-size: 0.85rem; line-height: 1.5; }
.cookie-banner-text a { color: var(--accent-terracotta); text-decoration: underline; }
.cookie-banner-text a:hover { color: #e0956e; }

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}
.cookie-btn {
    border: none;
    border-radius: 6px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}
.cookie-btn:active { transform: scale(0.97); }
.cookie-btn-accept {
    background: var(--accent-terracotta);
    color: #fff;
}
.cookie-btn-accept:hover { background: var(--dark-terracotta); }
.cookie-btn-reject {
    background: #444;
    color: #fff;
}
.cookie-btn-reject:hover { background: #555; }
.cookie-btn-customize {
    background: none;
    border: none;
    color: var(--accent-terracotta);
    cursor: pointer;
    font-size: 0.85rem;
    text-decoration: underline;
    padding: 0.5rem;
}
.cookie-btn-customize:hover { color: #e0956e; }

.cookie-banner-customize {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}
.cookie-toggle-row { margin-bottom: 0.5rem; }
.cookie-toggle-row label { cursor: pointer; }
.cookie-toggle-row input[type="checkbox"] { margin-right: 0.5rem; accent-color: var(--accent-terracotta); }

@media (max-width: 576px) {
    .cookie-banner-inner { padding: 1rem; }
    .cookie-banner-actions { flex-direction: column; }
    .cookie-btn { width: 100%; text-align: center; }
}

/* ============================================
   Google Maps Consent Placeholder
   ============================================ */
.map-consent-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f0ebe5;
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    min-height: 300px;
    color: #666;
}
.map-consent-placeholder i { font-size: 3rem; color: #aaa; margin-bottom: 1rem; }
.map-consent-placeholder p { margin: 0.5rem 0; font-size: 0.95rem; max-width: 400px; }
.map-consent-placeholder .btn {
    margin-top: 1rem;
    background: var(--accent-terracotta);
    color: #fff;
    border: none;
}
.map-consent-placeholder .btn:hover { background: var(--dark-terracotta); }

/* Maps in map-section need iframe/placeholder to fill */
.map-section .map-consent-placeholder {
    width: 100%;
    min-height: 400px;
}