/* ========== Green Farms Seafood — Landing Page ========== */
:root {
    --primary: #1a7a3e;
    --primary-dark: #0f5128;
    --primary-light: #2da55a;
    --accent: #76c043;
    --accent-light: #a8d56b;
    --bg-soft: #f0f9f1;
    --text-dark: #1a2e1e;
    --text-muted: #5a6b5f;
    --white: #ffffff;
    --shadow-sm: 0 4px 12px rgba(26, 122, 62, 0.08);
    --shadow-md: 0 8px 24px rgba(26, 122, 62, 0.12);
    --shadow-lg: 0 20px 40px rgba(26, 122, 62, 0.18);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

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

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-dark);
}

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

img { max-width: 100%; }

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

/* ========== Top Bar ========== */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    font-size: 13px;
    padding: 10px 0;
}
.top-bar .top-info span { margin-right: 20px; }
.top-bar i { color: var(--accent); margin-right: 6px; }
.top-bar a {
    color: var(--white);
    margin-left: 12px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}
.top-bar a:hover { background: var(--accent); }

/* ========== Navigation ========== */
.navbar-custom {
    background: var(--white) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 15px 0;
}
.navbar-brand {
    display: flex !important;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary) !important;
}
.navbar-brand img { width: 55px; height: 55px; object-fit: contain; margin-right: 12px; }
.navbar-brand span {
    font-size: 22px;
    line-height: 1;
    display: flex;
    flex-direction: column;
}
.navbar-brand small {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 12px;
    position: relative;
    font-size: 15px;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 100%; }
.btn-quote {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 6px 16px rgba(26, 122, 62, 0.3);
}
.btn-quote:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ========== Buttons ========== */
.btn-primary-green {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white) !important;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    box-shadow: 0 8px 20px rgba(26, 122, 62, 0.25);
    cursor: pointer;
}
.btn-primary-green:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(26, 122, 62, 0.4);
}
.btn-outline-green {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--primary) !important;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--primary);
    margin-left: 12px;
}
.btn-outline-green:hover {
    background: var(--primary);
    color: var(--white) !important;
}

/* ========== Hero — Professional Seafood Style ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    background: #0d1418;
    padding: 80px 0 60px;
}
.hero-bg-image {
    position: absolute;
    inset: 0;
    background: url('../images/farming.jpeg') center/cover;
    opacity: 0.75;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.2) 100%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-particles span {
    position: absolute;
    display: block;
    width: 6px;
    height: 6px;
    background: var(--accent-light);
    border-radius: 50%;
    opacity: 0.4;
    animation: float-up 12s infinite ease-in;
}
.hero-particles span:nth-child(1) { left: 10%; bottom: -10px; width: 8px; height: 8px; animation-delay: 0s; animation-duration: 14s; }
.hero-particles span:nth-child(2) { left: 25%; bottom: -10px; width: 4px; height: 4px; animation-delay: 2s; animation-duration: 16s; }
.hero-particles span:nth-child(3) { left: 50%; bottom: -10px; width: 6px; height: 6px; animation-delay: 4s; animation-duration: 13s; }
.hero-particles span:nth-child(4) { left: 65%; bottom: -10px; width: 5px; height: 5px; animation-delay: 6s; animation-duration: 15s; }
.hero-particles span:nth-child(5) { left: 80%; bottom: -10px; width: 7px; height: 7px; animation-delay: 1s; animation-duration: 17s; }
.hero-particles span:nth-child(6) { left: 92%; bottom: -10px; width: 4px; height: 4px; animation-delay: 5s; animation-duration: 14s; }
@keyframes float-up {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    50% { transform: translateY(-50vh) translateX(20px); opacity: 0.8; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) translateX(-10px); opacity: 0; }
}

.hero-content { position: relative; z-index: 2; }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(118, 192, 67, 0.15);
    backdrop-filter: blur(12px);
    color: var(--accent-light);
    padding: 9px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid rgba(118, 192, 67, 0.35);
    letter-spacing: 0.5px;
}
.hero-tag i { color: var(--accent-light); }

.hero-title {
    font-size: 4.2rem;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 28px;
    font-weight: 800;
    letter-spacing: -1px;
}
.hero-title span {
    background: linear-gradient(120deg, var(--accent-light) 0%, #c8e8a0 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
    display: inline-block;
}
.hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.78);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; margin-bottom: 40px; flex-wrap: wrap; }
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);
    color: var(--white) !important;
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    box-shadow: 0 12px 30px rgba(118, 192, 67, 0.4);
    transition: var(--transition);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(118, 192, 67, 0.6);
}
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    color: var(--white) !important;
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
}
.btn-hero-outline i { color: var(--accent-light); font-size: 18px; }

/* Trust Badges */
.hero-trust {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.trust-label {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.trust-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-badges span {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
}
.trust-badges span:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Visual Side */
.hero-visual { position: relative; }
.hero-image-stack {
    position: relative;
    height: 560px;
    perspective: 1200px;
}
.hero-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 78%;
    height: 78%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.05);
    transform: rotate(2deg);
    animation: hero-float 6s ease-in-out infinite;
}
.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-img-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-img-badge i { color: var(--primary); }

