/* =============================================
   PANCHHI FAL AGRO FARM - Custom Styles
   ============================================= */

/* --- CSS Variables --- */
:root {
    --pf-primary: #2e7d32;
    --pf-primary-dark: #1b5e20;
    --pf-primary-light: #4caf50;
    --pf-secondary: #f57c00;
    --pf-accent: #ff9800;
    --pf-dark: #1a1a2e;
    --pf-text: #333333;
    --pf-text-light: #666666;
    --pf-bg: #ffffff;
    --pf-bg-light: #f8faf8;
    --pf-bg-alt: #f1f8e9;
    --pf-border: #e0e0e0;
    --pf-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --pf-shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --pf-radius: 12px;
    --pf-radius-sm: 8px;
    --pf-transition: all 0.3s ease;
    --pf-font: 'Poppins', sans-serif;
    --pf-font-display: 'Playfair Display', serif;
}

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

body {
    font-family: var(--pf-font);
    color: var(--pf-text);
    line-height: 1.7;
    overflow-x: hidden;
}

.pf-main { overflow: hidden; }

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

a { text-decoration: none; color: inherit; transition: var(--pf-transition); }
img { max-width: 100%; height: auto; }

/* --- Buttons --- */
.pf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--pf-transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pf-btn-primary {
    background: var(--pf-primary);
    color: #fff;
    border-color: var(--pf-primary);
}
.pf-btn-primary:hover {
    background: var(--pf-primary-dark);
    border-color: var(--pf-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46,125,50,0.3);
}

.pf-btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.pf-btn-outline:hover {
    background: #fff;
    color: var(--pf-primary);
}

.pf-btn-white {
    background: #fff;
    color: var(--pf-primary);
    border-color: #fff;
}
.pf-btn-white:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.pf-btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.pf-btn-outline-white:hover {
    background: #fff;
    color: var(--pf-primary);
    border-color: #fff;
}

.pf-btn-sm { padding: 8px 20px; font-size: 12px; }
.pf-btn-full { width: 100%; justify-content: center; }

.pf-btn-whatsapp {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
    width: 100%;
    justify-content: center;
}
.pf-btn-whatsapp:hover { background: #128c7e; border-color: #128c7e; }

.pf-btn-call {
    background: var(--pf-primary);
    color: #fff;
    border-color: var(--pf-primary);
    width: 100%;
    justify-content: center;
}

.pf-link {
    color: var(--pf-primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.pf-link:hover { gap: 10px; }

/* --- Top Bar --- */
.pf-top-bar {
    background: var(--pf-dark);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}
.pf-top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pf-top-contact { display: flex; gap: 20px; }
.pf-top-contact a { color: rgba(255,255,255,0.85); }
.pf-top-contact a:hover { color: var(--pf-accent); }
.pf-top-contact i { margin-right: 6px; }
.pf-top-social { display: flex; gap: 12px; }
.pf-top-social a {
    color: rgba(255,255,255,0.7);
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 12px;
}
.pf-top-social a:hover { background: var(--pf-primary); border-color: var(--pf-primary); color: #fff; }

/* --- Header --- */
.pf-header {
    background: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--pf-transition);
}
.pf-header.scrolled { padding: 10px 0; box-shadow: var(--pf-shadow); }
.pf-header-inner { display: flex; align-items: center; justify-content: space-between; }

.pf-site-title {
    font-family: var(--pf-font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--pf-primary);
    margin: 0;
}
.pf-site-title span { color: var(--pf-secondary); }

.pf-nav-list {
    display: flex;
    list-style: none;
    margin: 0; padding: 0;
    gap: 32px;
}
.pf-nav-list a {
    font-weight: 500;
    font-size: 15px;
    color: var(--pf-text);
    position: relative;
    padding: 5px 0;
}
.pf-nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--pf-primary);
    transition: var(--pf-transition);
}
.pf-nav-list a:hover, .pf-nav-list a.active { color: var(--pf-primary); }
.pf-nav-list a:hover::after, .pf-nav-list a.active::after { width: 100%; }

.pf-header-actions { display: flex; align-items: center; gap: 15px; }

.pf-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.pf-mobile-toggle span {
    width: 25px; height: 3px;
    background: var(--pf-dark);
    border-radius: 3px;
    transition: var(--pf-transition);
}

.pf-mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 300px; height: 100vh;
    background: #fff;
    z-index: 2000;
    padding: 80px 30px 30px;
    box-shadow: var(--pf-shadow-lg);
    transition: right 0.4s ease;
}
.pf-mobile-menu.active { right: 0; }
.pf-mobile-menu ul { list-style: none; padding: 0; }
.pf-mobile-menu li { border-bottom: 1px solid var(--pf-border); }
.pf-mobile-menu a { display: block; padding: 15px 0; font-weight: 500; font-size: 16px; }
.pf-mobile-menu a:hover { color: var(--pf-primary); }

