/* ----------------------------------------
   SJ Goat Farm - Premium Landing Page
---------------------------------------- */
:root {
    --primary-green: #1B5E20;
    --gold: #C9A227;
    --white: #FFFFFF;
    --light-green: #F5FBF5;
    --text-dark: #183022;
    --text-muted: #5d6e60;
    --border: rgba(27, 94, 32, 0.12);
    --shadow: 0 20px 40px rgba(7, 43, 19, 0.08);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--white);
}

h1, h2, h3, h4, .navbar-brand, .brand-text {
    font-family: 'Poppins', sans-serif;
}

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

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

.btn {
    border-radius: 999px;
    padding: 0.85rem 1.5rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(27, 94, 32, 0.14);
}

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

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

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

.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(27, 94, 32, 0.08);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.1rem;
}

.brand-logo {
    width: 220px;
    height: 120px;
}

.brand-logo-footer {
    width: 54px;
    height: 54px;
    background: rgba(255,255,255,0.12);
}

.brand-text {
    font-size: 1.05rem;
    color: var(--primary-green);
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding-inline: 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-green);
}

.hero-section {
    padding: 5.5rem 0 4rem;
    background: linear-gradient(135deg, var(--light-green), var(--white));
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero-section h1 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-section h1 span {
    color: var(--primary-green);
}

.hero-copy {
    font-size: 1.03rem;
    color: var(--text-muted);
    max-width: 580px;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text-dark);
    box-shadow: var(--shadow);
    font-size: 0.92rem;
}

.hero-visual {
    position: relative;
    padding: 2rem;
    background: linear-gradient(145deg, #fdfefc, #eef8ee);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-visual img {
    border-radius: 1.2rem;
    object-fit: cover;
    width: 100%;
    min-height: 360px;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.9;
}

.shape-one {
    width: 140px;
    height: 140px;
    background: rgba(201, 162, 39, 0.22);
    top: -40px;
    right: -30px;
}

.shape-two {
    width: 180px;
    height: 180px;
    background: rgba(27, 94, 32, 0.12);
    bottom: -70px;
    left: -55px;
}

.floating-badge {
    position: absolute;
    bottom: 1.4rem;
    left: 1.4rem;
    background: var(--white);
    color: var(--primary-green);
    padding: 0.8rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(27, 94, 32, 0.16);
}

.stats-section {
    margin-top: -1.2rem;
    padding-bottom: 3rem;
}

.stat-card {
    border-radius: var(--radius-md);
    background: var(--white);
    padding: 1.55rem 1.2rem;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid rgba(27, 94, 32, 0.08);
}

.stat-card h3 {
    color: var(--primary-green);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.stat-card p {
    margin: 0;
    color: var(--text-muted);
    font-weight: 600;
}

.about-section,
.services-section,
.why-section,
.gallery-section,
.testimonial-section {
    padding: 5rem 0;
}

.about-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.about-section h2,
.section-heading h2,
.cta-banner h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-section p,
.section-heading p,
.service-card p,
.feature-card p,
.testimonial-review,
.site-footer p,
.site-footer li {
    color: var(--text-muted);
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.6rem;
}

.service-card,
.feature-card,
.gallery-card,
.testimonial-card,
.cta-banner {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow);
}

.service-card,
.feature-card {
    padding: 1.6rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.feature-card:hover,
.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(7, 43, 19, 0.12);
}

.service-icon,
.feature-icon {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.12), rgba(201, 162, 39, 0.16));
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card h3,
.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    font-weight: 700;
}

.why-section {
    background: var(--light-green);
}

.gallery-card {
    overflow: hidden;
}

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

.gallery-card:hover img {
    transform: scale(1.08);
}

.testimonial-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.testimonial-card img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(27, 94, 32, 0.12);
}

.testimonial-content h3 {
    font-size: 1.14rem;
    margin-bottom: 0.25rem;
}

.testimonial-location {
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.stars {
    color: var(--gold);
    margin-bottom: 0.6rem;
}

.testimonial-review {
    font-size: 1rem;
    max-width: 660px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--primary-green);
    opacity: 1;
}

.cta-section {
    padding: 0 0 4rem;
}
.contact-hero {
    padding: 5.5rem 0 3.5rem;
    background: linear-gradient(135deg, var(--light-green), #f9fff9);
}

.contact-hero h1 {
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-hero-card,
.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-hero-card {
    padding: 2rem;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(27, 94, 32, 0.08);
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-hero-list li,
.contact-info-item p,
.contact-info-item a {
    color: var(--text-muted);
}

.contact-hero-list li {
    margin-bottom: 0.9rem;
}

.contact-hero-list i,
.contact-icon {
    color: var(--primary-green);
}

.contact-page-section {
    padding: 2rem 0 5rem;
}

.contact-card {
    padding: 2rem;
}

.contact-card h2 {
    margin-bottom: 1.4rem;
    font-size: 1.65rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 94, 32, 0.08);
    flex-shrink: 0;
}

.contact-card h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.contact-form .form-control {
    border-radius: 14px;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(27, 94, 32, 0.18);
}

.contact-form .form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(27, 94, 32, 0.15);
}
.cta-banner {
    padding: 2rem 2rem;
    background: linear-gradient(135deg, var(--primary-green), #2b7a2b);
    color: var(--white);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cta-banner .eyebrow {
    color: #f1d776;
}

.site-footer {
    padding: 3rem 0 2rem;
    background: #0f2412;
    color: var(--white);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 700;
}

.site-footer h4 {
    font-size: 1rem;
    margin-bottom: 0.9rem;
    color: #f4f6ef;
}

.footer-links li {
    margin-bottom: 0.65rem;
    color: rgba(255,255,255,0.75);
}

.footer-links a {
    color: inherit;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 0.9rem;
    margin-top: 1rem;
}

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

.social-links a:hover {
    transform: translateY(-2px);
    background: rgba(201, 162, 39, 0.25);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.74);
}

@media (min-width: 768px) {
    .hero-section {
        padding-top: 6.5rem;
    }

    .testimonial-card {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }

    .testimonial-content {
        flex: 1;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        padding-top: 1rem;
    }

    .nav-item {
        margin-bottom: 0.5rem;
    }
}
