.agf, .agf * { box-sizing: border-box; }
.agf { font-family: 'Kanit', 'Prompt', sans-serif; }
.agf {--bg-dark: #08140f;
    --bg-surface: #0e221b;
    --bg-card: rgba(18, 42, 33, 0.75);
    --bg-card-hover: rgba(26, 58, 46, 0.85);
    
    --primary-emerald: #10b981;
    --primary-cyan: #06b6d4;
    --accent-gold: #fbbf24;
    --accent-gold-hover: #f59e0b;
    --accent-red: #ef4444;
    --accent-red-hover: #dc2626;
    
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    --border-subtle: rgba(255, 255, 255, 0.12);
    --border-glow: rgba(251, 191, 36, 0.4);
    
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 25px rgba(251, 191, 36, 0.25);
    --shadow-red-glow: 0 0 25px rgba(239, 68, 68, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --font-heading: 'Prompt', 'Kanit', sans-serif;
    --font-body: 'Kanit', 'Prompt', sans-serif;}
.agf *, .agf *::before, .agf *::after {box-sizing: border-box;
    margin: 0;
    padding: 0;}
.agf html {scroll-behavior: smooth;
    font-size: 16px;}
.agf body {font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;}
.agf .water-bg-overlay {position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 20%, rgba(16, 185, 129, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(6, 182, 212, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: -2;}
.agf .container {width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;}
.agf .glass-card {background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);}
.agf .glass-card:hover {border-color: rgba(255, 255, 255, 0.22);}
.agf h1, .agf h2, .agf h3, .agf h4 {font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;}
.agf .text-gold {color: var(--accent-gold);}
.agf .text-red {color: var(--accent-red);}
.agf .text-emerald {color: var(--primary-emerald);}
.agf .text-highlight-red {color: #ff4d4d;
    text-shadow: 0 0 15px rgba(255, 77, 77, 0.5);}
.agf .text-highlight-gold {color: #ffcc00;
    text-shadow: 0 0 15px rgba(255, 204, 0, 0.5);}
.agf .text-center {text-align: center;}
.agf .btn {display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;}
.agf .btn-gold {background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e1b4b;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);}
.agf .btn-gold:hover {transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, #fcd34d, #fbbf24);}
.agf .btn-phone {background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);}
.agf .btn-phone:hover {transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #34d399, #10b981);}
.agf .btn-facebook {background: linear-gradient(135deg, #1877f2, #0056b3);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.35);}
.agf .btn-facebook:hover {transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5);}
.agf .btn-outline {background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);}
.agf .btn-outline:hover {background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);}
.agf .btn-sm {padding: 8px 18px;
    font-size: 0.875rem;}
.agf .mt-4 {margin-top: 1.5rem;}
.agf .navbar {position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 20, 15, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 14px 0;}
.agf .nav-container {display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;}
.agf .logo {display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);}
.agf .logo-icon {font-size: 2rem;
    color: var(--accent-gold);
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));}
.agf .brand-title {display: block;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--text-muted);}
.agf .brand-sub {display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-gold);}
.agf .nav-links {display: flex;
    gap: 20px;}
.agf .nav-links a {color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    font-size: 0.92rem;}
.agf .nav-links a:hover {color: var(--accent-gold);}
.agf .slider-section {padding: 50px 0;}
.agf .carousel-container {position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(18, 42, 33, 0.6);
    border: 1px solid var(--border-subtle);
    padding: 40px 20px;}
.agf .carousel-track {display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 200%;}
.agf .carousel-slide {width: 50%;
    flex-shrink: 0;
    padding: 0 20px;}
.agf .slide-grid {display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;}
.agf .poster-card-glow {position: relative;
    border-radius: var(--radius-lg);
    padding: 10px;
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.3), rgba(16, 185, 129, 0.2));
    box-shadow: var(--shadow-glow);
    overflow: hidden;}