/* --- Hero Section --- */
.pf-hero { position: relative; height: 650px; overflow: hidden; }
.pf-hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease;
}
.pf-hero-slide.active { opacity: 1; }
.pf-hero-content { max-width: 700px; color: #fff; }
.pf-hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.3);
}
.pf-hero-content h1 {
    font-family: var(--pf-font-display);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
}
.pf-hero-content h1 span { color: var(--pf-accent); }
.pf-hero-content p { font-size: 17px; opacity: 0.9; margin-bottom: 30px; line-height: 1.8; }
.pf-hero-actions { display: flex; gap: 15px; flex-wrap: wrap; }

.pf-hero-nav { position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; padding: 0 20px; transform: translateY(-50%); pointer-events: none; }
.pf-hero-prev, .pf-hero-next {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    pointer-events: all;
    transition: var(--pf-transition);
    display: flex; align-items: center; justify-content: center;
}
.pf-hero-prev:hover, .pf-hero-next:hover { background: var(--pf-primary); border-color: var(--pf-primary); }

.pf-hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.pf-hero-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--pf-transition);
}
.pf-hero-dot.active { background: #fff; transform: scale(1.2); }

/* --- Sections --- */
.pf-section { padding: 80px 0; }
.pf-section-header { text-align: center; margin-bottom: 50px; }
.pf-section-header--left { text-align: left; }
.pf-section-tag {
    display: inline-block;
    color: var(--pf-primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.pf-section-title {
    font-family: var(--pf-font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--pf-dark);
    margin: 0 0 15px;
}
.pf-section-subtitle { color: var(--pf-text-light); font-size: 16px; max-width: 600px; margin: 0 auto; }
.pf-section-cta { text-align: center; margin-top: 40px; }

/* --- Features Bar --- */
.pf-features-bar { background: var(--pf-primary); padding: 30px 0; }
.pf-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.pf-feature-item {
    display: flex; align-items: center; gap: 15px; color: #fff;
}
.pf-feature-item i { font-size: 32px; opacity: 0.9; }
.pf-feature-item h4 { margin: 0; font-size: 15px; font-weight: 600; }
.pf-feature-item p { margin: 0; font-size: 12px; opacity: 0.8; }

/* --- About Preview --- */
.pf-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pf-about-img-wrapper {
    border-radius: var(--pf-radius);
    overflow: hidden;
    box-shadow: var(--pf-shadow-lg);
    position: relative;
}
.pf-about-img-placeholder {
    background: linear-gradient(135deg, var(--pf-bg-alt), #c8e6c9);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.pf-about-img-placeholder i { font-size: 60px; color: var(--pf-primary); opacity: 0.5; }
.pf-about-img-placeholder span { color: var(--pf-primary); font-weight: 500; }
.pf-about-img-placeholder--large { height: 500px; }

.pf-about-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--pf-secondary);
    color: #fff;
    padding: 20px;
    border-radius: var(--pf-radius);
    text-align: center;
    box-shadow: var(--pf-shadow);
}
.pf-about-badge .pf-badge-number { display: block; font-size: 32px; font-weight: 800; }
.pf-about-badge .pf-badge-text { font-size: 12px; text-transform: uppercase; }

.pf-about-content h2 { margin-bottom: 20px; }
.pf-about-content p { color: var(--pf-text-light); margin-bottom: 15px; }
.pf-about-list { list-style: none; padding: 0; margin: 25px 0; }
.pf-about-list li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0; font-weight: 500;
}
.pf-about-list li i { color: var(--pf-primary); }

/* --- Products Grid --- */
.pf-products-section { background: var(--pf-bg-light); }
.pf-products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.pf-product-card {
    background: #fff;
    border-radius: var(--pf-radius);
    overflow: hidden;
    box-shadow: var(--pf-shadow);
    transition: var(--pf-transition);
}
.pf-product-card:hover { transform: translateY(-8px); box-shadow: var(--pf-shadow-lg); }
.pf-product-image { position: relative; overflow: hidden; }
.pf-product-img-placeholder {
    height: 220px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--pf-bg-alt), #e8f5e9);
}
.pf-product-img-placeholder i { font-size: 50px; color: var(--pf-primary); opacity: 0.4; }
.pf-product-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(46,125,50,0.8);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: var(--pf-transition);
}
.pf-product-card:hover .pf-product-overlay { opacity: 1; }
.pf-product-info { padding: 20px; }
.pf-product-info h3 { font-size: 18px; margin: 0 0 10px; color: var(--pf-dark); }
.pf-product-info p { font-size: 13px; color: var(--pf-text-light); margin: 0 0 15px; line-height: 1.6; }

