/* ===== CSS Variables ===== */
:root {
    --green-dark: #2d4a2e;
    --green-mid: #3d6b3f;
    --green-light: #5a8f5c;
    --green-pale: #e8f0e8;
    --green-accent: #4a7a4c;
    --cream: #faf8f5;
    --cream-dark: #f0ece4;
    --charcoal: #2c2c2c;
    --charcoal-light: #4a4a4a;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --white: #ffffff;
    --gold: #c4a96a;
    --gold-light: #d4be8a;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.3;
}

a {
    color: var(--green-dark);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--green-light);
}

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

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

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.navbar.scrolled {
    border-bottom-color: rgba(45, 74, 46, 0.1);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo img {
    height: 56px;
    width: 56px;
    object-fit: contain;
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}

.nav-menu a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--charcoal);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-menu a:hover {
    background: var(--green-pale);
    color: var(--green-dark);
}

.nav-cta {
    background: var(--green-dark) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    letter-spacing: 0.03em !important;
}

.nav-cta:hover {
    background: var(--green-mid) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(160deg, var(--green-dark) 0%, #1a3a1b 40%, var(--charcoal) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(90, 143, 92, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(196, 169, 106, 0.08) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='translate(50 50) rotate(-30) translate(-15 -15)' fill='none' stroke='%23ffffff' stroke-opacity='0.06' stroke-width='1.2'%3E%3Cellipse cx='6' cy='6' rx='5.5' ry='5.5'/%3E%3Cellipse cx='6' cy='24' rx='5.5' ry='5.5'/%3E%3Cline x1='10' y1='9' x2='28' y2='13'/%3E%3Cline x1='10' y1='21' x2='28' y2='17'/%3E%3Ccircle cx='6' cy='6' r='1.5' fill='%23ffffff' fill-opacity='0.06' stroke='none'/%3E%3Ccircle cx='6' cy='24' r='1.5' fill='%23ffffff' fill-opacity='0.06' stroke='none'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 24px;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    width: 220px;
    height: 220px;
    object-fit: contain;
    border-radius: 50%;
    margin-bottom: 32px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.15);
}

.hero-tagline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
}

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

.btn-primary:hover {
    background: var(--gold-light);
    color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(196, 169, 106, 0.35);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* ===== Section Styles ===== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-accent);
    margin-bottom: 12px;
}

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

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 8px;
}

.divider::before,
.divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.scissors {
    color: var(--green-dark);
    font-size: 1.2rem;
}

.section-note {
    max-width: 600px;
    margin: 16px auto 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== About Section ===== */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 112px;
}

.image-placeholder {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--green-pale), var(--cream-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--green-light);
    color: var(--text-muted);
    font-style: italic;
}

.owner-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--green-dark);
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--text-light);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--cream-dark);
}

.value {
    text-align: center;
}

.value-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--green-dark);
}

.value h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.value p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ===== Services Section ===== */
.services {
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    text-align: center;
    transition: all var(--transition);
    border: 1px solid rgba(45, 74, 46, 0.06);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(45, 74, 46, 0.12);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Pricing Section ===== */
.pricing {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.pricing-card {
    background: var(--cream);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(45, 74, 46, 0.06);
    transition: all var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border: 2px solid var(--green-dark);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
    background: var(--green-dark);
    color: var(--white);
    text-align: center;
    padding: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pricing-header {
    padding: 32px 28px 20px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.4rem;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.breed-examples {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.pricing-body {
    padding: 0 28px 32px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(45, 74, 46, 0.08);
    font-size: 0.95rem;
}

.price-row:last-child {
    border-bottom: none;
}

.price {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--green-dark);
    font-size: 1.1rem;
}

.pricing-extras {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid rgba(45, 74, 46, 0.06);
}

.pricing-extras h3 {
    text-align: center;
    font-size: 1.3rem;
    color: var(--green-dark);
    margin-bottom: 24px;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 48px;
}

.extra-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(45, 74, 46, 0.08);
    font-size: 0.95rem;
}

/* ===== Testimonials Section ===== */
.testimonials {
    background: linear-gradient(160deg, var(--green-dark) 0%, #1a3a1b 100%);
    color: var(--white);
}

.testimonials .section-label {
    color: var(--gold);
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials .scissors {
    color: var(--gold);
}

.testimonials .divider::before,
.testimonials .divider::after {
    background: rgba(196, 169, 106, 0.4);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 36px;
    transition: all var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

blockquote p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

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

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== Location Section ===== */
.location {
    background: var(--cream);
}

.location-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-placeholder {
    background: var(--cream-dark);
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid rgba(45, 74, 46, 0.08);
}

.map-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.map-inner span {
    font-size: 3rem;
    margin-bottom: 12px;
}

.map-inner p {
    font-size: 1rem;
    font-weight: 600;
}

.map-note {
    font-size: 0.8rem !important;
    font-weight: 400 !important;
    font-style: italic;
    margin-top: 4px;
}

.location-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    border: 1px solid rgba(45, 74, 46, 0.06);
}

.location-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--cream-dark);
}

.location-item:first-child {
    padding-top: 0;
}

.location-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.location-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.location-item h4 {
    font-size: 1rem;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.location-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Contact Section ===== */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--cream-dark);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.contact-item h4 {
    font-size: 1rem;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.contact-item a {
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-item a:hover {
    color: var(--green-dark);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-dark);
    padding: 6px 14px;
    background: var(--green-pale);
    border-radius: 50px;
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--green-dark);
    color: var(--white);
}

/* ===== Enquiry Form ===== */
.enquiry-form {
    background: var(--cream);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid rgba(45, 74, 46, 0.06);
}

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

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    border: 1px solid rgba(45, 74, 46, 0.15);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-mid);
    box-shadow: 0 0 0 3px rgba(61, 107, 63, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

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

/* ===== Footer ===== */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin-bottom: 12px;
    opacity: 0.9;
}

.footer-logo p {
    font-size: 0.9rem;
}

.footer-logo .est {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.85rem;
    color: var(--gold);
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-8px);
    }
    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible,
.no-js .fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .location-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid rgba(45, 74, 46, 0.1);
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 12px 16px;
        width: 100%;
        text-align: center;
    }

    .nav-cta {
        margin-top: 8px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-logo {
        width: 170px;
        height: 170px;
    }

    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 0.15em;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 72px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .about-values {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
        order: -1;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .extras-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .enquiry-form {
        padding: 28px;
    }

    .pricing-extras {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-logo {
        width: 140px;
        height: 140px;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .btn {
        padding: 14px 32px;
        font-size: 0.85rem;
    }
}
