:root {
    --bg-dark: #070707;
    --bg-surface: #141414;
    --bg-surface-elevated: #1a1a1a;
    
    --primary: #FDB515;       /* Mabe Yellow */
    --primary-hover: #e8a204;
    
    --accent-pink: #E1306C;
    --accent-purple: #833AB4;
    --brand-gradient: linear-gradient(135deg, #FDB515 0%, #E1306C 50%, #833AB4 100%);
    
    --text-main: #FAFAFA;
    --text-muted: #A1A1AA;
    
    --border-color: rgba(255, 255, 255, 0.1);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================================================
   Logo Styles
   ========================================================================= */
.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--primary);
}

.logo-brand {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 8px;
    color: var(--primary);
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(253, 181, 21, 0.4);
}

/* =========================================================================
   Hero Section
   ========================================================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 160px;
    background-color: var(--bg-dark);
    /* Subtle radial gradient to mimic dark studio lighting */
    background: radial-gradient(circle at 50% 0%, #1a1a1a 0%, var(--bg-dark) 70%);
}

.hero-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--brand-gradient);
    filter: blur(150px);
    opacity: 0.15;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.coming-soon-block {
    margin-top: 2rem;
}

.coming-soon-block .title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #bbb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.coming-soon-block .subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.coming-soon-block .instruction {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Form Styles */
.notify-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 1.5rem;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.input-group input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 16px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(253, 181, 21, 0.15);
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.btn-primary {
    width: 100%;
    background-color: var(--primary);
    color: #000;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px var(--primary);
}

/* Divider Shape */
.custom-shape-divider-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.custom-shape-divider-bottom .shape-fill {
    fill: var(--bg-surface);
}

/* =========================================================================
   Policies Section
   ========================================================================= */
.policies-section {
    background-color: var(--bg-surface);
    padding: 6rem 0;
    position: relative;
    z-index: 11;
}

.policies-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.policy-card, .contact-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-surface-elevated);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: transform 0.3s ease;
}

.policy-card:hover, .contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.08);
}

.policy-card h3, .contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    line-height: 1.4;
}

.btn-outline {
    display: inline-block;
    padding: 10px 24px;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.contact-info i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* =========================================================================
   Footer Section
   ========================================================================= */
.main-footer {
    background-color: #0b0b0b;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 4rem;
}

.footer-brand .logo-wrapper {
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.footer-brand .logo-text {
    font-size: 0.9rem;
}

.footer-brand .logo-brand {
    font-size: 2rem;
}

.brand-slogan {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.brand-slogan strong {
    color: var(--primary);
    font-weight: 600;
}

.brand-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-address {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.address-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.address-item i {
    color: var(--primary);
    margin-top: 4px;
}

.address-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}

.social-top h4, .whatsapp-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-main);
}

.social-icon:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-whatsapp:hover {
    background: #20BA56;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(37, 211, 102, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* =========================================================================
   Responsive Design
   ========================================================================= */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 120px;
    }
    
    .coming-soon-block .title {
        font-size: 2.2rem;
    }
    
    .notify-form {
        padding: 1.5rem;
    }
    
    .policies-content {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .coming-soon-block .title {
        font-size: 1.8rem;
    }
    
    .logo-brand {
        font-size: 2.5rem;
    }
}

/* =========================================================================
   Policy Pages Specific Styles
   ========================================================================= */
.policy-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 60px;
    background: var(--bg-surface-elevated);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    width: calc(100% - 48px);
}
.policy-header {
    text-align: center;
    margin-bottom: 40px;
}
.policy-header h1 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 10px;
    line-height: 1.2;
}
.policy-content h2 {
    font-family: var(--font-heading);
    color: #fff;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}
.policy-content p, .policy-content ul {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.7;
}
.policy-content ul {
    padding-left: 20px;
}
.policy-content li {
    margin-bottom: 8px;
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    color: var(--primary);
    font-weight: 500;
}
.back-link:hover {
    color: #fff;
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .policy-container {
        padding: 30px 20px;
        margin: 40px auto;
        width: calc(100% - 32px);
    }
    .policy-header h1 {
        font-size: 1.8rem;
    }
    .policy-content h2 {
        font-size: 1.25rem;
    }
}