/* --- Stats --- */
.pf-stats-section {
    background: linear-gradient(135deg, var(--pf-primary-dark), var(--pf-primary));
    padding: 60px 0;
}
.pf-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; color: #fff; }
.pf-stat-item { padding: 20px; }
.pf-stat-icon { font-size: 36px; margin-bottom: 15px; opacity: 0.9; }
.pf-stat-number { font-size: 48px; font-weight: 800; line-height: 1; }
.pf-stat-suffix { font-size: 28px; font-weight: 700; display: inline; }
.pf-stat-label { font-size: 14px; opacity: 0.85; margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; }

/* --- Why Choose Us Cards --- */
.pf-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pf-why-card {
    background: #fff;
    padding: 35px;
    border-radius: var(--pf-radius);
    box-shadow: var(--pf-shadow);
    text-align: center;
    transition: var(--pf-transition);
    border: 1px solid var(--pf-border);
}
.pf-why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--pf-shadow-lg);
    border-color: var(--pf-primary);
}
.pf-why-icon {
    width: 70px; height: 70px;
    background: var(--pf-bg-alt);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--pf-primary);
    transition: var(--pf-transition);
}
.pf-why-card:hover .pf-why-icon { background: var(--pf-primary); color: #fff; }
.pf-why-card h3 { font-size: 18px; margin: 0 0 10px; }
.pf-why-card p { font-size: 14px; color: var(--pf-text-light); margin: 0; }

/* --- Testimonials --- */
.pf-testimonials-section { background: var(--pf-bg-light); }
.pf-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pf-testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--pf-radius);
    box-shadow: var(--pf-shadow);
    transition: var(--pf-transition);
}
.pf-testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--pf-shadow-lg); }
.pf-testimonial-stars { color: var(--pf-accent); margin-bottom: 15px; font-size: 14px; }
.pf-testimonial-card p { font-size: 14px; color: var(--pf-text-light); font-style: italic; line-height: 1.8; margin-bottom: 20px; }
.pf-testimonial-author { display: flex; align-items: center; gap: 12px; }
.pf-testimonial-avatar { font-size: 40px; color: var(--pf-primary); opacity: 0.7; }
.pf-testimonial-author h4 { margin: 0; font-size: 15px; }
.pf-testimonial-author span { font-size: 12px; color: var(--pf-text-light); }