.hero-img-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 50%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 0 6px rgba(255, 255, 255, 0.95);
    transform: rotate(-3deg);
    animation: hero-float 6s ease-in-out infinite reverse;
    animation-delay: 1s;
}
.hero-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@keyframes hero-float {
    0%, 100% { transform: rotate(2deg) translateY(0); }
    50% { transform: rotate(2deg) translateY(-12px); }
}

.hero-floating-card {
    position: absolute;
    top: 38%;
    left: -3%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
    max-width: 260px;
    animation: card-float 5s ease-in-out infinite;
}
.floating-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.hero-floating-card strong {
    display: block;
    color: var(--text-dark);
    font-size: 13px;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}
.hero-floating-card small {
    color: var(--text-muted);
    font-size: 11px;
}
@keyframes card-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-floating-stats {
    position: absolute;
    bottom: 6%;
    right: -2%;
    background: rgba(20, 30, 24, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    gap: 24px;
    z-index: 3;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: card-float 5s ease-in-out infinite;
    animation-delay: 1.5s;
}
.floating-stat { text-align: center; }
.floating-stat h3 {
    color: var(--accent-light);
    font-size: 1.8rem;
    margin: 0;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}
.floating-stat h3 span { font-size: 1.1rem; color: var(--accent); margin-left: 2px; }
.floating-stat p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 11px;
    margin: 6px 0 0;
    letter-spacing: 0.5px;
}

/* Hero Marquee */
.hero-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 14px 0;
    overflow: hidden;
    z-index: 5;
}
.marquee-track {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.marquee-track span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}
.marquee-track span i { color: var(--accent-light); font-size: 14px; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== Section Tags / Titles ========== */
.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 50px;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--accent);
}
.section-tag.light { color: var(--accent-light); }
.section-tag.light::before { background: var(--accent-light); }
.text-center .section-tag { padding-left: 0; }
.text-center .section-tag::before { display: none; }
.section-title {
    font-size: 2.6rem;
    margin-bottom: 20px;
    line-height: 1.25;
}
.section-title span { color: var(--primary); font-style: italic; }
.section-text { color: var(--text-muted); font-size: 16px; }

/* ========== About ========== */
.about-section { background: var(--bg-soft); position: relative; }
.about-image { position: relative; padding: 30px 30px 0 0; }
.about-image .img-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    height: 500px;
}
.about-image .img-sub {
    position: absolute;
    bottom: -40px;
    right: -10px;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    border: 8px solid var(--white);
    box-shadow: var(--shadow-md);
}
.experience-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 24px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.experience-badge h2 {
    color: var(--accent-light);
    font-size: 2.8rem;
    margin: 0;
    font-weight: 800;
}
.experience-badge p { color: var(--white); margin: 0; font-size: 13px; }
.about-features { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-dark);
}
.feature-item i { color: var(--primary); font-size: 18px; }

