/* css/style.css */
body {
    margin: 0;
    font-family: 'Inter' , Arial, sans-serif;
}

/* Heading Font */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Base Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    background-color: rgba(255,255,255,0.9); /* semi-transparent */
    backdrop-filter: blur(8px); /* blur effect */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 85px;
    transition: all 0.4s ease;
}

.alt-bg {
    background-color: #f2ffed;
}

/* Logo */
.header-logo {
    height: 130px;
    width: auto;
    transition: all 0.4s ease;
}

    
@keyframes fade-up {
    0% {
        opacity:0 ;
        transform: translateY(30px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}

@keyframes fade-down {
    0% {
        opacity:0 ;
        transform: translateY(-30px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}

/* Intro */
.intro {
    padding-top: 125px;
    animation: fade-up 0.5s;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2e7d32; /* dark green */
    animation: fade-down 1s;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 30px;
}

/* Navigation links */
nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #2e7d32;
}

/* Shrink class (applied via JS) */
header.shrink {
    height: 65px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    background-color: rgba(255,255,255,0.95);
}

header.shrink .header-logo {
    height: 45px; /* logo scales down */
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('../images/hero.jpg'); /* ganti dengan gambar sebenar */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-start; /* text kiri */
    align-items: center;
    padding-left: 50px;
    color: #fff;
    position: relative;
    animation: fade-up 1s;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.4); /* overlay gelap untuk contrast text */
}

.hero-content {
    position: relative; /* supaya text di atas overlay */
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    margin: 0 0 20px 0;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2e7d32;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.btn:hover {
    background-color: #1b5e20;
}

/* =============== About Us Section =============== */
.about {
    padding: 100px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #f9f9f9; */
}

.about-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    color: #2e7d32;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-text .btn {
    margin-top: 10px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        margin-top: 30px;
    }
}

/* =============== Services Section =============== */
.services {
    padding: 80px 50px;
    background-color: #fff;
    text-align: center;
    overflow: visible;
}

.section-header h2 {
    font-size: 36px;
    color: #2e7d32;
    margin-top: 0;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

.services-container {
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    position: relative;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: visible; /* allow scale to expand outside container */
    width: max-content;
}

.services-slider {
    position: relative;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    perspective: 1000px;
    overflow: visible;
}

.services-viewport {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    padding: 60px 0;
    position: relative;
}

.service-card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    flex: 0 0 auto;
    transition: transform 0.5s ease, opacity 0.5s ease, 
                box-shadow 0.5s ease, background-color 0.5s ease, border 0.5s ease;
    transform: scale(0.85) translateY(20px);
    opacity: 0.5;
    text-align: center;
    z-index: 1;
    filter: blur(1px);
}

.service-card.active {
    transform: scale(1.2) translateY(-10px); /* slight lift */
    transform-origin: center; /* ensures it grows from center */
    opacity: 1;
    z-index: 50;     
    box-shadow: 0 15px 35px rgba(0,0,0,0.2); 
    border: 2px solid #2e7d32; 
    background-color: #e8f5e9;  
    filter: none;
}

/* .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
} */

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.service-card h3 {
    color: #2e7d32;
    margin-top: 10px;
    margin-bottom: 10px;
}

.service-card p {
    color: #555;
    margin-top: 0;
    margin-bottom: 30px;
}

.service-card .btn {
    padding: 8px 20px;
    font-size: 14px;
    margin-bottom: 5px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #2e7d32;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

/* =============== Gallery Section =============== */
.gallery {
    padding: 100px 50px;
    background-color: #f9f9f9;
    text-align: center;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* =============== Why Choose Us Section =============== */
.why-us {
    padding: 100px 50px; 
    /* background-color: #f9f9f9; */
    text-align: center;
}

.why-us h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2e7d32;
}

/* Grid */
.why-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 35px;
}

/* Card */
.why-card {
    background: #ffffff;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.1);
    padding: 30px 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: scale(1.2);
    box-shadow: 0px 10px 25px rgba(0,0,0,0.2);
}

.why-card i {
    font-size: 40px;
    color: #2e7d32;
    margin-bottom: 15px;
}

.why-card h3 {
    margin-bottom: 10px;
    color: #2e7d32;
}

.why-card p {
    color: #555;
    font-size: 16px;
}

/* ULTRA PREMIUM CTA */
.cta-ultra {
    position: relative;
    max-width: 100%;
    min-height: 320px;
    background: url('images/landscape-banner.jpg') center/cover no-repeat fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px 150px;
    overflow-x: hidden;
    overflow-y: hidden;
    border-radius: 0;
}

/* Parallax (background fixed is part) */
.cta-ultra-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(5, 40, 28, 0.85),
        rgba(10, 55, 40, 0.85)
    );
    z-index: 1;
}