/* --- CTA Section --- */
.pf-cta-section {
    background: linear-gradient(135deg, var(--pf-primary-dark), var(--pf-primary-light));
    padding: 70px 0;
    text-align: center;
}
.pf-cta-content h2 { color: #fff; font-family: var(--pf-font-display); font-size: 34px; margin: 0 0 15px; }
.pf-cta-content p { color: rgba(255,255,255,0.9); font-size: 16px; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.pf-cta-actions { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* --- Page Banner --- */
.pf-page-banner {
    background: linear-gradient(135deg, var(--pf-dark), var(--pf-primary-dark));
    padding: 80px 0 60px;
    text-align: center;
}
.pf-banner-content h1 { color: #fff; font-family: var(--pf-font-display); font-size: 42px; margin: 0 0 15px; }
.pf-breadcrumb { color: rgba(255,255,255,0.7); font-size: 14px; }
.pf-breadcrumb a { color: rgba(255,255,255,0.9); }
.pf-breadcrumb a:hover { color: var(--pf-accent); }
.pf-breadcrumb span { margin: 0 8px; }

/* --- Contact Page --- */
.pf-contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.pf-contact-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--pf-radius);
    box-shadow: var(--pf-shadow);
    text-align: center;
    transition: var(--pf-transition);
    border: 1px solid var(--pf-border);
}
.pf-contact-card:hover { border-color: var(--pf-primary); transform: translateY(-5px); }
.pf-contact-card-icon {
    width: 60px; height: 60px;
    background: var(--pf-bg-alt);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px;
    font-size: 22px; color: var(--pf-primary);
}
.pf-contact-card h3 { font-size: 16px; margin: 0 0 8px; }
.pf-contact-card p { font-size: 14px; color: var(--pf-text-light); margin: 0; }
.pf-contact-card a { color: var(--pf-primary); }
.pf-small { font-size: 12px !important; opacity: 0.7; margin-top: 5px !important; }

.pf-contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; }
.pf-contact-form-wrapper { background: #fff; padding: 40px; border-radius: var(--pf-radius); box-shadow: var(--pf-shadow); }

.pf-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pf-form-group { margin-bottom: 20px; }
.pf-form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; color: var(--pf-text); }
.pf-form-group input, .pf-form-group select, .pf-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--pf-border);
    border-radius: var(--pf-radius-sm);
    font-size: 14px;
    font-family: var(--pf-font);
    transition: var(--pf-transition);
    background: #fff;
}
.pf-form-group input:focus, .pf-form-group select:focus, .pf-form-group textarea:focus {
    outline: none;
    border-color: var(--pf-primary);
    box-shadow: 0 0 0 3px rgba(46,125,50,0.1);
}

.pf-alert { padding: 15px 20px; border-radius: var(--pf-radius-sm); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.pf-alert-success { background: #e8f5e9; color: var(--pf-primary-dark); border: 1px solid #c8e6c9; }

.pf-contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.pf-map-wrapper { border-radius: var(--pf-radius); overflow: hidden; box-shadow: var(--pf-shadow); }
.pf-contact-info-box {
    background: #fff;
    padding: 25px;
    border-radius: var(--pf-radius);
    box-shadow: var(--pf-shadow);
}
.pf-contact-info-box h3 { font-size: 16px; margin: 0 0 15px; }
.pf-business-hours { list-style: none; padding: 0; margin: 0; }
.pf-business-hours li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--pf-border); font-size: 14px; }
.pf-business-hours li:last-child { border: none; }
.pf-quick-connect { display: flex; flex-direction: column; gap: 10px; }

.pf-enquiry-cta { background: var(--pf-bg-light); }
.pf-enquiry-box {
    display: flex; align-items: center; justify-content: space-between;
    background: #fff; padding: 40px; border-radius: var(--pf-radius);
    box-shadow: var(--pf-shadow); gap: 30px;
}
.pf-enquiry-content h3 { margin: 0 0 8px; font-size: 20px; }
.pf-enquiry-content p { margin: 0; color: var(--pf-text-light); font-size: 14px; }

/* --- Products Page --- */
.pf-product-category { border-bottom: 1px solid var(--pf-border); }
.pf-product-category--alt { background: var(--pf-bg-light); }
.pf-category-header { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; }
.pf-category-icon {
    width: 60px; height: 60px; min-width: 60px;
    background: var(--pf-bg-alt);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--pf-primary);
}
.pf-category-title { font-size: 28px; margin: 0 0 8px; color: var(--pf-dark); }
.pf-category-header p { font-size: 14px; color: var(--pf-text-light); margin: 0; }

.pf-product-items-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.pf-product-item {
    background: #fff; border-radius: var(--pf-radius);
    overflow: hidden; box-shadow: var(--pf-shadow);
    display: flex; flex-direction: column;
    transition: var(--pf-transition);
    border: 1px solid var(--pf-border);
}
.pf-product-item:hover { transform: translateY(-5px); box-shadow: var(--pf-shadow-lg); border-color: var(--pf-primary); }
.pf-product-item-image .pf-product-img-placeholder { height: 160px; }
.pf-product-item-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.pf-product-item-info h4 { font-size: 16px; margin: 0 0 8px; color: var(--pf-dark); }
.pf-product-item-info p { font-size: 13px; color: var(--pf-text-light); margin: 0 0 15px; flex: 1; }

