@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #1b4332; /* Deep Forest Green */
    --primary-dark: #081c15;
    --primary-light: #d8f3dc;
    --secondary: #2d6a4f;
    --accent: #52b788; /* Sage Green */
    --accent-soft: #b7e4c7;
    --text-primary: #1a1c1a;
    --text-secondary: #576574;
    --bg-primary: #fdfdfd; 
    --bg-secondary: #f7faf9;
    --bg-white: #ffffff;
    --success: #74c69d;
    --white: #ffffff;
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.04);
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --border-radius: 40px; /* More rounded/sleek */
    --border-light: 1px solid #edf2f0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { 
    font-family: 'Lora', serif; 
    font-weight: 400; /* Extra Light for Luxury feel */
    color: var(--primary); 
    letter-spacing: 0.02em; 
    text-transform: capitalize;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; transition: var(--transition); }

.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px; /* Besar di Desktop */
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    border-bottom: var(--border-light);
}

.nav-content { height: 100%; display: flex; justify-content: space-between; align-items: center; }

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 120px; /* Besar di Desktop */
    width: auto;
    object-fit: contain;
    transition: all 0.4s ease;
    margin-left: -50px; 
}

.navbar.scrolled .logo img {
    height: 60px;
}

.nav-links { display: flex; gap: 40px; }

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

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

.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--primary); border-radius: 2px; }

/* ==================== HERO ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 160px;
    padding-bottom: 100px;
    overflow: hidden;
    background: #f8fbf9;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, 
        rgba(253, 253, 253, 1) 0%, 
        rgba(253, 253, 253, 0.95) 25%, 
        rgba(253, 253, 253, 0.7) 45%, 
        rgba(253, 253, 253, 0.1) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 0; /* Force left align within container */
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 4.8rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary);
}

.gradient-text {
    color: var(--accent);
    display: block;
    font-style: italic;
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 540px;
}

.hero-actions { display: flex; gap: 20px; margin-bottom: 70px; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border-radius: 100px; /* Perfect pill */
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 20px rgba(27, 67, 50, 0.15);
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(27, 67, 50, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid #d0dbd7;
}

.btn-outline:hover {
    background: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 50px;
}

.stat-item { display: flex; flex-direction: column; align-items: flex-start; }

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.stat-unit {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent);
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-top: 10px;
    font-weight: 500;
}

.stat-divider { width: 1px; height: 50px; background: #e0e6e4; }

.hero-wave { display: none; } /* Remove wave for cleaner look */

/* ==================== UPDATE SECTION ==================== */
.update-section { padding: 40px 0; background: var(--bg-white); }

.update-banner {
    background: var(--bg-secondary);
    padding: 16px 32px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    width: fit-content;
    margin: 0 auto;
    color: var(--text-secondary);
    border: var(--border-light);
}

.update-pulse {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(82, 183, 136, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(82, 183, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(82, 183, 136, 0); }
}

/* ==================== GRID SECTIONS ==================== */
.section { padding: 120px 0; }
.section-alt { background: var(--bg-secondary); }

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

.section-badge {
    display: inline-block;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title { font-size: 3.5rem; color: var(--primary); margin-bottom: 20px; }
.section-title.left-align { text-align: left; }
.section-desc { color: var(--text-secondary); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

/* ==================== SEARCH & FILTER ==================== */
.search-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    margin-bottom: 60px;
    background: var(--bg-white);
    padding: 24px 32px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: var(--border-light);
}

.search-box { flex: 1; min-width: 300px; position: relative; }

.search-box i {
    position: absolute;
    left: 22px; top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
}

.search-box input {
    width: 100%;
    padding: 16px 56px;
    border-radius: 14px;
    border: 1px solid #e0e6e4;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    background: #fcfdfd;
}

.search-box input:focus {
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px var(--primary-light);
}

.search-clear {
    position: absolute;
    right: 20px; top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    opacity: 0.5;
}

.sort-select select {
    padding: 16px 24px;
    border-radius: 14px;
    border: 1px solid #e0e6e4;
    background: #fcfdfd;
    outline: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* ==================== FISH GRID ==================== */
.fish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 40px;
}

.fish-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 0;
    overflow: hidden;
    transition: var(--transition);
    border: var(--border-light);
    display: flex;
    flex-direction: column;
}

.fish-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-soft);
}