/* ========== Products ========== */
.products-section { background: var(--white); }
.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #e8f3ea;
    height: 100%;
    position: relative;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.product-img {
    height: 260px;
    overflow: hidden;
    position: relative;
    background: var(--bg-soft);
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.product-card:hover .product-img img { transform: scale(1.1); }
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.product-info { padding: 24px; }
.product-info h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.product-info p { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; min-height: 65px; }
.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid #e8f3ea;
}
.product-meta .price { color: var(--primary); font-weight: 700; font-size: 16px; }
.product-meta .price small { font-weight: 400; color: var(--text-muted); }
.product-meta a {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}
.product-meta a:hover { color: var(--primary-dark); }
.product-meta a i { margin-left: 4px; }

/* ========== Why Choose ========== */
.why-section {
    background: linear-gradient(135deg, var(--bg-soft) 0%, #e0f2e4 100%);
    position: relative;
}
.why-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: 20px;
    height: 100%;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid transparent;
}
.why-card:hover {
    transform: translateY(-8px);
    border-top-color: var(--primary);
    box-shadow: var(--shadow-md);
}
.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(26, 122, 62, 0.25);
}
.why-card h4 { font-size: 1.25rem; margin-bottom: 14px; }
.why-card p { color: var(--text-muted); font-size: 14px; }

/* ========== Process ========== */
.process-section { background: var(--white); }
.process-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--white);
    height: 100%;
}
.process-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.process-img { height: 240px; overflow: hidden; }
.process-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.process-card:hover .process-img img { transform: scale(1.08); }
.process-content { padding: 32px; position: relative; }
.process-number {
    position: absolute;
    top: -32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 8px 16px rgba(26, 122, 62, 0.3);
}
.process-content h4 { font-size: 1.4rem; margin-bottom: 12px; }
.process-content p { color: var(--text-muted); font-size: 14px; }

/* ========== Certificates ========== */
.cert-section { background: var(--bg-soft); }
.cert-card {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cert-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.cert-card img { max-height: 100%; object-fit: contain; filter: grayscale(20%); transition: var(--transition); }
.cert-card:hover img { filter: grayscale(0); }

/* ========== Contact Section — Pro Style ========== */
.contact-section {
    position: relative;
    padding: 110px 0 110px;
    background: linear-gradient(180deg, #f6fbf7 0%, #ecf6ee 100%);
    overflow: hidden;
}
.contact-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(118, 192, 67, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(26, 122, 62, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.contact-section .container { position: relative; z-index: 2; }

/* Info cards */
.info-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(15, 81, 40, 0.06);
    border: 1px solid #e8f3ea;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}
.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(15, 81, 40, 0.15);
    border-color: var(--accent);
}
.info-card:hover::before { transform: scaleX(1); }
.info-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--bg-soft) 0%, #d4ecd9 100%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition);
}
.info-card:hover .info-card-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: var(--white);
    transform: rotate(-8deg) scale(1.05);
}
.info-card h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.info-card p {
    color: var(--text-muted);
    font-size: 13px;
    margin: 0;
    line-height: 1.7;
}

/* Wrapper — Form + Map */
.contact-wrapper {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 81, 40, 0.12);
    border: 1px solid #e8f3ea;
}

/* Form Side */
.contact-form-side {
    padding: 50px 45px;
    height: 100%;
    background: var(--white);
    position: relative;
}
.form-side-header { margin-bottom: 32px; }
.form-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-soft);
    color: var(--primary);
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.form-side-header h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}
.form-side-header p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.contact-form-modern .form-field { position: relative; }
.contact-form-modern label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}
.contact-form-modern input,
.contact-form-modern select,
.contact-form-modern textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e8eef0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: var(--transition);
    background: #fafdfb;
    color: var(--text-dark);
}
.contact-form-modern input::placeholder,
.contact-form-modern textarea::placeholder {
    color: #b0bbb3;
    font-size: 13px;
}
.contact-form-modern input:focus,
.contact-form-modern select:focus,
.contact-form-modern textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(26, 122, 62, 0.08);
}
.form-success {
    margin-top: 18px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #d4ecd9 0%, #c8e8a0 100%);
    color: var(--primary-dark);
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    font-size: 14px;
    border: 1px solid var(--accent);
}
.form-success i { margin-right: 8px; color: var(--primary); }