/* --- Modal --- */
.pf-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 9999; display: none; align-items: center; justify-content: center;
}
.pf-modal.active { display: flex; }
.pf-modal-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); }
.pf-modal-content {
    position: relative; background: #fff; padding: 40px;
    border-radius: var(--pf-radius); max-width: 500px; width: 90%;
    max-height: 90vh; overflow-y: auto;
}
.pf-modal-close {
    position: absolute; top: 15px; right: 20px;
    font-size: 28px; background: none; border: none; cursor: pointer; color: var(--pf-text-light);
}
.pf-modal-content h3 { margin: 0 0 10px; }
.pf-modal-product { color: var(--pf-primary); font-weight: 600; margin-bottom: 20px; }

/* --- Governance Page --- */
.pf-governance-highlights { display: flex; gap: 30px; margin-top: 25px; }
.pf-highlight-item { display: flex; align-items: center; gap: 12px; }
.pf-highlight-item i { font-size: 24px; color: var(--pf-primary); }
.pf-highlight-item h4 { margin: 0; font-size: 14px; }
.pf-highlight-item p { margin: 0; font-size: 13px; color: var(--pf-text-light); }

.pf-mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pf-mission-card {
    background: #fff; padding: 35px; border-radius: var(--pf-radius);
    box-shadow: var(--pf-shadow); text-align: center;
    border-top: 4px solid var(--pf-primary);
}
.pf-mission-icon { font-size: 40px; color: var(--pf-primary); margin-bottom: 20px; }
.pf-mission-card h3 { font-size: 20px; margin: 0 0 15px; }
.pf-mission-card p { font-size: 14px; color: var(--pf-text-light); margin: 0; }

.pf-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pf-team-card {
    background: #fff; padding: 35px; border-radius: var(--pf-radius);
    box-shadow: var(--pf-shadow); text-align: center;
    transition: var(--pf-transition);
}
.pf-team-card:hover { transform: translateY(-5px); box-shadow: var(--pf-shadow-lg); }
.pf-team-avatar { font-size: 60px; color: var(--pf-primary); opacity: 0.6; margin-bottom: 15px; }
.pf-team-card h3 { font-size: 18px; margin: 0 0 5px; }
.pf-team-role { font-size: 13px; color: var(--pf-primary); font-weight: 500; display: block; margin-bottom: 12px; }
.pf-team-card p { font-size: 14px; color: var(--pf-text-light); margin: 0; }

.pf-cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.pf-cert-card {
    background: #fff; padding: 30px; border-radius: var(--pf-radius);
    box-shadow: var(--pf-shadow); text-align: center;
    border: 1px solid var(--pf-border);
}
.pf-cert-card i { font-size: 36px; color: var(--pf-primary); margin-bottom: 15px; }
.pf-cert-card h4 { font-size: 15px; margin: 0 0 8px; }
.pf-cert-card p { font-size: 13px; color: var(--pf-text-light); margin: 0; }

/* --- Timeline --- */
.pf-timeline { position: relative; padding-left: 40px; }
.pf-timeline::before { content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 2px; background: var(--pf-primary); opacity: 0.3; }
.pf-timeline-item { position: relative; margin-bottom: 30px; }
.pf-timeline-dot {
    position: absolute; left: -33px; top: 5px;
    width: 16px; height: 16px; background: var(--pf-primary);
    border-radius: 50%; border: 3px solid #fff; box-shadow: 0 0 0 3px var(--pf-primary);
}
.pf-timeline-content h4 { color: var(--pf-primary); margin: 0 0 5px; font-size: 18px; }
.pf-timeline-content p { margin: 0; color: var(--pf-text-light); font-size: 14px; }

/* --- Why Choose Us Page --- */
.pf-why-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.pf-why-feature {
    display: flex; gap: 20px; padding: 30px;
    background: #fff; border-radius: var(--pf-radius);
    box-shadow: var(--pf-shadow); transition: var(--pf-transition);
    border: 1px solid var(--pf-border);
}
.pf-why-feature:hover { border-color: var(--pf-primary); transform: translateY(-3px); }
.pf-why-feature-icon {
    width: 60px; height: 60px; min-width: 60px;
    background: var(--pf-bg-alt); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--pf-primary);
}
.pf-why-feature-content h3 { margin: 0 0 10px; font-size: 18px; }
.pf-why-feature-content p { margin: 0; font-size: 14px; color: var(--pf-text-light); }

