/* =========================================================
   GLS India Summit — Coming Soon Landing Page
   Color palette (drawn from GLS brand):
     - Deep navy / midnight base
     - GLS crimson accent
     - Warm gold for highlights
     - Soft off-white for text
   ========================================================= */

:root {
    --bg-base: #0a0e1c;
    --bg-deep: #060915;
    --bg-mid: #101632;

    --accent-red: #c8102e;      /* GLS crimson */
    --accent-red-soft: #e63951;
    --accent-gold: #d4a24c;     /* subtle gold highlight */

    --text-primary: #f4f5f8;
    --text-secondary: #a9b0c3;
    --text-muted: #6c7591;

    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --surface: rgba(255, 255, 255, 0.03);
    --surface-hover: rgba(255, 255, 255, 0.06);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;

    --shadow-glow: 0 20px 60px -20px rgba(200, 16, 46, 0.35);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html, body {
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* =========================================================
   Background layers
   ========================================================= */
.bg-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.bg-gradient {
    background:
        radial-gradient(ellipse at 20% 0%, #1a2145 0%, transparent 55%),
        radial-gradient(ellipse at 80% 100%, #2a1030 0%, transparent 55%),
        linear-gradient(180deg, var(--bg-base) 0%, var(--bg-deep) 100%);
}

.bg-glow-1 {
    background: radial-gradient(circle at 15% 20%, rgba(200, 16, 46, 0.18) 0%, transparent 40%);
    animation: floatGlow 22s ease-in-out infinite;
}

.bg-glow-2 {
    background: radial-gradient(circle at 85% 80%, rgba(212, 162, 76, 0.09) 0%, transparent 45%);
    animation: floatGlow 28s ease-in-out infinite reverse;
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.9; }
    50% { transform: translate(30px, -20px) scale(1.1); opacity: 1; }
}

.bg-grid {
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.bg-noise {
    opacity: 0.4;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.06 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
    mix-blend-mode: overlay;
}

/* =========================================================
   Layout
   ========================================================= */
.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 32px 40px;
    position: relative;
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    animation: fadeDown 0.9s ease-out both;
}

.logo-wrap {
    display: inline-flex;
    align-items: center;
}

.logo {
    height: 56px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.4));
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.hero-inner {
    max-width: 860px;
    width: 100%;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    background: var(--surface);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 32px;
    animation: fadeUp 1s ease-out 0.1s both;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
    box-shadow: 0 0 12px var(--accent-gold);
}

.eyebrow-text {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 500;
}

.headline {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6.4vw, 5.2rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: 28px;
    animation: fadeUp 1s ease-out 0.25s both;
}

.headline .accent {
    color: var(--accent-red-soft);
    font-style: italic;
    font-weight: 600;
    background: linear-gradient(135deg, var(--accent-red-soft) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.subhead {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 44px;
    line-height: 1.7;
    animation: fadeUp 1s ease-out 0.4s both;
}

/* =========================================================
   Status card
   ========================================================= */
.status-card {
    display: inline-flex;
    align-items: stretch;
    gap: 0;
    padding: 20px 32px;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin-bottom: 44px;
    animation: fadeUp 1s ease-out 0.55s both;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.status-item {
    padding: 0 26px;
    text-align: left;
}

.status-item:first-child { padding-left: 0; }
.status-item:last-child { padding-right: 0; }

.status-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 6px;
}

.status-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.status-divider {
    width: 1px;
    background: var(--border-strong);
    margin: 4px 0;
}

.pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-red-soft);
    box-shadow: 0 0 0 0 var(--accent-red-soft);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(230, 57, 81, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(230, 57, 81, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 57, 81, 0); }
}

/* =========================================================
   Contact block (WhatsApp + Call buttons)
   ========================================================= */
.contact-block {
    max-width: 600px;
    margin: 0 auto;
    animation: fadeUp 1s ease-out 0.7s both;
}

.contact-label {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-buttons {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 22px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    outline: none;
}

.btn svg {
    transition: transform 0.3s ease;
}

.btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(230, 57, 81, 0.35);
}

/* Primary — WhatsApp / crimson gradient */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-soft) 100%);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 70px -18px rgba(200, 16, 46, 0.6);
}

.btn-primary:hover svg {
    transform: scale(1.08);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Secondary — glass / outline */
.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-strong);
    color: var(--text-primary);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-secondary:active {
    transform: translateY(0);
}

.contact-note {
    font-size: 12.5px;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.contact-note.success {
    color: #4ade80;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
    padding-top: 40px;
    border-top: 1px solid var(--border);
    animation: fadeUp 1s ease-out 1s both;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-tag {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--text-secondary);
    font-style: italic;
    letter-spacing: 0.3px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.socials {
    display: flex;
    gap: 10px;
}

.social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    background: var(--surface);
    transition: all 0.3s ease;
}

.social:hover {
    color: white;
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: translateY(-2px);
}

.copyright {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

/* =========================================================
   Animations
   ========================================================= */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
    .page { padding: 24px 24px; }
    .status-card {
        flex-direction: column;
        gap: 16px;
        padding: 22px 26px;
        width: 100%;
        max-width: 360px;
    }
    .status-item {
        padding: 0;
        text-align: center;
    }
    .status-value {
        justify-content: center;
    }
    .status-divider {
        width: 60%;
        height: 1px;
        margin: 0 auto;
    }
    .hide-mobile { display: none; }
}

@media (max-width: 640px) {
    .page { padding: 20px 18px; }
    .logo { height: 44px; }
    .hero { padding: 20px 0; }

    .headline {
        margin-bottom: 22px;
    }
    .subhead {
        margin-bottom: 36px;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 340px;
    }
    .btn {
        justify-content: center;
        width: 100%;
        padding: 15px 24px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }
    .footer-right {
        flex-direction: column;
        gap: 14px;
    }
}

@media (max-width: 380px) {
    .eyebrow-text { font-size: 11px; letter-spacing: 2px; }
    .status-card { padding: 20px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