/* Content */
.cta-ultra-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    max-width: 900px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 35px;
}

/* Button */
.cta-ultra-btn {
    display: inline-block;
    position: relative;
    padding: 14px 45px;
    background: #4CAF50;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    overflow: hidden;
    color: white;
    transition: 0.3s ease;
    box-shadow: 0px 6px 18px rgba(0,0,0,0.25);
}

.cta-ultra-btn:hover {
    transform: translateY(-4px);
    background: #3ea545;
}

/* Shine animation */
.cta-ultra-btn span {
    position: relative;
    z-index: 2;
}

.cta-ultra-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80px;
    width: 60px;
    height: 100%;
    background: rgba(255,255,255,0.45);
    transform: skewX(-25deg);
    opacity: 0;
    transition: 0.5s;
}

.cta-ultra-btn:hover::before {
    left: 140%;
    opacity: 1;
}

/* Curve Divider */
/* .curve-divider {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 120px;
    background: #fff;
    clip-path: ellipse(75% 40% at 50% 100%);
    z-index: 2;
} */

/* FOOTER FINAL PREMIUM */
.footer-premium {
    background: linear-gradient(135deg, #0b3d2e, #143f2f);
    color: #fff;
    padding: 100px 20px 40px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Columns */
.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 15px;
}

/* Headings */
.footer-col h3, .footer-col h4 {
    margin-bottom: 18px;
    font-weight: 700;
}

/* Paragraphs */
.footer-col p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.7;
}

/* Quick Links Grid */
.links-grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 10px 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-grid li a {
    color: #d1e7dd;
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
}

.links-grid li a:hover {
    color: #4CAF50;
}

/* Vertical Divider between Quick Links & Contact */
.quick-links {
    border-right: 1px solid rgba(255,255,255,0.2);
    padding-right: 20px;
}

.contact-info {
    padding-left: 20px;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 15px;
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    .quick-links {
        border-right: none;
        padding-right: 0;
    }
    .contact-info {
        padding-left: 0;
    }
    .links-grid {
        grid-template-columns: repeat(2, auto);
        gap: 8px 20px;
    }
}