.pf-process-section { background: var(--pf-bg-light); }
.pf-process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.pf-process-step {
    text-align: center; padding: 30px 15px;
    background: #fff; border-radius: var(--pf-radius);
    box-shadow: var(--pf-shadow); position: relative;
}
.pf-process-number { font-size: 36px; font-weight: 800; color: var(--pf-primary); opacity: 0.3; margin-bottom: 10px; }
.pf-process-step h4 { font-size: 16px; margin: 0 0 8px; }
.pf-process-step p { font-size: 13px; color: var(--pf-text-light); margin: 0; }

.pf-trust-section { background: var(--pf-primary); padding: 50px 0; }
.pf-trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; text-align: center; color: #fff; }
.pf-trust-badge i { font-size: 36px; margin-bottom: 10px; opacity: 0.9; }
.pf-trust-badge h4 { margin: 0; font-size: 14px; font-weight: 500; }

/* --- FAQ --- */
.pf-faq-list { max-width: 800px; margin: 0 auto; }
.pf-faq-item { border: 1px solid var(--pf-border); border-radius: var(--pf-radius-sm); margin-bottom: 12px; overflow: hidden; }
.pf-faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 18px 20px; background: #fff; border: none; cursor: pointer;
    font-size: 15px; font-weight: 500; text-align: left; font-family: var(--pf-font);
    transition: var(--pf-transition);
}
.pf-faq-question:hover { background: var(--pf-bg-alt); }
.pf-faq-question i { transition: var(--pf-transition); color: var(--pf-primary); }
.pf-faq-item.active .pf-faq-question { background: var(--pf-bg-alt); }
.pf-faq-item.active .pf-faq-question i { transform: rotate(180deg); }
.pf-faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.pf-faq-item.active .pf-faq-answer { max-height: 300px; padding: 15px 20px; }
.pf-faq-answer p { margin: 0; font-size: 14px; color: var(--pf-text-light); line-height: 1.7; }

/* --- Footer --- */
.pf-footer { background: var(--pf-dark); color: #fff; }
.pf-footer-top { padding: 60px 0 40px; }
.pf-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.pf-footer-title { font-size: 18px; margin: 0 0 20px; position: relative; padding-bottom: 12px; }
.pf-footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--pf-primary); }
.pf-footer-col p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.8; }
.pf-footer-social { display: flex; gap: 10px; margin-top: 20px; }
.pf-footer-social a {
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; font-size: 14px;
    transition: var(--pf-transition);
}
.pf-footer-social a:hover { background: var(--pf-primary); }

