/* General Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #333; line-height: 1.6; background-color: #fcfbf9; }

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; letter-spacing: 1px; }
.logo span { color: #8d775f; }
.nav-links { display: flex; list-style: none; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: #555; font-weight: 500; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: #8d775f; }
.btn-navbar { background: #8d775f; color: #fff !important; padding: 10px 20px; border-radius: 4px; }

/* Hamburger Icon */
.menu-toggle { display: none; flex-direction: column; cursor: pointer; gap: 6px; }
.bar { width: 28px; height: 3px; background-color: #333; transition: 0.3s; border-radius: 2px; }

/* Hero Section */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('hero.jpg'); /* Ensure this image exists */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.hero-content { max-width: 800px; padding: 20px; }
.subtitle { text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; margin-bottom: 10px; display: block; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; margin-bottom: 20px; line-height: 1.2; }
.hero p { font-size: 1.1rem; margin-bottom: 30px; opacity: 0.9; }

/* Buttons */
.btn-primary { background: #8d775f; color: #fff; padding: 15px 35px; text-decoration: none; border-radius: 4px; font-weight: 600; transition: 0.3s; display: inline-block; }
.btn-secondary { background: transparent; color: #fff; padding: 15px 35px; text-decoration: none; border: 2px solid #fff; border-radius: 4px; margin-left: 10px; font-weight: 600; display: inline-block; }

/* Puppy Grid */
.featured-section { padding: 80px 8%; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 10px; }
.puppy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .menu-toggle { display: flex; z-index: 1001; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
        box-shadow: -10px 0 20px rgba(0,0,0,0.05);
    }
    .nav-links.active { right: 0; }
    .hero h1 { font-size: 2.2rem; }
    .btn-secondary { margin-left: 0; margin-top: 15px; }
    
    /* Hamburger Animation */
    #mobile-menu.is-active .bar:nth-child(2) { opacity: 0; }
    #mobile-menu.is-active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    #mobile-menu.is-active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}

/* Puppy Cards */
.puppy-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.puppy-card:hover { transform: translateY(-5px); }

.card-img-container { position: relative; height: 250px; }
.card-img-container img { width: 100%; height: 100%; object-fit: cover; }

/* Status Badges */
.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}
.badge.available { background: #e8f5e9; color: #2e7d32; }
.badge.reserved { background: #fff3e0; color: #ef6c00; }

.card-info { padding: 20px; }
.card-info h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 5px; }
.parentage { font-size: 0.85rem; color: #888; margin-bottom: 15px; }

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-weight: 600;
}
.price { color: #8d775f; }

.btn-card {
    display: block;
    text-align: center;
    padding: 10px;
    border: 1px solid #8d775f;
    color: #8d775f;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}
.btn-card:hover { background: #8d775f; color: #fff; }

/* Detail Page Layout */
.detail-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    padding: 40px 8%;
    max-width: 1400px;
    margin: 0 auto;
}

#main-display img, #main-display video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.thumbnails {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.thumbnails img, .video-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}

.video-thumb {
    background: #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: bold;
}

.thumbnails img:hover { border-color: #8d775f; }

/* Sidebar Info */
.info-sidebar { padding: 20px; background: #fff; border-radius: 12px; height: fit-content; }
.price-tag { font-size: 2rem; color: #8d775f; font-weight: 700; margin: 20px 0; }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 30px; }
.description-box h3 { margin-bottom: 10px; font-family: 'Playfair Display', serif; }
.full-width { display: block; text-align: center; width: 100%; }

.fade-in { animation: fadeIn 0.5s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Responsive Detail */
@media screen and (max-width: 900px) {
    .detail-container { grid-template-columns: 1fr; }
    #main-display img, #main-display video { height: 350px; }
}
/* Trust Standards */
.trust-standards { padding: 80px 8%; background: #ffffff; text-align: center; }
.trust-standards .container { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.standard-item { flex: 1; min-width: 250px; max-width: 350px; }
.standard-item .icon { font-size: 3rem; margin-bottom: 15px; }
.standard-item h3 { font-family: 'Playfair Display', serif; margin-bottom: 10px; color: #8d775f; }
.standard-item p { color: #666; font-size: 0.95rem; }

/* Process Section */
.process-section { padding: 80px 8%; background: #fcfbf9; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-top: 50px; }
.step { position: relative; padding: 30px; background: #fff; border-radius: 8px; border-bottom: 4px solid #8d775f; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.step-num { font-size: 2.5rem; font-weight: 700; color: #eee; position: absolute; top: 10px; right: 20px; font-family: 'Playfair Display', serif; }
.step h4 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 10px; position: relative; z-index: 1; }
.step p { font-size: 0.9rem; color: #555; position: relative; z-index: 1; }

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .trust-standards .container { flex-direction: column; align-items: center; }
}
/* Trust Badge Bar Styling */
.badge-bar {
    background: #fdfdfd;
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.badge-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    filter: grayscale(100%); /* Keeps it subtle and professional */
    transition: 0.3s;
}

.trust-badge:hover .badge-icon {
    filter: grayscale(0%);
}

.trust-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

/* Main Footer Styling */
.main-footer {
    background: #1a1a1a; /* Professional dark background */
    color: #fff;
    padding: 80px 8% 20px;
}

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

.white-logo { color: #fff; margin-bottom: 20px; }

.footer-brand p {
    color: #aaa;
    max-width: 300px;
    font-size: 0.95rem;
}

.footer-nav h4, .footer-contact h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #8d775f; /* Gold accent color */
}

.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 12px; }
.footer-nav a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}
.footer-nav a:hover { color: #fff; padding-left: 5px; }

.footer-contact p {
    color: #aaa;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-contact strong { color: #fff; }

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}

/* Mobile Adjustments */
@media screen and (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .badge-container { grid-template-columns: 1fr 1fr; display: grid; }
}
/* About Section */
.about-section {
    padding: 100px 8%;
    background-color: #fff;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Image Column with Experience Badge */
.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 20px 20px 0px #f4f1ee; /* Stylish offset background */
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #8d775f;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.experience-badge .years { font-size: 2.5rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.experience-badge .text { font-size: 0.8rem; text-transform: uppercase; line-height: 1.2; letter-spacing: 1px; }

/* Content Column */
.about-content { flex: 1; }

.section-subtitle {
    color: #8d775f;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.about-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Feature List */
.about-features { margin: 30px 0; }
.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-item .check {
    background: #f4f1ee;
    color: #8d775f;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item strong { display: block; color: #333; margin-bottom: 3px; }
.feature-item p { font-size: 0.9rem; margin-bottom: 0; }

/* Mobile Responsive */
@media screen and (max-width: 992px) {
    .about-container { flex-direction: column; text-align: center; gap: 50px; }
    .about-image { max-width: 500px; margin: 0 auto; }
    .feature-item { text-align: left; }
}
/* Testimonials Section */
.testimonials-section {
    padding: 100px 8%;
    background-color: #fdfbf9;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(141, 119, 95, 0.05);
    transition: 0.3s;
    border: 1px solid #f1eeeb;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(141, 119, 95, 0.1);
}

.stars {
    color: #8d775f;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.quote {
    font-style: italic;
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f1eeeb;
    padding-top: 20px;
}

.user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #8d775f;
}

.user-info h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 2px;
}

.user-info span {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
    .testimonial-card { padding: 30px; }
}
/* FAQ Section */
.faq-section {
    padding: 100px 8%;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    padding: 25px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    font-family: 'Inter', sans-serif;
    text-align: left;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #8d775f;
}

.faq-question .icon {
    font-size: 1.5rem;
    color: #8d775f;
    transition: transform 0.3s;
}

/* The Secret Sauce: Expandable Logic */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-answer p {
    padding: 0 0 25px 0;
    color: #666;
    line-height: 1.8;
}

/* Active Class for JS */
.faq-item.active .faq-answer {
    max-height: 500px; /* Large enough to fit any text */
}

.faq-item.active .icon {
    transform: rotate(45deg);
}
/* Form Page Specifics */
.bg-light { background-color: #fcfbf9; }

.form-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.form-header { text-align: center; margin-bottom: 50px; }
.form-header h1 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 10px; }
.form-header p { color: #666; max-width: 600px; margin: 0 auto; }

.styled-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.form-section { margin-bottom: 40px; }
.form-section h3 {
    font-family: 'Playfair Display', serif;
    color: #8d775f;
    border-bottom: 1px solid #f1eeeb;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.input-group { flex: 1; margin-bottom: 20px; }

label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; color: #444; }

input[type="text"], 
input[type="email"], 
input[type="tel"], 
select, 
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    transition: 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #8d775f;
    box-shadow: 0 0 0 3px rgba(141, 119, 95, 0.1);
}

.radio-group { display: flex; gap: 20px; padding-top: 5px; }
.radio-group label { font-weight: 400; cursor: pointer; }

@media (max-width: 600px) {
    .form-row { flex-direction: column; gap: 0; }
    .styled-form { padding: 25px; }
}
#signature-pad {
    border: 2px dashed #ccc;
    background: #f9f9f9;
    width: 100%;
    cursor: crosshair;
    border-radius: 8px;
    margin-top: 10px;
}

.form-note { font-size: 0.85rem; color: #777; margin-bottom: 10px; }

.support-alert {
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    font-size: 0.9rem;
    margin-top: 15px;
}

.btn-link {
    background: none;
    border: none;
    color: #d9534f;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.8rem;
    margin-top: 10px;
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
/* Fix for the Action Buttons in Sidebar */
.action-buttons {
    display: flex;
    flex-direction: column; /* Stack them for better mobile/sidebar fit */
    gap: 12px;
    margin-top: 30px;
    clear: both; /* Ensure it doesn't get caught behind floats */
}

/* Ensure buttons are visible and styled */
.btn-primary, .btn-secondary {
    display: block;
    text-align: center;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1rem;
}

.btn-primary {
    background-color: #8d775f;
    color: #ffffff !important; /* Force white text */
    border: none;
}

.btn-secondary {
    background-color: transparent;
    color: #8d775f !important;
    border: 2px solid #8d775f;
}

.btn-primary:hover {
    background-color: #725f4a;
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background-color: #fdfbf9;
}
#signature-pad {
    border: 2px dashed #ccc;
    background: #f9f9f9;
    width: 100%;
    cursor: crosshair;
    border-radius: 8px;
    margin-top: 10px;
}

.form-note { font-size: 0.85rem; color: #777; margin-bottom: 10px; }

.support-alert {
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    font-size: 0.9rem;
    margin-top: 15px;
}

.btn-link {
    background: none;
    border: none;
    color: #d9534f;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.8rem;
    margin-top: 10px;
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
/* --- RESERVATION FORM STYLING --- */

/* 1. Header & Financial Summary */
.reserve-header {
    text-align: center;
    margin-bottom: 40px;
}

.reserve-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.reserve-header strong {
    color: #8d775f;
    font-size: 1.1rem;
}

/* 2. Financial Highlight Inputs */
/* Makes the read-only math fields look like an invoice */
#res-puppy-name, #res-total-price, #res-balance {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    font-weight: 600;
    color: #333;
}

#res-balance {
    color: #d9534f; /* Alert red for remaining balance */
    background-color: #fff5f5;
    border: 1px solid #f8d7da;
    font-size: 1.1rem;
}

/* 3. File Upload Styling */
input[type="file"] {
    background: #fdfbf9;
    padding: 20px;
    border: 2px dashed #d0c9c0;
    width: 100%;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
}

input[type="file"]:hover {
    border-color: #8d775f;
    background: #f4f1ee;
}

/* 4. Signature Pad Area */
.signature-wrapper {
    margin-top: 15px;
    position: relative;
}

#signature-pad {
    background-color: #ffffff;
    border: 2px solid #e0dcd5;
    border-radius: 8px;
    width: 100%;
    height: 180px;
    cursor: url('https://img.icons8.com/ios-filled/20/000000/pen.png'), crosshair;
    display: block;
    touch-action: none; /* Critical for mobile signing */
}

#clear-sig {
    background: none;
    border: none;
    color: #8d775f;
    text-decoration: underline;
    font-size: 0.8rem;
    cursor: pointer;
    margin-top: 8px;
    display: inline-block;
}

/* 5. Warning & Support Boxes */
.form-note {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 12px;
    line-height: 1.4;
}

.support-alert {
    background: #fff8e1;
    border-left: 5px solid #ffc107;
    padding: 15px 20px;
    font-size: 0.9rem;
    color: #856404;
    margin-top: 20px;
    border-radius: 4px;
}

.support-alert strong {
    text-decoration: underline;
}

/* 6. Live Support Button (WhatsApp Style) */
.live-support-box {
    margin-top: 50px;
    padding: 30px;
    background: #f0f7f4;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #d4e8df;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white !important;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* 7. Signature Pad for Mobile */
@media screen and (max-width: 600px) {
    #signature-pad {
        height: 120px;
    }
}
/* --- COMPLETE RESERVATION PAGE STYLING --- */

/* Container & Layout */
.reserve-wrapper {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.reserve-container {
    background: #ffffff;
    padding: 50px;
    border-radius: 4px; /* Slightly sharper for a 'document' look */
    box-shadow: 0 0 40px rgba(0,0,0,0.05);
    border: 1px solid #e0dcd5;
}

.reserve-header {
    text-align: center;
    border-bottom: 2px solid #f4f1ee;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.reserve-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.reserve-header p {
    color: #8d775f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Financial Breakdown Grid */
.financial-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: #fdfbf9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.financial-summary .input-group {
    margin-bottom: 0;
}

.financial-summary input {
    background: #f1eeeb;
    border: 1px solid #d0c9c0;
    font-weight: 700;
    font-size: 1.1rem;
    color: #444;
}

.balance-due-box {
    grid-column: 1 / -1;
    border-top: 1px dashed #d0c9c0;
    padding-top: 20px;
    margin-top: 10px;
}

.balance-due-box input {
    background: #fff5f5 !important;
    border: 1px solid #feb2b2 !important;
    color: #c53030 !important;
    font-size: 1.4rem !important;
}

/* File Upload / Proof of Payment */
.upload-zone {
    border: 2px dashed #d0c9c0;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    background: #fafafa;
    transition: 0.3s;
}

.upload-zone:hover {
    border-color: #8d775f;
    background: #fdfbf9;
}

.upload-zone input[type="file"] {
    cursor: pointer;
}

/* Signature Pad Styling */
.signature-box {
    margin-top: 10px;
}

#signature-pad {
    background-color: #fff;
    border: 1px solid #d0c9c0;
    width: 100%;
    height: 180px;
    touch-action: none; /* Required for mobile signature */
    cursor: crosshair;
    border-radius: 4px;
}

.sig-tools {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.clear-btn {
    background: none;
    border: none;
    color: #c53030;
    text-decoration: underline;
    font-size: 0.85rem;
    cursor: pointer;
}

/* Live Support Alert */
.live-support-alert {
    background: #fffaf0;
    border-left: 4px solid #ed8936;
    padding: 20px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-link-btn {
    display: inline-block;
    background: #25d366;
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Terms Checkbox */
.terms-check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #555;
}

.terms-check input {
    margin-top: 4px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .reserve-container { padding: 30px 20px; }
    .financial-summary { grid-template-columns: 1fr; }
    .reserve-header h1 { font-size: 1.8rem; }
}
/* --- RESERVATION PAGE SPECIFIC STYLES --- */

/* Hero Adjustment */
.reservation-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero-puppies.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
}

/* Form Container Style */
.reservation-box {
    max-width: 900px;
    margin: -80px auto 60px; /* Overlaps slightly with hero */
    background: #fff;
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #f4f1ee;
    padding-bottom: 20px;
}

.form-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #1a1a1a;
    letter-spacing: 1px;
}

/* Financial & Consent Box */
.consent-box {
    background: #fdfbf9;
    border: 1px solid #e0dcd5;
    padding: 30px;
    margin: 30px 0;
    border-radius: 8px;
}

.consent-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    border-bottom: 1px dashed #d0c9c0;
    padding-bottom: 20px;
}

.consent-box strong {
    color: #8d775f; /* Gold/Bronze accent */
    font-weight: 700;
    text-decoration: underline;
}

/* Signature Pad Styles */
.signature-wrapper {
    margin-top: 15px;
    text-align: center;
}

#signature-pad {
    background: #fff;
    border: 2px solid #d0c9c0;
    border-radius: 4px;
    cursor: crosshair;
    width: 100%; /* Responsive to container */
    max-width: 400px;
    height: 150px;
    display: block;
    margin: 10px auto;
    touch-action: none; /* Critical for mobile signing */
}

#clear-signature {
    background: none;
    border: none;
    color: #c53030;
    text-decoration: underline;
    font-size: 0.85rem;
    cursor: pointer;
    margin-top: 5px;
}

/* Buttons and Notice */
.button-group {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.cta-secondary {
    flex: 1;
    background: #333;
    color: #fff;
    padding: 15px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-secondary:hover {
    background: #555;
}

.cta-button {
    flex: 1;
    background: #8d775f; /* Match your gold/bronze logo color */
    color: #fff;
    padding: 15px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notice-text {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 15px;
    font-style: italic;
}

/* Highlighted Inputs */
#amt-paid, #amt-left {
    background: #fdfbf9;
    border-color: #8d775f;
    font-weight: 700;
    color: #1a1a1a;
}

/* Responsive Mobile Adjustments */
@media (max-width: 768px) {
    .reservation-box {
        margin: -40px 15px 40px;
        padding: 30px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .button-group {
        flex-direction: column;
    }

    #signature-pad {
        max-width: 100%;
    }
}
/* Puppy Display Image */
.puppy-reservation-display {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
}

.puppy-reservation-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; /* Circular portrait style */
    border: 5px solid #f4f1ee;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.res-puppy-badge {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #8d775f;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
}

/* Bottom Summary Note */
.reservation-summary-note {
    background: #fdfbf9;
    border-left: 4px solid #8d775f;
    padding: 20px;
    margin-top: 30px;
    font-size: 0.95rem;
}

.reservation-summary-note p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.reservation-summary-note span {
    color: #1a1a1a;
    font-weight: 700;
    border-bottom: 1px solid #d0c9c0;
}
.reservation-summary-note {
    border: 1px solid #e0dcd5;
    background: #fdfbf9;
    padding: 20px;
    margin: 40px 0 20px;
    position: relative;
}

.reservation-summary-note::before {
    content: "OFFICIAL AGREEMENT";
    position: absolute;
    top: -10px;
    left: 20px;
    background: #8d775f;
    color: white;
    padding: 2px 10px;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 3px;
}
.reservation-box {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background: #fff;
    border: 1px solid #e0dcd5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.puppy-display {
    text-align: center;
    margin-bottom: 30px;
}

#res-puppy-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #8d775f;
    margin-bottom: 10px;
}

#signature-pad {
    background: #fafafa;
    border: 2px dashed #d0c9c0;
    width: 100%;
    cursor: crosshair;
    touch-action: none;
}

.consent-box {
    background: #fdfbf9;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #8d775f;
}

.button-group {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.cta-button { background: #8d775f; color: white; border: none; padding: 15px 30px; cursor: pointer; flex: 1; font-weight: bold; }
.cta-secondary { background: #333; color: white; border: none; padding: 15px 30px; cursor: pointer; flex: 1; font-weight: bold; }

/* Reservation Card & Layout */
.form-container {
    max-width: 850px;
    margin: 50px auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

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

/* Puppy Portrait */
.puppy-reservation-display {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

#res-puppy-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #f9f7f5;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.res-puppy-badge {
    background: #8d775f;
    color: white;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: -20px;
    position: relative;
}

/* Legal Box */
.reservation-summary-note {
    background: #fdfbf9;
    border-left: 5px solid #8d775f;
    padding: 25px;
    margin: 30px 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Canvas & Buttons */
#signature-pad {
    background: #fafafa;
    border: 2px dashed #dcd7d0;
    width: 100%;
    cursor: crosshair;
    touch-action: none;
    border-radius: 4px;
}

.sig-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.btn-outline {
    border: 2px solid #8d775f;
    color: #8d775f;
    background: transparent;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary.full-width {
    width: 100%;
    background: #8d775f;
    color: white;
    padding: 20px;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 30px;
    cursor: pointer;
}
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.puppy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.puppy-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.puppy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.card-img-holder {
    height: 380px;
    position: relative;
    overflow: hidden;
}

.card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.puppy-card:hover .card-img-holder img {
    transform: scale(1.05);
}

.status-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.status-badge.available { background: #c5a47e; } /* Elegant Gold */
.status-badge.reserved { background: #333; }

.card-details {
    padding: 25px;
    text-align: center;
}

.card-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.card-details p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.btn-detail {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #c5a47e;
    color: #c5a47e;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-detail:hover {
    background: #c5a47e;
    color: white;
}
/* Hero Section with Background */
.gallery-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('b1.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

/* Controls Container */
.controls-container {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    gap: 20px;
}

.search-box {
    flex: 1;
    min-width: 300px;
}

.search-box input {
    width: 100%;
    padding: 15px 25px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.search-box input:focus {
    border-color: #c5a47e;
}

.filter-controls {
    display: flex;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    border: 1px solid #eee;
    background: #f9f9f9;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: #c5a47e;
    color: white;
    border-color: #c5a47e;
}

/* Gallery Grid */
.puppy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.puppy-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.puppy-card:hover {
    transform: translateY(-8px);
}

.card-img-holder {
    height: 380px;
    position: relative;
}

.card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.status-badge.available { background: #c5a47e; }
.status-badge.reserved { background: #333; }

.card-details {
    padding: 25px;
    text-align: center;
}

.btn-detail {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #c5a47e;
    color: #c5a47e;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-detail:hover {
    background: #c5a47e;
    color: white;
}
/* Hero Section with Background */
.gallery-hero {
    height: 60vh;
    background: url('b1.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

/* Controls Container */
.controls-container {
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    gap: 20px;
}

.search-box {
    flex: 1;
    min-width: 300px;
}

.search-box input {
    width: 100%;
    padding: 15px 25px;
    border: 1px solid #ddd;
    border-radius: 30px;
    outline: none;
}

.filter-controls {
    display: flex;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    border: 1px solid #eee;
    background: #f9f9f9;
    cursor: pointer;
    font-weight: 600;
}

.filter-btn.active {
    background: #c5a47e;
    color: white;
}

/* Puppy Card & Clickable Image */
.puppy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 0 20px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.puppy-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.puppy-card:hover {
    transform: translateY(-8px);
}

.card-img-holder {
    height: 380px;
    display: block; /* Makes the anchor tag cover the area */
    overflow: hidden;
    position: relative;
}

.card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-img-holder:hover img {
    transform: scale(1.1);
}

.status-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 16px;
    border-radius: 30px;
    color: white;
    z-index: 2;
}

.status-badge.available { background: #c5a47e; }
.status-badge.reserved { background: #333; }

.card-details {
    padding: 25px;
    text-align: center;
}

/* Styling for the new Upload Section */
input[type="file"] {
    padding: 10px;
    background: var(--cream-bg);
    border: 1px dashed var(--accent-gold);
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
}

input[type="file"]::file-selector-button {
    background-color: var(--primary-sage);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    margin-right: 15px;
    transition: 0.3s;
}

input[type="file"]::file-selector-button:hover {
    background-color: #55721c;
}
/* Container to align logo image and text together */
.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.main-logo {
    height: 100px; /* Adjust based on your logo height */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-container:hover .main-logo {
    transform: scale(1.05);
}

/* Ensure the text logo still looks good next to the image */
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-bark);
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--primary-sage);
}

/* Adjust for the White Logo in Footer */
.white-logo .logo-text {
    color: var(--white);
}

@media (max-width: 768px) {
    .main-logo {
        height: 80px; /* Smaller logo for mobile */
    }
}