/* ==========================================================================
   AMANA TRUST INTERNATIONAL - STYLESHEET
   Aesthetics: Deep Luxury Emerald & Metallic Warm Gold Glassmorphism
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-dark: #03140f;
    --emerald-deep: #05241b;
    --emerald-mid: #0a3a2c;
    --emerald-light: #135240;
    --emerald-glass: rgba(5, 34, 27, 0.78);
    --card-glass: rgba(10, 48, 38, 0.65);
    --border-glass: rgba(212, 175, 55, 0.28);
    --border-glass-hover: rgba(243, 229, 171, 0.65);
    
    /* Gold Gradients & Accents */
    --gold-primary: #d4af37;
    --gold-light: #f5e49b;
    --gold-dark: #aa7c11;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --gold-gradient: linear-gradient(135deg, #f5e49b 0%, #d4af37 40%, #aa7c11 100%);
    --gold-gradient-hover: linear-gradient(135deg, #ffffff 0%, #f5e49b 50%, #d4af37 100%);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #d8e5e1;
    --text-muted: #95b3aa;
    --text-gold: #f3e5ab;

    /* Fonts */
    --font-heading: 'Cinzel', 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Transitions & Shadows */
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-gold: 0 10px 30px -10px rgba(212, 175, 55, 0.3);
    --shadow-deep: 0 20px 50px rgba(0, 0, 0, 0.7);
}

/* Reset & Base Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   BACKGROUND WRAPPER & COVER INTEGRATION
   ========================================================================== */

.bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.bg-image {
    position: absolute;
    top: -2%;
    left: -2%;
    width: 104%;
    height: 104%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: brightness(0.85) contrast(1.08) saturate(1.1);
    transform: scale(1);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
    will-change: transform, filter;
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 30%, 
        rgba(3, 20, 15, 0.65) 0%, 
        rgba(3, 20, 15, 0.88) 60%, 
        rgba(2, 12, 9, 0.96) 100%
    );
    backdrop-filter: blur(14px);
    transition: opacity 0.8s ease, backdrop-filter 0.8s ease;
}

/* Ambient Floating Glow Orbs */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    opacity: 0.35;
    animation: floatGlow 12s infinite alternate ease-in-out;
}

.glow-1 {
    top: 10%;
    left: 20%;
    width: 400px;
    height: 400px;
    background: var(--gold-primary);
}

.glow-2 {
    bottom: 10%;
    right: 20%;
    width: 500px;
    height: 500px;
    background: #006b52;
    animation-delay: -6s;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -40px) scale(1.15); }
}

/* Cover Fullscreen Mode Active State */
body.cover-mode-active .bg-overlay {
    opacity: 0;
    backdrop-filter: blur(0px);
}

body.cover-mode-active .bg-image {
    filter: brightness(1) contrast(1) saturate(1);
    transform: scale(1.02);
}

body.cover-mode-active .main-wrapper,
body.cover-mode-active .quick-controls {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

body.cover-mode-active .exit-cover-btn {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Exit Cover Mode Button */
.exit-cover-btn {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    z-index: 100;
    background: var(--gold-gradient);
    color: var(--bg-dark);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), var(--shadow-gold);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.exit-cover-btn:hover {
    background: var(--gold-gradient-hover);
    transform: translateX(-50%) scale(1.05);
}

/* ==========================================================================
   QUICK FLOATING CONTROLS
   ========================================================================== */

.quick-controls {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    display: flex;
    gap: 0.75rem;
    transition: var(--transition-smooth);
}

.control-btn {
    background: rgba(5, 34, 27, 0.85);
    color: var(--text-gold);
    border: 1px solid var(--border-glass);
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: var(--transition-fast);
}

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

.control-btn.gold-btn {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    border: none;
    font-weight: 700;
}

.control-btn.gold-btn:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-2px) scale(1.03);
}

/* ==========================================================================
   MAIN LAYOUT WRAPPER & CONTAINER
   ========================================================================== */

.main-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   SITE HEADER & BRAND LOGO
   ========================================================================== */

.site-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    width: 100%;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    position: relative;
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.8); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-emblem {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle, #175e4c 0%, #062a22 100%);
    border: 2px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.emblem-icon {
    font-size: 2.2rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.emblem-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.3) 50%, transparent 55%);
    transform: rotate(30deg);
    animation: shineSweep 5s infinite;
}

@keyframes shineSweep {
    0% { transform: translateX(-100%) rotate(30deg); }
    30%, 100% { transform: translateX(100%) rotate(30deg); }
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 4px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.brand-subtitle {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 12px;
    color: var(--text-gold);
    margin-top: 0.2rem;
    opacity: 0.9;
}

.gold-separator {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    width: 240px;
}

.gold-separator .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.gold-separator .star {
    color: var(--gold-primary);
    font-size: 0.75rem;
}

/* ==========================================================================
   HERO CARD SECTION & GLASSMORPHISM
   ========================================================================== */

.content-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.hero-card {
    background: var(--emerald-glass);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-deep), 0 0 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 1.2rem;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-gold);
    max-width: 700px;
    margin: 0 auto 2.2rem;
    position: relative;
    display: inline-block;
}

.quote-icon-sm {
    font-size: 0.8rem;
    color: var(--gold-primary);
    opacity: 0.6;
    margin: 0 0.3rem;
}

