/* 
================================================================
M R VEGETABLES AND FRUITS - MAIN STYLESHEET
================================================================
Established: 2012
Author: Expert Frontend Developer & UI/UX Designer
Description: Core design system, variables, layouts, and components
*/

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

/* CSS Variables */
:root {
    --primary-bg: #ffffff;
    --secondary-bg: #f4fbf7;
    --primary-dark: #114227;
    --primary-fresh: #2a9d5c;
    --accent-orange: #e76f51;
    --text-dark: #2b3d32;
    --text-light: #6c7a72;
    --white: #ffffff;
    --gray-light: #f8faf9;
    --border-color: #e2ebd5;
    
    /* Typography */
    --font-main: 'Poppins', sans-serif;
    
    /* Shadows */
    --shadow-soft: 0 8px 30px rgba(17, 66, 39, 0.04);
    --shadow-medium: 0 16px 40px rgba(17, 66, 39, 0.08);
    --shadow-header: 0 4px 20px rgba(17, 66, 39, 0.06);
    
    /* Border Radius */
    --radius-card: 16px;
    --radius-btn: 30px;
    --radius-input: 8px;
    
    /* Transition */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

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

body {
    font-family: var(--font-main);
    background-color: var(--primary-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography & Links */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.3;
}

p {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 400;
}

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

ul {
    list-style: none;
}

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

/* Helper Layout Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

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

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

.flex {
    display: flex;
}

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

.justify-between {
    justify-content: space-between;
}

/* Section Header Styling */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-tag {
    display: inline-block;
    background-color: rgba(42, 157, 92, 0.1);
    color: var(--primary-fresh);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 16px;
    position: relative;
}

.section-title span {
    color: var(--primary-fresh);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

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

.btn-primary {
    background-color: var(--primary-fresh);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(42, 157, 92, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(17, 66, 39, 0.2);
}

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

.btn-secondary:hover {
    background-color: var(--primary-fresh);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(42, 157, 92, 0.2);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-dark);
    box-shadow: var(--shadow-soft);
}

.btn-white:hover {
    background-color: var(--primary-fresh);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-orange {
    background-color: var(--accent-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(231, 111, 81, 0.3);
}

.btn-orange:hover {
    background-color: #d65c3e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 111, 81, 0.2);
}

/* Sticky Header & Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-header);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.logo-text span {
    color: var(--primary-fresh);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-fresh), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

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

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

.nav-link.active {
    color: var(--primary-fresh);
    font-weight: 600;
}

.nav-btn {
    margin-left: 16px;
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1100;
    width: 30px;
    height: 24px;
    position: relative;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-dark);
    position: absolute;
    left: 0;
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

/* HERO SECTION (Home Page) */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    background-image: linear-gradient(rgba(17, 66, 39, 0.8), rgba(17, 66, 39, 0.65)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-content {
    max-width: 750px;
}

.hero-tag {
    display: inline-block;
    background-color: var(--primary-fresh);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

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

.hero h1 span {
    color: #ffd05b; /* Vibrant gold for highlight */
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ABOUT PREVIEW */
.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-preview-img-wrapper {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-preview-img-wrapper img {
    width: 100%;
    height: 480px;
    transition: var(--transition);
}

.about-preview-img-wrapper:hover img {
    transform: scale(1.03);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-card);
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--primary-fresh);
}

.about-badge .years {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-fresh);
    display: block;
    line-height: 1;
}

.about-badge .text {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.preview-features {
    margin: 24px 0 36px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.preview-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-dark);
}

.preview-feature-item i {
    color: var(--primary-fresh);
    font-size: 1.1rem;
}

/* SERVICES SECTION */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-card);
    padding: 40px 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-fresh);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
    color: var(--primary-fresh);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-fresh);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
}

/* WHY CHOOSE US */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background-color: var(--white);
    border-radius: var(--radius-card);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    gap: 20px;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: transparent;
}

.why-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(42, 157, 92, 0.1);
    border-radius: var(--radius-input);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-fresh);
}

.why-info h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.why-info p {
    font-size: 0.9rem;
}

/* GALLERY PREVIEW (Home) */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 66, 39, 0.9), rgba(17, 66, 39, 0.2));
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: var(--transition);
}

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

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.gallery-overlay span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-icon-zoom {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    transform: scale(0.8);
    transition: var(--transition);
}

.gallery-card:hover .gallery-icon-zoom {
    transform: scale(1);
}