.pf-footer-links { list-style: none; padding: 0; margin: 0; }
.pf-footer-links li { margin-bottom: 10px; }
.pf-footer-links a { color: rgba(255,255,255,0.7); font-size: 14px; display: flex; align-items: center; gap: 8px; }
.pf-footer-links a::before { content: '›'; color: var(--pf-primary); }
.pf-footer-links a:hover { color: #fff; padding-left: 5px; }

.pf-footer-contact { list-style: none; padding: 0; margin: 0; }
.pf-footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px; font-size: 14px; color: rgba(255,255,255,0.7); }
.pf-footer-contact i { color: var(--pf-primary); margin-top: 3px; }
.pf-footer-contact a { color: rgba(255,255,255,0.7); }
.pf-footer-contact a:hover { color: #fff; }

.pf-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.pf-footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.pf-footer-bottom p { margin: 0; font-size: 13px; color: rgba(255,255,255,0.6); }
.pf-footer-bottom-links { list-style: none; padding: 0; margin: 0; display: flex; gap: 20px; }
.pf-footer-bottom-links a { color: rgba(255,255,255,0.6); font-size: 13px; }
.pf-footer-bottom-links a:hover { color: #fff; }

/* --- WhatsApp Float --- */
.pf-whatsapp-float {
    position: fixed; bottom: 25px; right: 25px;
    width: 60px; height: 60px;
    background: #25d366; color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 28px; box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 999; transition: var(--pf-transition);
    animation: pulse 2s infinite;
}
.pf-whatsapp-float:hover { transform: scale(1.1); background: #128c7e; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* --- Back to Top --- */
.pf-back-to-top {
    position: fixed; bottom: 25px; right: 95px;
    width: 45px; height: 45px;
    background: var(--pf-primary); color: #fff;
    border-radius: 50%; border: none;
    display: none; align-items: center; justify-content: center;
    font-size: 16px; cursor: pointer; z-index: 999;
    box-shadow: var(--pf-shadow); transition: var(--pf-transition);
}
.pf-back-to-top.visible { display: flex; }
.pf-back-to-top:hover { background: var(--pf-primary-dark); transform: translateY(-3px); }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .pf-hero-content h1 { font-size: 40px; }
    .pf-products-grid { grid-template-columns: repeat(2, 1fr); }
    .pf-why-grid { grid-template-columns: repeat(2, 1fr); }
    .pf-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .pf-features-grid { grid-template-columns: repeat(2, 1fr); }
    .pf-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pf-contact-cards { grid-template-columns: repeat(2, 1fr); }
    .pf-mission-grid { grid-template-columns: repeat(2, 1fr); }
    .pf-team-grid { grid-template-columns: repeat(2, 1fr); }
    .pf-cert-grid { grid-template-columns: repeat(2, 1fr); }
    .pf-process-grid { grid-template-columns: repeat(3, 1fr); }
    .pf-trust-grid { grid-template-columns: repeat(3, 1fr); }
    .pf-product-items-grid { grid-template-columns: repeat(2, 1fr); }
    .pf-why-features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .pf-nav { display: none; }
    .pf-mobile-toggle { display: flex; }
    .pf-header-actions .pf-btn { display: none; }

    .pf-top-bar-inner { flex-direction: column; gap: 5px; }
    .pf-top-contact { flex-direction: column; gap: 5px; text-align: center; }

    .pf-hero { height: 550px; }
    .pf-hero-content h1 { font-size: 30px; }
    .pf-hero-content p { font-size: 14px; }
    .pf-hero-actions { flex-direction: column; }
    .pf-hero-prev, .pf-hero-next { width: 40px; height: 40px; font-size: 14px; }

    .pf-section { padding: 50px 0; }
    .pf-section-title { font-size: 28px; }

    .pf-about-grid { grid-template-columns: 1fr; gap: 30px; }
    .pf-about-badge { bottom: 10px; right: 10px; padding: 15px; }

    .pf-features-grid { grid-template-columns: 1fr; gap: 15px; }
    .pf-products-grid { grid-template-columns: 1fr; }
    .pf-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .pf-stat-number { font-size: 36px; }
    .pf-why-grid { grid-template-columns: 1fr; }
    .pf-testimonials-grid { grid-template-columns: 1fr; }

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

    .pf-mission-grid { grid-template-columns: 1fr; }
    .pf-team-grid { grid-template-columns: 1fr; }
    .pf-cert-grid { grid-template-columns: 1fr; }
    .pf-process-grid { grid-template-columns: 1fr; }
    .pf-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .pf-product-items-grid { grid-template-columns: 1fr; }

    .pf-footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .pf-footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
    .pf-enquiry-box { flex-direction: column; text-align: center; }
    .pf-page-banner { padding: 60px 0 40px; }
    .pf-banner-content h1 { font-size: 30px; }
    .pf-governance-highlights { flex-direction: column; gap: 15px; }
}

@media (max-width: 480px) {
    .pf-hero { height: 500px; }
    .pf-hero-content h1 { font-size: 26px; }
    .pf-section-title { font-size: 24px; }
    .pf-stats-grid { grid-template-columns: 1fr; }
    .pf-trust-grid { grid-template-columns: 1fr; }
    .pf-cta-content h2 { font-size: 24px; }
}

/* --- Scroll Animations (CSS-based) --- */
.pf-animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.pf-animate-on-scroll.pf-animated {
    opacity: 1;
    transform: translateY(0);
}

/* --- Form Validation --- */
.pf-input-error {
    border-color: #e53935 !important;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1) !important;
}
.pf-input-error:focus {
    border-color: #e53935 !important;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.2) !important;
}

/* --- Mobile Toggle Active State --- */
.pf-mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.pf-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.pf-mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