/* About Page Hero */
.about-hero {
    height: 60vh;
    background: url('../images/about-hero.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 30, 10, 0.55);
}

.about-hero-content {
    position: relative;
    color: #fff;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.about-hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

/* Active menu highlight */
nav ul li a.active {
    color: #2e7d32;
    font-weight: 700;
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
     transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Services Page ===== */
.services-page {
    padding: 120px 50px;
    max-width: 1200px;
    margin: auto;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 105%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 34px;
    color: #2e7d32;
    margin-bottom: 20px;
}

.service-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
    .service-row,
    .service-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .service-text h2 {
        font-size: 28px;
    }
}

/* Service points list */
.service-points {
    list-style: none;
    padding: 0;
    margin: 20px 0 25px;
}

.service-points li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-points i {
    color: #2e7d32;
    font-size: 14px;
}

/* Button */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2e7d32;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 15px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #256528;
    transform: translateY(-2px);
}

/* Trust Section */
.services-trust {
    text-align: center;
    font-size: 17px;
    color: #444;
    margin-top: 80px;
    line-height: 1.8;
}

/* About Section */
.about-section {
    padding: 120px 50px;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text h2 {
    font-size: 36px;
    color: #2e7d32;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-image img {
    width: 100%;
    border-radius: 14px;
}

/* Vision & Mission */
.vm-section {
    background: #f7f9f7;
    padding: 80px 50px; /* kurang sikit dari 100px untuk clean spacing */
}

.vm-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* responsive */
    gap: 40px;
}

.vm-box {
    background: #fff;
    padding: 35px; /* sedikit kurang supaya nampak padat */
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: left; /* left-align untuk desktop */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.vm-box h3 {
    color: #2e7d32;
    font-size: 26px; /* sedikit besar untuk visual */
    margin-bottom: 15px;
}

.vm-box ul {
    padding-left: 20px; /* letak sikit indentation untuk list */
    list-style: disc; /* optional: bulleted list */
}

.vm-box li {
    margin-bottom: 10px;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
    .vm-container {
        grid-template-columns: 1fr;
    }

    .vm-box {
        text-align: center; /* mobile center align */
        padding: 25px; /* padat untuk small screens */
    }

    .vm-box h3 {
        font-size: 24px;
    }

    .vm-box li {
        font-size: 15px;
    }
}

/* ===== Improved Trust Section ===== */
.services-trust {
    margin-top: 120px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    text-align: center;
}

.trust-item {
    padding: 30px 20px;
    background: #f7f9f7;
    border-radius: 14px;
    transition: 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.trust-item i {
    font-size: 38px;
    color: #2e7d32;
    margin-bottom: 15px;
}

.trust-item h4 {
    font-size: 20px;
    color: #2e7d32;
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* ===== Projects Section ===== */
.projects-section {
    padding: 100px 60px;
    text-align: center;
}

.section-title {
    font-size: 36px;
    color: #2e7d32;
    margin: 0 0 24px;
}

/* ===== Projects Grid ===== */
.projects-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.project-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.project-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.project-info {
    padding: 22px 20px;
}

.project-info h4 {
    color: #2e7d32;
    margin-bottom: 6px;
}

.project-info p {
    color: #555;
    font-size: 15px;
}

/* ===== Projects Intro ===== */
.projects-intro {
    padding: 100px 50px; 
    /* background-color: #f9f9f9; */
    text-align: center;
}

.projects-intro h2 {
    font-size: 36px;
    color: #2e7d32;
    margin-top: 0;
    margin-bottom: 24px;
}

.projects-intro p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ===== Project Scope ===== */
.project-scope {
    max-width: 1100px;
    margin: 0 auto 80px; /* ⬅️ lebih kemas */
    padding: 0 20px;
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    width: 100%;
}

.scope-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scope-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.scope-card i {
    font-size: 36px;
    color: #2e7d32;
    margin-bottom: 12px;
}

.scope-card p {
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

/* ===== Projects CTA ===== */
.projects-cta {
    /* background: #f9f9f9; */
    padding: 80px 20px; /* ⬅️ tak terlalu besar */
    text-align: center;
    margin-top: 0; /* ⬅️ penting: elak double gap */
}

.projects-cta h2 {
    font-size: 34px;
    color: #2e7d32;
    margin-bottom: 20px;
}

.projects-cta .btn {
    padding: 14px 36px;
    font-size: 16px;
}

/* ========= Partners Carousel ========= */
.partners-carousel {
    padding: 60px 50px;
    background-color: #f9f9f9;
    text-align: center;
}

.partners-carousel h2 {
    font-size: 32px;
    color: #2e7d32;
    margin: 0 0 24px;
}

.partners-viewport {
    overflow: hidden;
    width: 100%;
}

.partners-container {
    display: flex;
    gap: 50px;
    width: max-content;
    align-items: center;
}

.partner-logo {
    flex: 0 0 auto;
    width: 150px;
}

.partner-logo img {
    width: 100%;
    padding: 20px 20px;
    height: auto;
    object-fit: contain;
    filter: grayscale(50%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.partner-logo img:hover {
    filter: none;
    transform: scale(1.05);
}

/* ===== PREMIUM CONTACT SECTION ===== */

.contact-premium {
    padding: 120px 60px;
    background: linear-gradient(135deg, #0b3d2e, #145a3c);
}

.contact-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.contact-info-premium {
    flex: 1;
    color: #fff;
    animation: fade-up 0.8s ease;
}

.contact-info-premium h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.contact-info-premium p {
    margin-bottom: 30px;
    line-height: 1.7;
    opacity: 0.9;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 17px;
}

.info-item i {
    font-size: 20px;
    color: #4CAF50;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 25px;
    background: #25D366;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* RIGHT SIDE GLASS FORM */
.contact-form-premium {
    flex: 1;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    animation: fade-up 1s ease;
}

/* Floating Label Effect */
.input-group {
    position: relative;
    margin-bottom: 30px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px 10px;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    font-size: 16px;
    outline: none;
}

.input-group label {
    position: absolute;
    left: 10px;
    top: 12px;
    color: rgba(255,255,255,0.7);
    pointer-events: none;
    transition: 0.3s ease;
}

.input-group input:focus ~ label,
.input-group input:valid ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:valid ~ label {
    top: -10px;
    font-size: 12px;
    color: #4CAF50;
}

.contact-form-premium .btn {
    width: 100%;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
    }
}

/* ===== ULTRA PREMIUM CONTACT BG ANIMATION ===== */

.contact-premium {
    position: relative;
    padding: 140px 60px;
    background: linear-gradient(-45deg, #0b3d2e, #145a3c, #0e4b34, #1c6b4a);
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
    overflow: hidden;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Soft glow */
.contact-form-premium {
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-form-premium:hover {
    box-shadow: 0 0 40px rgba(76,175,80,0.4);
}

/* Glow hover for whatsapp */
.whatsapp-btn:hover {
    box-shadow: 0 0 25px rgba(37,211,102,0.7);
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    font-size: 26px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
    z-index: 999;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.success-popup {
    position: fixed;
    top: 30px;
    right: 30px;
    background: #4CAF50;
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(-20px);
    transition: 0.4s ease;
    z-index: 9999;
}

.success-popup.show {
    opacity: 1;
    transform: translateY(0);
}

/* FIX HEADER CLICK ISSUE */
#main-header {
    position: relative;
    z-index: 10000;
}

/* test push */