/* 
   Adakcı Bekir - Bursa Adaklık Kurbanlık & Ücretsiz Kesim Hizmeti
   Custom Premium Stylesheet (Pure Vanilla CSS)
   Target Domain: adakcibekir.com.tr
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- Design System / Variables --- */
:root {
    --primary-color: #0D3E2F;        /* Forest Green */
    --primary-light: #165643;        /* Slightly Lighter Green */
    --primary-dark: #07251C;         /* Dark Forest Green */
    --accent-color: #D1A153;         /* Warm Gold/Orange Accent */
    --accent-light: #E8C17F;         /* Light Gold */
    --text-primary: #1F2E2A;         /* Dark Slate for Main Text */
    --text-secondary: #5A6A64;       /* Slate Gray for Subtext */
    --bg-light: #F7FAF9;             /* Soft off-white with hint of green */
    --bg-white: #FFFFFF;
    --border-color: #E2EAE7;
    --shadow-sm: 0 2px 8px rgba(13, 62, 47, 0.05);
    --shadow-md: 0 8px 24px rgba(13, 62, 47, 0.08);
    --shadow-lg: 0 16px 36px rgba(13, 62, 47, 0.12);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
}

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

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

ul {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    outline: none;
    border: none;
}

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-header .subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 10px;
    display: block;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

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

.text-center { text-align: center; }

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

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 62, 47, 0.2);
}

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

.btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--bg-white);
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* --- Header & Top Bar --- */
.top-bar {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left, .top-bar-middle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-right a {
    color: #25D366;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-right a:hover {
    color: var(--bg-white);
}

/* Navbar */
.header {
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    padding: 5px 0;
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    fill: var(--primary-color);
}

.logo-text h1 {
    font-size: 1.4rem;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.logo-text p {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: 8px 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.nav-cta .btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 10px 20px;
    font-size: 0.85rem;
}

.nav-cta .btn:hover {
    background-color: var(--primary-light);
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    background: linear-gradient(rgba(13, 62, 47, 0.45), rgba(13, 62, 47, 0.65)), url('../images/hero_background.png') no-repeat center center/cover;
    height: 650px;
    display: flex;
    align-items: center;
    color: var(--bg-white);
    overflow: hidden;
}

.hero-content {
    max-width: 650px;
    animation: fadeInUp 1s ease;
}

.hero-content .subtitle {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--bg-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    position: relative;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(209, 161, 83, 0.4);
    z-index: -1;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn-secondary {
    color: var(--bg-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-buttons .btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* --- Features Grid (Overlapping) --- */
.features {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 30px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-bottom-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.feature-icon-wrapper {
    width: 65px;
    height: 65px;
    background-color: #f0f6f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary-color);
}

.feature-icon {
    width: 32px;
    height: 32px;
    fill: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    fill: var(--accent-color);
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- Adaklık Kurbanlıklar Section --- */
.livestock-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.livestock-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.livestock-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.livestock-card-content {
    padding: 40px;
    flex: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.livestock-icon-badge {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.livestock-icon-badge svg {
    width: 24px;
    height: 24px;
    fill: var(--bg-white);
}

.livestock-card-content h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.livestock-card-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.livestock-card-content .btn {
    align-self: flex-start;
    padding: 10px 24px;
    font-size: 0.85rem;
}

.livestock-card-image {
    flex: 0.9;
    background-size: cover;
    background-position: center;
    min-height: 280px;
}

/* --- Hizmet Sürecimiz Section --- */
.process {
    background-color: var(--bg-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

/* Connecting Line */
.process-steps::after {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    width: 80%;
    height: 2px;
    border-top: 2px dashed rgba(13, 62, 47, 0.15);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-icon-container {
    width: 90px;
    height: 90px;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.process-step:hover .process-icon-container {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.process-icon {
    width: 38px;
    height: 38px;
    fill: var(--primary-color);
}

.step-number {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    border: 2px solid var(--bg-white);
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0 10px;
}

/* --- "Adaklarınız Bizimle Güvende" Section --- */
.trust-section .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.trust-content h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.trust-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.trust-list {
    margin-bottom: 35px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.trust-item-icon {
    width: 22px;
    height: 22px;
    fill: #25D366;
}

.trust-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.trust-image {
    width: 100%;
    border-radius: 24px;
    transition: var(--transition);
}

.trust-image-wrapper:hover .trust-image {
    transform: scale(1.03);
}

.stats-card {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 24px 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    max-width: calc(100% - 50px);
}

.stats-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stats-icon {
    width: 26px;
    height: 26px;
    fill: var(--accent-color);
}

.stats-text h4 {
    font-size: 1.3rem;
    color: var(--bg-white);
    margin-bottom: 2px;
}

.stats-text p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* --- Müşteri Yorumları Section --- */
.testimonials {
    background-color: var(--bg-light);
    overflow: hidden;
}

.testimonials-slider-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

.testimonial-slide {
    min-width: calc((100% - 60px) / 3);
    width: calc((100% - 60px) / 3);
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.testimonial-slide:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    font-size: 1.2rem;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.star-icon {
    width: 16px;
    height: 16px;
    fill: var(--accent-color);
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.testimonial-user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #e2eae7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
}

.testimonial-user-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.testimonial-user-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    z-index: 5;
    transition: var(--transition);
}

.slider-nav:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.slider-nav svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-color);
    transition: var(--transition);
}

.slider-nav:hover svg {
    fill: var(--bg-white);
}

.slider-prev {
    left: -15px;
}

.slider-next {
    right: -15px;
}

/* --- Footer --- */
.footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0 0;
    font-size: 0.95rem;
    border-top: 4px solid var(--accent-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--bg-white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-col-about .logo {
    margin-bottom: 20px;
}

.footer-col-about .logo-icon {
    fill: var(--bg-white);
}

.footer-col-about .logo-text h1 {
    color: var(--bg-white);
}

.footer-col-about .logo-text p {
    color: rgba(255, 255, 255, 0.5);
}

.footer-col-about p {
    margin-bottom: 25px;
    line-height: 1.6;
}

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

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

.social-link:hover {
    background-color: var(--accent-color);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--bg-white);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    fill: var(--accent-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-text h4 {
    font-size: 0.9rem;
    color: var(--bg-white);
    margin-bottom: 2px;
}

.footer-contact-text p, .footer-contact-text a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-text a:hover {
    color: var(--accent-color);
}

.footer-map-container {
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

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

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

/* --- Inner Page Banner (Breadcrumb) --- */
.page-banner {
    background: linear-gradient(rgba(13, 62, 47, 0.85), rgba(13, 62, 47, 0.92)), url('../images/hero_background.png') no-repeat center center/cover;
    padding: 60px 0;
    color: var(--bg-white);
    text-align: center;
}

.page-banner h1 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.breadcrumb {
    display: inline-flex;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
}

/* --- About Page Details --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.about-feature {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.about-feature h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* --- Livestock Catalog Grid --- */
.catalog-section .livestock-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.catalog-card {
    display: flex;
    flex-direction: column;
}

.catalog-card .livestock-card-image {
    min-height: 220px;
    width: 100%;
}

.catalog-card .livestock-card-content {
    padding: 30px;
}

.livestock-specs {
    margin: 15px 0 25px 0;
    background-color: var(--bg-light);
    padding: 15px;
    border-radius: 10px;
}

.livestock-spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(13, 62, 47, 0.05);
}

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

.livestock-spec-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.livestock-spec-val {
    color: var(--primary-color);
    font-weight: 700;
}

/* --- Services Page Layout --- */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-detail-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.service-detail-card .service-icon {
    width: 50px;
    height: 50px;
    fill: var(--primary-color);
    margin-bottom: 25px;
}

.service-detail-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-detail-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* --- Contact Page Layout --- */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
}

.contact-info-card {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
    color: var(--bg-white);
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.contact-info-list {
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item svg {
    width: 22px;
    height: 22px;
    fill: var(--accent-color);
    flex-shrink: 0;
}

.contact-info-text h4 {
    color: var(--bg-white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-info-text p, .contact-info-text a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.contact-info-card .social-links {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.contact-form-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 45px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.contact-form-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-full {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    background-color: var(--bg-light);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(13, 62, 47, 0.08);
}

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

/* --- FAQ Accordion Section --- */
.faq-section {
    background-color: var(--bg-light);
}

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

.faq-item {
    background-color: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(13, 62, 47, 0.02);
}

.faq-icon-arrow {
    width: 16px;
    height: 16px;
    fill: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease-out;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    padding: 22px 30px;
    max-height: 500px;
    border-top-color: var(--border-color);
}

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

/* --- Responsive Layout Rules --- */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .livestock-grid {
        grid-template-columns: 1fr;
    }
    .catalog-section .livestock-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none; /* Hide top bar on mobile for cleaner view */
    }
    
    .nav-container {
        height: 70px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-cta {
        display: none; /* Hide in mobile header, show in menu if needed */
    }

    .hero {
        height: 550px;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-steps::after {
        display: none; /* Hide stepper dashed line on mobile */
    }
    
    .trust-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .catalog-section .livestock-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slide {
        min-width: 100%;
        width: 100%;
    }
    
    .testimonials-slider-wrapper {
        padding: 0;
    }
    
    .slider-nav {
        display: none; /* Hide arrows on mobile, scroll instead */
    }
    
    .testimonials-slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 10px 24px;
        -webkit-overflow-scrolling: touch;
    }
    
    .testimonial-slide {
        scroll-snap-align: start;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .livestock-card {
        flex-direction: column;
    }
    
    .livestock-card-image {
        min-height: 200px;
        width: 100%;
    }
    
    .livestock-card-content {
        padding: 24px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .contact-form-card {
        padding: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* --- Floating WhatsApp Button --- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    background-color: #20BA5A;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: var(--bg-white);
}

/* Pulse animation for floating WhatsApp */
.floating-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.4;
    animation: waPulse 2s infinite;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* --- Blog Section & Cards --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
}

.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: block;
}

.blog-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-readmore {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-readmore:hover {
    color: var(--accent-color);
}

/* --- Blog Post Detail Layout --- */
.blog-detail-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

.blog-post-meta {
    display: flex;
    gap: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.blog-post-content h2, .blog-post-content h3 {
    margin: 35px 0 15px 0;
    color: var(--primary-color);
}

.blog-post-content p {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.blog-post-content blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
    font-style: italic;
    color: var(--text-secondary);
    margin: 30px 0;
    font-size: 1.15rem;
}

.blog-post-content ul, .blog-post-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.blog-post-content li {
    margin-bottom: 8px;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.blog-post-content img {
    border-radius: 16px;
    margin: 35px 0;
    box-shadow: var(--shadow-sm);
    width: 100%;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .floating-whatsapp svg {
        width: 26px;
        height: 26px;
    }
}