/* Map Side */
.contact-map-side {
    position: relative;
    height: 100%;
    min-height: 580px;
    background: var(--bg-soft);
}
.contact-map-side iframe {
    display: block;
}
.map-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 18px 22px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(15, 81, 40, 0.2);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
}
.map-overlay-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.map-overlay strong {
    display: block;
    color: var(--text-dark);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2px;
}
.map-overlay small {
    color: var(--text-muted);
    font-size: 12px;
}

/* Social CTA */
.contact-social-cta {
    margin-top: 60px;
    text-align: center;
    padding: 36px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: 20px;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(15, 81, 40, 0.25);
}
.contact-social-cta p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 500;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.social-link {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
    border: 1.5px solid rgba(255,255,255,0.2);
}
.social-link:hover {
    transform: translateY(-5px);
    color: var(--white);
}
.social-link.facebook:hover { background: #1877f2; border-color: #1877f2; }
.social-link.linkedin:hover { background: #0a66c2; border-color: #0a66c2; }
.social-link.youtube:hover { background: #ff0000; border-color: #ff0000; }
.social-link.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: #dc2743; }
.social-link.whatsapp:hover { background: #25d366; border-color: #25d366; }

/* ========== Footer ========== */
.footer {
    background: #0a2010;
    color: rgba(255,255,255,0.7);
    padding: 70px 0 0;
}
.footer h4, .footer h5 { color: var(--white); }
.footer h5 { font-size: 1.1rem; margin-bottom: 20px; font-family: 'Poppins', sans-serif; font-weight: 600; }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-brand img { width: 55px; height: 55px; }
.footer-brand h4 { margin: 0; font-size: 1.3rem; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer ul li a:hover { color: var(--accent-light); padding-left: 6px; }
.footer p { font-size: 14px; margin-bottom: 10px; }
.footer p i { color: var(--accent-light); margin-right: 8px; width: 18px; }
.footer-social { margin-top: 18px; }
.footer-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    margin-right: 8px;
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-bottom {
    margin-top: 50px;
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
}
.footer-bottom a { color: var(--accent-light); }
.footer-bottom a:hover { color: var(--white); }

/* ========== Scroll Top ========== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-4px); }

/* ========== Responsive ========== */
@media (max-width: 1199px) {
    .hero-title { font-size: 3.4rem; }
    .hero-image-stack { height: 480px; }
    .hero-floating-card { max-width: 220px; }
}
@media (max-width: 991px) {
    .hero { min-height: auto; padding: 60px 0 100px; }
    .hero-title { font-size: 2.6rem; }
    .section-title { font-size: 2rem; }
    .section-padding { padding: 70px 0; }
    .about-image { padding: 20px; }
    .about-image .img-main { height: 380px; }
    .about-image .img-sub { width: 150px; height: 150px; }
    .navbar-brand span { font-size: 18px; }
    .btn-quote { margin-top: 12px; margin-left: 0 !important; }
    .top-bar { display: none; }
    .hero-image-stack { height: 420px; margin-top: 40px; }
    .hero-floating-card { max-width: 200px; padding: 12px 16px; left: 0; }
    .hero-floating-card strong { font-size: 12px; }
    .hero-floating-card small { font-size: 10px; }
    .hero-floating-stats { padding: 14px 18px; gap: 18px; right: 0; }
    .floating-stat h3 { font-size: 1.5rem; }
    .trust-badges span { font-size: 11px; padding: 5px 10px; }
}
@media (max-width: 575px) {
    .hero-title { font-size: 2rem; line-height: 1.15; }
    .section-title { font-size: 1.7rem; }
    .hero-actions { flex-direction: column; }
    .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }
    .about-features { grid-template-columns: 1fr; }
    .contact-form-box { padding: 24px; }
    .hero-subtitle { font-size: 15px; }
    .hero-image-stack { height: 360px; }
    .hero-floating-card { display: none; }
    .hero-floating-stats { gap: 14px; padding: 12px 16px; }
    .floating-stat h3 { font-size: 1.3rem; }
    .floating-stat p { font-size: 10px; }
    .hero-marquee { padding: 10px 0; }
    .marquee-track span { font-size: 11px; }
}