/* CALL TO ACTION (CTA) */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), #1b5c37);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(42, 157, 92, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-wrapper h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-wrapper p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.cta-phone {
    font-size: 3rem;
    font-weight: 800;
    color: #ffd05b;
    display: block;
    margin-bottom: 32px;
    letter-spacing: 1px;
}

/* FOOTER */
footer {
    background-color: #0b2215;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px 0;
    border-top: 2px solid var(--primary-fresh);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 40px;
    margin-bottom: 50px;
}

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

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

.footer-about .footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    display: inline-block;
}

.footer-about .footer-logo span {
    color: var(--primary-fresh);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

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

.footer-links a:hover {
    color: var(--primary-fresh);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.footer-contact li i {
    color: var(--primary-fresh);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contact li span {
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.9rem;
}

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

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

.footer-legal-links a:hover {
    color: var(--primary-fresh);
}

/* BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-fresh);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    border: none;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* PAGE HEADER (Inner Pages) */
.page-hero {
    background: linear-gradient(rgba(17, 66, 39, 0.85), rgba(17, 66, 39, 0.85)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 0 80px 0;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 12px;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a:hover {
    color: var(--primary-fresh);
}

.breadcrumbs span {
    color: var(--primary-fresh);
}

/* ABOUT PAGE */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-story h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-story p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 30px;
}

.vm-card {
    background-color: var(--gray-light);
    padding: 24px;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
}

.vm-card i {
    font-size: 2rem;
    color: var(--primary-fresh);
    margin-bottom: 16px;
}

.vm-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.vm-card p {
    font-size: 0.9rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: linear-gradient(135deg, var(--primary-dark), #154e2f);
    border-radius: var(--radius-card);
    padding: 50px 30px;
    color: var(--white);
    margin-top: 60px;
    box-shadow: var(--shadow-medium);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffd05b;
    margin-bottom: 8px;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

/* GALLERY PAGE */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--gray-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: var(--radius-btn);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-fresh);
    color: var(--white);
    border-color: var(--primary-fresh);
    box-shadow: 0 4px 15px rgba(42, 157, 92, 0.2);
}

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

.gallery-grid-item {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 34, 21, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--white);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-caption {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 15px;
    text-align: center;
}

.lightbox-category {
    color: var(--primary-fresh);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent-orange);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2010;
}

.lightbox-nav:hover {
    background-color: var(--primary-fresh);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

/* CONTACT PAGE */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
}

.contact-info-wrapper {
    background-color: var(--secondary-bg);
    padding: 40px;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
}

.contact-info-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
}

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

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-fresh);
    font-size: 1.3rem;
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
}

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

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

.contact-info-text a:hover {
    color: var(--primary-fresh);
}

.contact-action-btns {
    display: flex;
    gap: 16px;
}

/* Map visual container */
.map-container {
    height: 350px;
    background: #e5ede8;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-top: 40px;
    position: relative;
    border: 1px solid var(--border-color);
}

.map-placeholder-bg {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #d8ebdd, #b5d5bd);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.map-placeholder-icon {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 12px;
    animation: bounce 2s infinite;
}

.map-placeholder-bg h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.map-placeholder-bg p {
    font-size: 0.9rem;
    max-width: 320px;
    margin-bottom: 20px;
}

/* Form Styles */
.contact-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
}

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

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-input);
    background-color: var(--gray-light);
    color: var(--text-dark);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-fresh);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(42, 157, 92, 0.1);
}

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

/* Validation Feedback Styles */
.form-group.success .form-control {
    border-color: var(--primary-fresh);
    background-color: #f6fdf9;
}

.form-group.error .form-control {
    border-color: var(--accent-orange);
    background-color: #fffaf9;
}

.error-message {
    color: var(--accent-orange);
    font-size: 0.825rem;
    font-weight: 500;
    margin-top: 6px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

/* Submit Modal Popup Style */
.form-success-alert {
    display: none;
    background-color: rgba(42, 157, 92, 0.1);
    border: 1px solid var(--primary-fresh);
    border-radius: var(--radius-input);
    padding: 16px;
    color: var(--primary-dark);
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 20px;
    align-items: center;
    gap: 12px;
}

.form-success-alert.show {
    display: flex;
}

.form-success-alert i {
    font-size: 1.3rem;
    color: var(--primary-fresh);
}

/* PRIVACY POLICY PAGE */
.privacy-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.privacy-wrapper h2 {
    font-size: 1.6rem;
    margin: 32px 0 16px 0;
}

.privacy-wrapper h2:first-of-type {
    margin-top: 0;
}

.privacy-wrapper p {
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.privacy-wrapper ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.privacy-wrapper li {
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