.agf .poster-badge {position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: var(--radius-full);}
.agf .poster-badge.bg-gold {background: linear-gradient(135deg, #f59e0b, #d97706);}
.agf .poster-img {width: 100%;
    border-radius: var(--radius-md);
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;}
.agf .poster-img:hover {transform: scale(1.02);}
.agf .slide-info {display: flex;
    flex-direction: column;
    gap: 16px;}
.agf .badge-pill {padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    width: fit-content;}
.agf .badge-pill.bg-red {background: rgba(239, 68, 68, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(239, 68, 68, 0.4);}
.agf .badge-pill.bg-gold {background: rgba(251, 191, 36, 0.2);
    color: var(--accent-gold);
    border: 1px solid rgba(251, 191, 36, 0.4);}
.agf .slide-title {font-size: 2.5rem;}
.agf .slide-desc {font-size: 1.1rem;
    color: var(--text-secondary);}
.agf .slide-details {display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px dashed var(--border-subtle);}
.agf .detail-line {font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;}
.agf .slide-actions {display: flex;
    gap: 14px;
    margin-top: 8px;}
.agf .slider-arrow {position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-subtle);
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;}
.agf .slider-arrow:hover {background: var(--accent-gold);
    color: #000;}
.agf .prev-arrow {left: 16px;}
.agf .next-arrow {right: 16px;}
.agf .carousel-dots {display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;}
.agf .dot {width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;}
.agf .dot.active {width: 32px;
    border-radius: var(--radius-full);
    background: var(--accent-gold);}
.agf .promo-detail-section {padding: 40px 0;}
.agf .promo-card {padding: 40px;}
.agf .promo-card.border-gold {border-color: rgba(251, 191, 36, 0.4);}
.agf .promo-card-grid {display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;}
.agf .promo-card-grid .p-img .thumb-img {width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: transform 0.3s ease;}
.agf .promo-card-grid .p-img .thumb-img:hover {transform: scale(1.03);}
.agf .highlight-pills {display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;}
.agf .pill-item {display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;}
.agf .rules-box {margin-top: 16px;
    background: rgba(0, 0, 0, 0.3);
    padding: 18px;
    border-radius: var(--radius-md);
    border: 1px dashed var(--border-subtle);}
.agf .rules-box h4 {margin-bottom: 8px;
    color: var(--accent-gold);}
.agf .rules-box ul {list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;}
.agf .rules-box ul li {display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;}
.agf .calculator-section {padding: 80px 0;}
.agf .section-header {margin-bottom: 40px;}
.agf .section-subtitle {color: var(--primary-emerald);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;}
.agf .section-header h2 {font-size: 2.25rem;
    margin-bottom: 12px;}
.agf .calc-card {padding: 40px;}
.agf .calc-grid {display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;}
.agf .calc-controls {display: flex;
    flex-direction: column;
    gap: 24px;}
.agf .control-group {display: flex;
    flex-direction: column;
    gap: 12px;}
.agf .calc-label {font-size: 1.05rem;
    font-weight: 600;}
.agf .counter-box {display: flex;
    align-items: center;
    gap: 12px;}
.agf .btn-counter {width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.2s ease;}
.agf .btn-counter:hover {background: var(--accent-gold);
    color: #000;}
.agf #rodInput, .agf #fishInput {width: 100px;
    height: 46px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--accent-gold);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);}
.agf .custom-slider {width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    accent-color: var(--accent-gold);
    cursor: pointer;}
.agf .divider {border: none;
    border-top: 1px dashed var(--border-subtle);}
.agf .quick-pills {display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.875rem;}
.agf .pill-btn {background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.2s ease;}
.agf .pill-btn:hover {background: var(--accent-gold);
    color: #000;}
.agf .calc-result {background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;}
.agf .result-badge {font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border-bottom: 1px dashed var(--border-subtle);
    padding-bottom: 12px;}
.agf .result-stats {display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    text-align: center;}
.agf .stat-box {background: rgba(255, 255, 255, 0.03);
    padding: 16px 8px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);}
.agf .stat-box.highlight-box {background: rgba(251, 191, 36, 0.08);
    border-color: rgba(251, 191, 36, 0.4);}
.agf .stat-box.free-box {background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.4);}
.agf .stat-label {display: block;
    font-size: 0.8rem;
    color: var(--text-muted);}
.agf .stat-value {font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);}
.agf .stat-unit {font-size: 0.85rem;
    color: var(--text-muted);}
.agf .price-summary {display: flex;
    flex-direction: column;
    gap: 12px;}
.agf .price-row.main-price {font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;}
.agf .final-price {font-size: 1.8rem;
    color: var(--accent-gold);}
.agf .savings-banner {background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.3));
    border: 1px solid rgba(16, 185, 129, 0.4);
    padding: 14px;
    border-radius: var(--radius-md);
    text-align: center;
    color: #34d399;
    font-size: 1.05rem;}