/* ==========================================================================
   COUNTDOWN TIMER
   ========================================================================== */

.countdown-section {
    margin: 2.2rem 0;
}

.section-micro-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.countdown-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.time-block {
    background: rgba(3, 20, 15, 0.7);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    min-width: 100px;
    padding: 1.2rem 0.8rem;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.5), 0 5px 15px rgba(0,0,0,0.3);
    transition: var(--transition-fast);
}

.time-block:hover {
    border-color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.5), var(--shadow-gold);
}

.time-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.time-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
}

.time-colon {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
    animation: colonBlink 1.5s infinite;
}

@keyframes colonBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ==========================================================================
   NOTIFY / SUBSCRIPTION FORM
   ========================================================================== */

.notify-card {
    background: rgba(3, 20, 15, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: 18px;
    padding: 1.8rem 2rem;
    max-width: 650px;
    margin: 0 auto;
}

.notify-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    margin-bottom: 1.2rem;
}

.bell-icon {
    font-size: 1.8rem;
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.12);
    padding: 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.notify-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
}

.notify-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.notify-form {
    width: 100%;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.input-icon {
    position: absolute;
    left: 1.2rem;
    color: var(--gold-primary);
    font-size: 1rem;
}

.input-group input {
    flex: 1;
    background: rgba(5, 34, 27, 0.9);
    border: 1px solid var(--border-glass);
    padding: 0.9rem 1rem 0.9rem 3rem;
    border-radius: 50px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.input-group input::placeholder {
    color: var(--text-muted);
}

.input-group input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.submit-btn {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.9rem 1.8rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.submit-btn:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.notify-success {
    margin-top: 1rem;
    background: rgba(23, 107, 82, 0.4);
    border: 1px solid #176b52;
    color: #6ee7b7;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-align: left;
    animation: fadeIn 0.4s ease-in-out;
}

/* ==========================================================================
   6 VALUES / PILLARS SECTION
   ========================================================================== */

.values-section {
    text-align: center;
}

.section-header {
    margin-bottom: 2rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold-light);
    margin-bottom: 0.4rem;
}

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

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--emerald-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(15px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition-fast);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), var(--shadow-gold);
}

.value-card:hover::after {
    opacity: 1;
}

.value-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: radial-gradient(circle, #0e4737 0%, #05241b 100%);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold-primary);
    margin-bottom: 1.2rem;
    transition: var(--transition-fast);
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.5);
}

.value-card:hover .value-icon-box {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    border-color: transparent;
    transform: scale(1.1) rotate(4deg);
    box-shadow: var(--shadow-gold);
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.value-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   SIGNATURE QUOTE CARD
   ========================================================================== */

.quote-card {
    background: linear-gradient(135deg, rgba(5, 34, 27, 0.9) 0%, rgba(10, 58, 44, 0.8) 100%);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    text-align: center;
    backdrop-filter: blur(15px);
    position: relative;
    box-shadow: var(--shadow-deep);
}

.quote-decor-top {
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-gold);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.quote-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.gold-bold {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 2px;
    color: #ffffff;
}

.signature-motto {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    width: 100%;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold-light);
}

.footer-domain {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-fast);
}

.footer-domain:hover {
    color: var(--gold-primary);
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   CONTACT MODAL
   ========================================================================== */

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(2, 12, 9, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-backdrop.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-card {
    background: var(--emerald-deep);
    border: 1px solid var(--gold-primary);
    border-radius: 24px;
    width: 100%;
    max-width: 550px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), var(--shadow-gold);
    animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-close-btn {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    color: var(--gold-primary);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.8rem;
}

.modal-icon {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.modal-subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-gold);
}

.form-group input,
.form-group textarea {
    background: rgba(3, 20, 15, 0.8);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

.modal-submit-btn {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
    transition: var(--transition-fast);
}

.modal-submit-btn:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.modal-success {
    text-align: center;
    padding: 2rem 1rem;
}

.success-icon {
    font-size: 3.5rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.modal-success h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.modal-success p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.hidden {
    display: none !important;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 900px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .brand-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 640px) {
    .main-wrapper {
        padding: 1.5rem 1rem 3rem;
    }
    
    .quick-controls {
        top: 1rem;
        right: 1rem;
    }
    
    .btn-text {
        display: none;
    }

    .control-btn {
        padding: 0.65rem 0.85rem;
        border-radius: 50%;
    }
    
    .brand-title {
        font-size: 1.9rem;
        letter-spacing: 2px;
    }
    
    .brand-subtitle {
        font-size: 0.85rem;
        letter-spacing: 6px;
    }

    .hero-card {
        padding: 2rem 1.25rem;
        border-radius: 18px;
    }

    .hero-tagline {
        font-size: 1.15rem;
    }

    .countdown-grid {
        gap: 0.4rem;
    }

    .time-block {
        min-width: 68px;
        padding: 0.8rem 0.4rem;
    }

    .time-value {
        font-size: 1.7rem;
    }

    .time-colon {
        font-size: 1.3rem;
    }

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

    .input-group {
        flex-direction: column;
    }

    .input-group input {
        width: 100%;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }

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

    .quote-card {
        padding: 1.8rem 1.25rem;
    }

    .quote-text {
        font-size: 1.05rem;
    }
}