.about-image {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.fish-img-container {
    width: 100%;
    height: 240px;
    background: #f8fbf9;
    overflow: hidden;
}

.fish-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.fish-content {
    padding: 32px 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fish-info h3 { 
    font-size: 1.4rem; 
    margin-bottom: 4px; 
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.fish-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 24px;
}

.price-currency {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.9;
}

.price-val { 
    font-size: 1.6rem; 
    font-weight: 700; 
    color: var(--primary); 
    letter-spacing: -0.02em;
}

.price-unit { 
    color: var(--text-secondary); 
    font-size: 0.9rem; 
    font-weight: 500;
    opacity: 0.6;
}

.fish-actions { margin-top: auto; display: flex; gap: 12px; }

.btn-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px; /* Lebikah ukuran agar tidak terlihat kepotong */
    font-size: 0.8rem;
    border-radius: 12px; /* Lebih modern/kurang membulat ekstrim */
    font-weight: 700;
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.btn-sm.btn-outline {
    border: 1px solid #d0dbd7;
    color: var(--text-secondary);
}

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

.btn-sm.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-sm.btn-primary:hover {
    background: var(--secondary);
}

/* ==================== CALCULATOR ==================== */
.kalkulator-section { background: #fdfdfd; position: relative; }

.calculator-card {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    overflow: hidden;
    border: var(--border-light);
}

.calc-form { padding: 64px; display: flex; flex-direction: column; gap: 32px; }

.calc-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 1rem;
}

.calc-field select, .calc-field input {
    width: 100%;
    padding: 18px 22px;
    border-radius: 16px;
    border: 1px solid #e0e6e4;
    font-size: 1.1rem;
    outline: none;
    transition: var(--transition);
    background: #f9fbfb;
}

.calc-field select:focus, .calc-field input:focus {
    border-color: var(--accent);
    background: #fff;
}

.weight-input-group { display: flex; gap: 12px; }

.weight-btn {
    width: 58px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
}

.weight-btn:hover { background: var(--primary); color: #fff; }

.calc-result {
    background: var(--primary-light);
    padding: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-align: center;
    border-left: var(--border-light);
}

.calc-result-label { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; margin-bottom: 24px; opacity: 0.6; }
.calc-result-price { font-size: 4rem; font-weight: 800; margin-bottom: 20px; line-height: 1; }
.calc-result-detail { font-size: 1rem; font-weight: 500; opacity: 0.7; }

/* ==================== TIPS ==================== */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.tip-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: var(--border-radius);
    position: relative;
    border: var(--border-light);
    transition: var(--transition);
}

.tip-card:hover { transform: translateY(-8px); border-color: var(--accent-soft); }

.tip-number {
    position: absolute;
    top: 32px;
    right: 48px;
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-light);
    line-height: 1;
    z-index: 0;
}

.tip-icon {
    width: 64px; height: 64px;
    background: #f0f4f4;
    color: var(--accent);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.tip-card h3 { font-size: 1.6rem; margin-bottom: 16px; position: relative; z-index: 1; }
.tip-card p { font-size: 1rem; color: var(--text-secondary); position: relative; z-index: 1; }

/* ==================== ABOUT ==================== */
.about-section { background: var(--bg-secondary); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image { position: relative; }
.about-image img { width: 100%; border-radius: 40px; box-shadow: var(--shadow-lg); }

.about-image-badge {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--accent);
    color: #fff;
    padding: 32px;
    border-radius: 50%;
    width: 130px; height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.badge-year { font-size: 1.8rem; font-weight: 700; line-height: 1; }
.badge-text { font-size: 0.8rem; text-transform: uppercase; font-weight: 600; }

.about-text { margin-bottom: 24px; color: var(--text-secondary); font-size: 1.15rem; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.about-feature { display: flex; align-items: center; gap: 14px; font-size: 1rem; font-weight: 600; color: var(--primary); }
.about-feature i { color: var(--accent); font-size: 1.4rem; }

/* ==================== KONTAK ==================== */
.kontak-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.kontak-card {
    background: var(--bg-white);
    padding: 48px 32px;
    border-radius: var(--border-radius);
    text-align: center;
    border: var(--border-light);
    transition: var(--transition);
}

.kontak-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--accent-soft); }

.kontak-icon {
    width: 72px; height: 72px;
    background: var(--bg-secondary);
    color: var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 24px;
}

.kontak-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.kontak-card p { font-size: 1rem; color: var(--text-secondary); margin-bottom: 20px; }

.kontak-link {
    display: inline-block;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.map-container { border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-lg); border: 8px solid #fff; }

/* ==================== FOOTER ==================== */
.footer {
    background: var(--primary);
    color: #fff;
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand .footer-logo { 
    display: inline-block; 
    margin-bottom: 24px;
    background: #fff;
    padding: 15px 30px;
    border-radius: 20px;
}

.footer-brand .footer-logo img { 
    height: 100px; 
    width: auto; 
    object-fit: contain;
    display: block;
}
.footer-brand p { color: #dae5e0; margin-bottom: 32px; font-size: 1rem; line-height: 1.8; }

.footer-social { display: flex; gap: 16px; }

.footer-social a {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}

.footer-social a:hover { background: var(--accent); transform: scale(1.1); }

.footer-links h4 { font-size: 1.25rem; margin-bottom: 30px; color: #fff; font-family: 'Lora', serif; }
.footer-links ul li { margin-bottom: 16px; }
.footer-links ul li a { color: #dae5e0; font-size: 1rem; }
.footer-links ul li a:hover { color: var(--accent); }

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #dae5e0;
    font-size: 0.95rem;
    opacity: 0.6;
}

/* ==================== MODAL ==================== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(8, 28, 21, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: #fff;
    width: 100%;
    max-width: 900px;
    border-radius: 32px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    animation: modalSlideUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes modalSlideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 24px; right: 24px;
    width: 44px; height: 44px;
    background: #f0f4f4;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    z-index: 100;
    transition: var(--transition);
}

.modal-close:hover { background: var(--primary); color: #fff; transform: rotate(90deg); }

.modal-header { display: grid; grid-template-columns: 300px 1fr; gap: 40px; margin-bottom: 0; align-items: stretch; }

.modal-img {
    width: 100%; height: 100%;
    background: #f8fbf9;
    border-radius: 0;
    overflow: hidden;
}

.modal-img img { width: 100%; height: 100%; object-fit: cover; }

.modal-header-info { padding: 48px 48px 48px 0; }

.modal-title h2 { 
    font-size: 2.2rem; 
    margin-bottom: 8px; 
    letter-spacing: -0.02em;
}

.modal-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 32px 0; }
.meta-item { background: #f8fbf9; padding: 20px; border-radius: 20px; border: var(--border-light); }
.meta-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-secondary); margin-bottom: 8px; }
.meta-val { font-weight: 600; color: var(--primary); font-size: 1.1rem; }

.modal-desc { padding: 0 48px 48px; }
.modal-desc h3 { font-size: 1.6rem; margin-bottom: 16px; border-bottom: 2px solid var(--primary-light); display: inline-block; padding-bottom: 4px; }
.modal-desc p { color: var(--text-secondary); font-size: 1.1rem; line-height: 1.8; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .container { padding: 0 24px; }
    .hero-bg { display: block; width: 100%; }
    .hero-overlay { 
        background: linear-gradient(0deg, 
            rgba(253, 253, 253, 0.95) 0%, 
            rgba(253, 253, 253, 0.85) 50%, 
            rgba(253, 253, 253, 0.95) 100%
        ); 
    }
    .hero-content { text-align: center; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
    .hero-subtitle { margin: 0 auto 48px; }
    .hero-actions { justify-content: center; width: 100%; }
    .hero-stats { justify-content: center; gap: 30px; }
    .stat-item { align-items: center; }
    .hero-title { font-size: 3.5rem; }
    
    .calculator-card { grid-template-columns: 1fr; }
    .calc-result { border-left: none; border-top: var(--border-light); }
    
    .about-grid { grid-template-columns: 1fr; }
    .about-image { order: 2; }
    .about-content { order: 1; text-align: center; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .navbar { height: 120px; }
    
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 40px;
        gap: 32px;
        border-bottom: var(--border-light);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .logo img { height: 100px; }
    
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    
    .hero-stats { 
        display: grid; 
        grid-template-columns: 1fr 1fr; 
        gap: 24px; 
    }
    .stat-divider { display: none; }
    .stat-item:last-child { grid-column: span 2; }
    
    .section-title { font-size: 2.2rem; }
    
    .modal-header { grid-template-columns: 1fr; }
    .modal-header-info { padding: 32px; }
    .modal-desc { padding: 0 32px 32px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-brand, .footer-links, .footer-social { display: flex; flex-direction: column; align-items: center; }
    .footer-brand .logo { margin-bottom: 20px; }
}

/* ==================== FLOATING WA ==================== */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 0.95rem;
}

.floating-wa i {
    font-size: 1.5rem;
}

.floating-wa:hover {
    transform: scale(1.05) translateY(-5px);
    background: #20ba5a;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    color: white;
}

/* Pulse animation */
.floating-wa::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50px;
    top: 0;
    left: 0;
    z-index: -1;
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 768px) {
    .navbar { height: 120px; }
    .logo img { height: 90px !important; margin-left: 0 !important; }
    .hero { padding-top: 150px; text-align: center; }
    .hero-title { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; gap: 15px; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
    .stat-number { font-size: 2rem; }
    .footer-brand .footer-logo img { height: 80px; }
    
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image-badge { 
        width: 90px; height: 90px; 
        padding: 15px; 
        top: 10px; left: 10px; 
    }
    .badge-year { font-size: 1.3rem; }
    .badge-text { font-size: 0.65rem; }
}
