/* ============================
   SPARTAN PLAYSTATION - STYLES
   Color Palette from Logo:
   - Black: #0a0a0a, #1a1a1a
   - Gold/Tan: #D2B88A, #C8AB75, #B08F5A
   - Red: #E01020, #C41424
   - Beige: #EAD5B0
   ============================ */

/* === RESET & BASE === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --black-light: #1a1a1a;
    --black-medium: #111111;
    --dark-gray: #1e1e1e;
    --gray: #2a2a2a;
    --gray-medium: #3a3a3a;
    --gray-light: #888;
    --gold: #D2B88A;
    --gold-light: #EAD5B0;
    --gold-dark: #B08F5A;
    --gold-bright: #C8AB75;
    --red: #E01020;
    --red-dark: #C41424;
    --red-light: #FF3642;
    --white: #FFFFFF;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --shadow-gold: 0 4px 20px rgba(210,184,138,0.2);
    --shadow-red: 0 4px 20px rgba(224,16,32,0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

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

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(210,184,138,0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.nav-logo img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.nav-logo small {
    display: block;
    font-size: 0.55em;
    color: var(--gold-light);
    letter-spacing: 3px;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    background: rgba(210,184,138,0.1);
}

.nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    font-weight: 600;
    border-radius: 8px;
}

.nav-cta:hover {
    background: var(--red-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 2px;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(224,16,32,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(224,16,32,0.4);
    background: linear-gradient(135deg, var(--red-light), var(--red));
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

.btn-cancel {
    background: var(--gray);
    color: var(--white);
}

.btn-cancel:hover {
    background: var(--gray-medium);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* === TEXT HELPERS === */
.text-gold {
    color: var(--gold);
}

.text-red {
    color: var(--red);
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center top, #1a1a2e 0%, var(--black) 70%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(210,184,138,0.05) 0%, transparent 50%),
        linear-gradient(225deg, rgba(224,16,32,0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-10vh); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 100px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(210,184,138,0.1);
    border: 1px solid rgba(210,184,138,0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 3px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 36px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}



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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === SECTIONS === */
.section {
    padding: 100px 0;
}

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

.section-tag {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(210,184,138,0.1);
    border: 1px solid rgba(210,184,138,0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.section-header p {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
}

/* === ABOUT SECTION === */
.about-section {
    background: var(--black-light);
}

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

.about-card {
    background: var(--dark-gray);
    border: 1px solid rgba(210,184,138,0.1);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.about-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(210,184,138,0.15), rgba(210,184,138,0.05));
    border-radius: 16px;
    font-size: 1.8rem;
    color: var(--gold);
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.about-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* === PACKAGES SECTION === */
.packages-section {
    background: var(--black);
}

.package-category {
    margin-bottom: 60px;
}

.package-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 1px;
}

.category-title i {
    color: var(--gold);
}

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

.package-card {
    background: var(--dark-gray);
    border: 1px solid rgba(210,184,138,0.15);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    opacity: 0;
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.package-card:hover::before {
    opacity: 1;
}

.package-card.popular {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.package-card.popular::before {
    opacity: 1;
}

.package-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.package-card.ps5 {
    border-color: rgba(224,16,32,0.2);
}

.package-card.ps5::before {
    background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-dark));
}

.package-card.ps5:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-red);
}

.package-card.ps5.popular {
    border-color: var(--red);
    box-shadow: var(--shadow-red);
}

.popular-tag {
    position: absolute;
    top: 16px;
    right: -30px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 40px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.package-card.ps5 .popular-tag {
    background: var(--red);
    color: var(--white);
}

.package-badge {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(210,184,138,0.15);
    color: var(--gold);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.ps5-badge {
    background: rgba(224,16,32,0.15);
    color: var(--red);
}

.package-duration {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
    letter-spacing: 1px;
}

.package-price {
    margin-bottom: 8px;
}

.package-price .currency {
    font-size: 1rem;
    color: var(--gold);
    vertical-align: super;
}

.package-price .amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.package-card.ps5 .package-price .currency,
.package-card.ps5 .package-price .amount {
    color: var(--red);
}

.package-save {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(40,167,69,0.15);
    color: #2ecc71;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.package-features {
    list-style: none;
    margin: 20px 0 28px;
    text-align: left;
}

.package-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    color: var(--gold);
    margin-right: 10px;
    width: 16px;
}

.package-card.ps5 .package-features li i {
    color: var(--red);
}

/* === HOW IT WORKS === */
.how-section {
    background: var(--black-light);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 30px 20px;
    background: var(--dark-gray);
    border: 1px solid rgba(210,184,138,0.1);
    border-radius: var(--radius);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(210,184,138,0.1);
    position: absolute;
    top: 10px;
    right: 16px;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(210,184,138,0.15), rgba(210,184,138,0.05));
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--gold);
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.step-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.step-connector {
    color: var(--gold);
    font-size: 1.2rem;
    padding: 0 12px;
    opacity: 0.4;
}

/* === ORDER FORM === */
.order-section {
    background: var(--black);
    position: relative;
}

.order-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(224,16,32,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.order-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--dark-gray);
    border: 1px solid rgba(210,184,138,0.15);
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    z-index: 1;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--gold);
    font-size: 0.85rem;
}

