:root {
    /* Color Palette */
    --primary: #c28b4d; /* Warm Golden Brown */
    --primary-dark: #a17036;
    --secondary: #1a1a1a; /* Almost Black */
    --background: #fdfbf7; /* Off-white warm */
    --surface: #ffffff;
    --text-main: #2c2c2c;
    --text-muted: #666666;
    --border: #eaeaea;
    
    /* Typography */
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    /* Spacing & Sizes */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

/* Typography Utilities */
h1, h2, h3, h4 {
    color: var(--secondary);
    line-height: 1.2;
}

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

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(194, 139, 77, 0.2);
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

.w-100 {
    width: 100%;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    position: relative;
    padding: 240px 24px 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 80vh;
    margin: 0;
    max-width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: white;
}

.hero-title span {
    font-family: var(--font-serif);
    font-style: italic;
    color: #ffd18c;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 600px;
}

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

.hero-features {
    display: flex;
    gap: 24px;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 1rem;
    color: white;
}

/* Breeds Section */
.breeds-section {
    padding: 100px 0;
    background-color: var(--surface);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-inline: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-family: var(--font-serif);
}

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

.breeds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.breed-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.breed-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.breed-image-container {
    position: relative;
    height: 240px;
}

.breed-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-guard {
    background-color: #d9534f;
}

.badge-apartment {
    background-color: #5cb85c;
}

.breed-info {
    padding: 24px;
}

.breed-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.breed-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.price-box {
    background-color: var(--background);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 24px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.price-item:last-child {
    margin-bottom: 0;
}

.price-item .gender {
    font-weight: 500;
    color: var(--text-muted);
}

.price-item .price {
    font-weight: 700;
    color: var(--secondary);
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
    background-color: #f7f3ec;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content h2 {
    font-size: 2.5rem;
    font-family: var(--font-serif);
    margin-bottom: 16px;
}

.why-content > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.benefit-icon {
    font-size: 2rem;
    background-color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.benefit-list h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.benefit-list p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background-color: var(--secondary);
    color: white;
    padding: 80px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
}

.footer-brand h2 {
    color: white;
    font-family: var(--font-serif);
    margin-bottom: 16px;
}

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

.footer-contact h3 {
    color: white;
    margin-bottom: 24px;
}

.footer-contact p {
    color: #a0a0a0;
    margin-bottom: 12px;
}

.footer-contact a {
    color: var(--primary);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* Hamburger defaults */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        transition: right 0.4s ease-in-out;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 40px 24px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        font-size: 1.25rem;
        display: block;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ====== NEW STYLES: WhatsApp Button & Forms ====== */

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

/* Social Links in Footer */
.social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Page Headers (for detail & contact pages) */
.page-header {
    padding: 160px 24px 80px;
    background-color: #f7f3ec;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-family: var(--font-serif);
    margin-bottom: 16px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Form */
.contact-section {
    padding: 80px 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    overflow: hidden;
}

.contact-info-panel {
    background: var(--secondary);
    color: white;
    padding: 60px 40px;
}

.contact-info-panel h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 24px;
}

.contact-info-panel p {
    color: #ccc;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.info-item .icon {
    font-size: 1.5rem;
}

.info-item h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.info-item p {
    margin-bottom: 0;
}

.contact-form-panel {
    padding: 60px 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(194, 139, 77, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Detail Page specific */
.detail-content {
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.detail-info h2 {
    font-size: 2.5rem;
    font-family: var(--font-serif);
    margin-bottom: 24px;
}

.detail-info p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.trait-list {
    list-style: none;
    margin-bottom: 32px;
}

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

.price-card {
    background: #f7f3ec;
    padding: 32px;
    border-radius: var(--radius-md);
    margin-bottom: 32px;
}

.price-card h3 {
    margin-bottom: 16px;
}

.price-card .price-item {
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

@media (max-width: 992px) {
    .contact-grid, .detail-content {
        grid-template-columns: 1fr;
    }
}

/* ====== NEW SECTIONS: Stats & Gallery ====== */

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background-color: var(--primary);
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item h3 {
    font-size: 4rem;
    color: white;
    font-family: var(--font-serif);
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: var(--surface);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Updated Buttons for breed cards */
.cta-buttons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-direction: column;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    border: none;
}
.btn-whatsapp:hover {
    background-color: #1ebc5a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}
.btn-call {
    background-color: var(--secondary);
    color: white;
}
.btn-call:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* SEO Feature Section */
.feature-seo-section {
    padding: 100px 0;
    background-color: #fcf9f2;
}

.seo-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-inline: auto;
}

.seo-header h2 {
    font-size: 3rem;
    font-family: var(--font-serif);
    margin-bottom: 16px;
}

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

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.seo-cards-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.seo-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.seo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.seo-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.seo-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .seo-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .seo-cards-panel {
        grid-template-columns: 1fr;
    }
}

/* Extra Mobile Optimizations */
@media (max-width: 768px) {
    .hero {
        padding: 120px 24px 60px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .stats-section {
        padding: 40px 0;
    }
    .stat-item h3 {
        font-size: 3rem;
    }
    .seo-header h2, .section-header h2 {
        font-size: 2rem;
    }
    .feature-seo-section, .breeds-section, .gallery-section {
        padding: 60px 0;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }
    .footer-grid {
        gap: 30px;
    }
}