.agf .location-section {padding: 80px 0 100px;}
.agf .location-card {padding: 50px;}
.agf .location-grid {display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;}
.agf .location-info h2 {font-size: 2.2rem;
    margin-bottom: 16px;}
.agf .loc-address {font-size: 1.1rem;
    margin-bottom: 24px;
    line-height: 1.6;}
.agf .contact-details {display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;}
.agf .c-item {display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;}
.agf .contact-btns {display: flex;
    gap: 16px;
    flex-wrap: wrap;}
.agf .map-placeholder {height: 100%;
    min-height: 320px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.15));
    border: 1px dashed var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;}
.agf .map-mock {display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;}
.agf .map-icon {font-size: 3rem;
    color: var(--accent-gold);}
.agf .footer {border-top: 1px solid var(--border-subtle);
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.6);
    color: var(--text-secondary);}
.agf .footer-sub {font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 6px;}
.agf .modal {display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;}
.agf .modal-content {max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: 0 0 30px rgba(0,0,0,0.8);}
.agf .modal-close {position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;}
.agf #modalCaption {margin-top: 15px;
    color: var(--accent-gold);
    font-size: 1.1rem;}
.agf .toast {visibility: hidden;
    min-width: 300px;
    background-color: #10b981;
    color: #fff;
    text-align: center;
    border-radius: var(--radius-full);
    padding: 16px;
    position: fixed;
    z-index: 3000;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    font-weight: 600;}
.agf .toast.show {visibility: visible;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;}
@keyframes fadein {
    from { bottom: 0; opacity: 0; }
    to { bottom: 30px; opacity: 1; }
}
@keyframes fadeout {
    from { bottom: 30px; opacity: 1; }
    to { bottom: 0; opacity: 0; }
}
@media (max-width: 992px) {
.agf .slide-grid, .agf .promo-card-grid, .agf .calc-grid, .agf .location-grid {grid-template-columns: 1fr;}
.agf .slide-title {font-size: 2rem;}
.agf .nav-links {display: none;}
}
.agf .slide-desc {display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden}
.agf .promo-empty {text-align:center;padding:40px 20px;color:var(--text-muted)}

/* แถบฟิวชั่น (.agf-band) อยู่นอก .wrap = เต็มความกว้าง body (ไม่รวม scrollbar → ไม่ overflow) เหนือ bg ด้วย z-index
   → PC ได้เลย์เอาต์กว้าง (โปสเตอร์ซ้าย+ข้อความขวา) · มือถือ stack เต็มจอ · เนื้อหาคุมด้วย .container (max 1240px + padding 20px) */
.agf-band { position: relative; z-index: 2; }
.agf.slider-section { padding: 50px 0; }
.agf.calculator-section { padding: 80px 0; }

/* ปุ่ม "อ่านรายละเอียดเพิ่มเติม" ในสไลด์ + modal รายละเอียดโปรฯ เต็ม */
.agf .slide-more { margin: 4px 0 4px; background: none; border: none; color: var(--accent-gold); font-family: inherit; font-size: 0.95rem; font-weight: 600; cursor: pointer; padding: 0; display: inline-flex; align-items: center; gap: 6px; }
.agf .slide-more:hover { text-decoration: underline; }
.agf .promo-info-modal { position: fixed; inset: 0; z-index: 3000; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(2, 18, 13, 0.86); backdrop-filter: blur(8px); }
.agf .promo-info-modal.show { display: flex; }
.agf .promo-info-card { position: relative; width: 100%; max-width: 540px; max-height: 85vh; overflow: auto; background: var(--bg-surface); border: 1px solid var(--border-glow); border-radius: var(--radius-lg); padding: 30px 28px 28px; box-shadow: var(--shadow-soft); }
.agf .promo-info-close { position: absolute; top: 10px; right: 16px; background: none; border: none; color: var(--text-muted); font-size: 34px; line-height: 1; cursor: pointer; }
.agf .promo-info-close:hover { color: var(--accent-red); }
.agf .pi-title { font-size: 1.5rem; font-weight: 700; margin: 14px 0 16px; color: var(--text-primary); line-height: 1.3; }
.agf .pi-desc { font-size: 1rem; line-height: 1.9; color: var(--text-secondary); white-space: pre-line; }
.agf #piCta { margin-top: 20px; }