.required {
    color: var(--red);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-width: 0;
    padding: 14px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(210,184,138,0.05);
    box-shadow: 0 0 0 3px rgba(210,184,138,0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(224,16,32,0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D2B88A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--dark-gray);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    margin-top: 32px;
    text-align: center;
}

.btn-submit {
    padding: 18px 48px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 400px;
}

.form-note {
    margin-top: 16px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.form-note i {
    color: var(--gold);
}

/* === UNIT SELECTOR === */
.unit-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.unit-loading {
    color: var(--gray-light);
    font-size: 0.9rem;
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px;
}

.unit-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.unit-card:hover {
    border-color: rgba(210,184,138,0.5);
    background: rgba(255,255,255,0.05);
}

.unit-card.selected {
    border-color: var(--gold);
    background: rgba(210,184,138,0.08);
    box-shadow: 0 0 0 3px rgba(210,184,138,0.15);
}

.unit-card.booked {
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
}

.unit-card.booked::after {
    content: 'SUDAH DIBOOKING';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background: var(--red);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
}

.unit-color-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 auto 10px;
    border: 3px solid rgba(255,255,255,0.2);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.unit-card.selected .unit-color-dot {
    border-color: var(--gold);
}

.unit-card-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.unit-card-type {
    font-size: 0.75rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === GAME LIST === */
.game-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.game-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(210,184,138,0.08);
    border: 1px solid rgba(210,184,138,0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gold-light);
    transition: var(--transition);
}

.game-tag i {
    font-size: 0.7rem;
    color: var(--gold);
}

/* === AVAILABILITY STATUS === */
.availability-status {
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    min-height: 50px;
    display: flex;
    align-items: center;
}

.avail-hint {
    font-size: 0.85rem;
    color: var(--gray-light);
}

.avail-hint i {
    margin-right: 6px;
}

.avail-ok {
    color: #2ecc71;
    font-weight: 600;
    font-size: 0.9rem;
}

.avail-ok i {
    margin-right: 6px;
}

.avail-booked {
    color: var(--red-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.avail-booked i {
    margin-right: 6px;
}

.avail-checking {
    color: var(--gold);
    font-size: 0.85rem;
}

/* === MODAL === */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal {
    background: var(--dark-gray);
    border: 1px solid rgba(224,16,32,0.3);
    border-radius: var(--radius-lg);
    max-width: 520px;
    width: 100%;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    animation: modalIn 0.3s ease forwards;
}

@keyframes modalIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-header {
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    padding: 30px;
    text-align: center;
}

.modal-warning-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
    70% { box-shadow: 0 0 0 15px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 2px;
}

.modal-body {
    padding: 30px;
}

.warning-content {
    margin-bottom: 24px;
}

.warning-text {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--red-light);
}

.warning-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

.penalty-box {
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(224,16,32,0.1);
    border: 1px solid rgba(224,16,32,0.3);
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.penalty-box i {
    color: var(--red);
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.penalty-box p {
    font-size: 0.95rem;
    color: var(--white);
}

.agreement-box {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Custom Checkbox */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.checkbox-container input:checked + .checkmark {
    background: var(--gold);
    border-color: var(--gold);
}

.checkbox-container input:checked + .checkmark::after {
    content: '✓';
    color: var(--black);
    font-weight: 700;
    font-size: 0.8rem;
}

.agreement-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

.modal-footer {
    padding: 20px 30px 30px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.modal-footer .btn {
    flex: 1;
    padding: 14px;
}

/* === FOOTER === */
.footer {
    background: var(--black-light);
    border-top: 1px solid rgba(210,184,138,0.1);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    width: 70px;
    margin-bottom: 16px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    font-size: 1.1rem;
    color: var(--gold);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li i {
    color: var(--gold);
    width: 16px;
}

.footer-contact a {
    color: rgba(255,255,255,0.5);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.3);
}

/* === WA DUPLICATE WARNING === */
.wa-warning {
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 10px 14px;
    background: rgba(224,16,32,0.1);
    border: 1px solid rgba(224,16,32,0.3);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--red-light);
    font-weight: 500;
    grid-column: 1 / -1;
}

.wa-warning.show {
    display: flex;
}

.wa-warning i {
    color: var(--red);
    font-size: 1rem;
    flex-shrink: 0;
}

/* === WHATSAPP FLOAT === */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: waFloat 3s infinite;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}

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

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .package-card.popular {
        transform: none;
    }

    .package-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-grid {
        flex-direction: column;
        gap: 16px;
    }
    
    .step-connector {
        transform: rotate(90deg);
    }

    .step-card {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 90px 24px 30px;
        gap: 6px;
        transition: right 0.4s ease;
        z-index: 999;
        border-left: 1px solid rgba(210,184,138,0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-toggle {
        display: flex;
        z-index: 1000;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-link {
        display: block;
        width: 100%;
        text-align: left;
        padding: 14px 18px;
        font-size: 1rem;
        border-radius: 10px;
        cursor: pointer;
    }

    .nav-link:hover {
        background: rgba(210,184,138,0.12);
        color: var(--gold);
        padding-left: 24px;
    }

    .nav-cta {
        margin-top: 10px;
        text-align: center;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }

    .stat-item {
        min-width: 80px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 0 10px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: 1;
    }

    .order-form-wrapper {
        padding: 24px 16px;
    }

    .form-group select {
        background-position: right 12px center;
        padding-right: 36px;
    }

    .btn-submit {
        width: 100%;
        max-width: 100%;
        padding: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .modal {
        margin: 10px;
    }

    .modal-footer {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .btn-lg {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .section {
        padding: 70px 0;
    }

    .order-form-wrapper {
        padding: 20px 14px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px;
    }
}
