/* ══════════════════════════════════════════
   THE WHOLE PARTY — Main Stylesheet
   Dark theme, glassmorphism, party energy
   Sister brand of My Baking Creations
   ══════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
    --pink: #EC268F;
    --pink-dark: #D11F7E;
    --pink-glow: rgba(236, 38, 143, 0.3);
    --yellow: #FFC532;
    --yellow-dark: #E5AF2D;
    --yellow-glow: rgba(255, 197, 50, 0.3);
    --purple: #7c3aed;
    --dark-brown: #622D2B;
    --brown: #C36239;
    --bg-dark: #0d0d1a;
    --bg-mid: #1a1028;
    --bg-blue: #0f1a2e;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.08);
    --text-primary: rgba(255, 255, 255, 0.9);
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.4);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-pill: 50px;
    --transition: all 0.3s ease;
    --transition-bounce: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--bg-dark) 0%, var(--bg-mid) 30%, var(--bg-blue) 60%, var(--bg-dark) 100%);
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

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

ul, ol {
    list-style: none;
}

/* ══════════════════════════════════
   ANIMATED BACKGROUND
══════════════════════════════════ */
.party-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.party-bg canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: drift 25s ease-in-out infinite;
}

.bg-orb.orb-pink {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--pink) 0%, transparent 70%);
    top: -150px; right: -100px;
}

.bg-orb.orb-yellow {
    width: 350px; height: 350px;
    background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
    bottom: -80px; left: -80px;
    animation-delay: -8s;
}

.bg-orb.orb-purple {
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
    top: 40%; left: 30%;
    animation-delay: -16s;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.08); }
    66% { transform: translate(-25px, 25px) scale(0.94); }
}

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0.8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(13, 13, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
}

.nav-logo .mbc {
    color: var(--pink);
}

.nav-logo .party {
    color: var(--yellow);
}

.nav-logo .co {
    color: white;
    font-size: 0.85rem;
    opacity: 0.7;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pink), var(--yellow));
    border-radius: 2px;
}

.nav-cta {
    padding: 0.55rem 1.4rem;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: white !important;
    border-radius: var(--radius-sm);
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    box-shadow: 0 4px 16px var(--pink-glow);
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--pink-glow);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.3rem;
}

/* ══════════════════════════════════
   MAIN CONTENT WRAPPER
══════════════════════════════════ */
.site-main {
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
    text-align: center;
    padding: 7rem 1.5rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(236, 38, 143, 0.15), rgba(255, 197, 50, 0.15));
    border: 1px solid rgba(236, 38, 143, 0.3);
    color: var(--pink);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.5rem 1.4rem;
    border-radius: var(--radius-pill);
    margin-bottom: 2rem;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 15px rgba(236, 38, 143, 0.2); }
    50% { box-shadow: 0 0 30px rgba(236, 38, 143, 0.4); }
}

.hero h1 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2.4rem, 6vw, 4rem);
    color: white;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    white-space: nowrap;
}

.hero h1 .accent {
    background: linear-gradient(135deg, var(--pink), var(--yellow), var(--pink));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-text 4s ease-in-out infinite;
}

@keyframes gradient-text {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

.hero .subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-trust-item svg {
    width: 20px; height: 20px;
    fill: var(--pink);
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* ══════════════════════════════════
   SECTION HEADERS
══════════════════════════════════ */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1.5rem;
}

.section-header .label {
    display: inline-block;
    color: var(--yellow);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.section-header h2 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: white;
    margin-bottom: 0.6rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ══════════════════════════════════
   GLASS CARDS (base)
══════════════════════════════════ */
.glass-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.8rem 1.8rem;
    transition: var(--transition-bounce);
    overflow: hidden;
    transform: perspective(800px) translateZ(0);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--yellow), var(--pink));
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card:hover {
    transform: perspective(800px) translateY(-10px) translateZ(15px);
    border-color: rgba(236, 38, 143, 0.2);
    box-shadow:
        0 15px 40px rgba(236, 38, 143, 0.15),
        0 30px 70px rgba(0, 0, 0, 0.35);
}

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

/* ══════════════════════════════════
   RENTAL / SERVICE CARDS
══════════════════════════════════ */
.card-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1.5rem 4rem;
}

.card-grid .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
}

.card-badge {
    position: absolute;
    top: 1.2rem; right: 1.2rem;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
    color: #1a1028;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 3px 12px var(--yellow-glow);
    z-index: 2;
}

.card-image {
    width: 100%;
    max-width: 260px;
    height: 180px;
    margin: 0 auto 1.4rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-mid) 0%, rgba(124,58,237,0.15) 50%, rgba(236,38,143,0.1) 100%);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glass-card:hover .card-image {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 32px rgba(236, 38, 143, 0.25);
}

.glass-card:hover .card-image img {
    filter: brightness(1.05);
    transition: filter 0.3s ease;
}

.glass-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-align: center;
}

.glass-card .card-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    text-align: center;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 1.4rem;
}

.card-tags span {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--glass-border);
}

.card-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.card-price {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pink), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-price-unit {
    color: var(--text-muted);
    font-size: 0.78rem;
}

/* ══════════════════════════════════
   PACKAGE CARDS
══════════════════════════════════ */
.package-card {
    text-align: left;
}

.package-card h3 {
    text-align: left;
}

.package-card .pkg-subtitle {
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.pkg-list {
    margin-bottom: 1.5rem;
}

.pkg-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    padding: 0.4rem 0;
    line-height: 1.5;
}

.pkg-list li svg {
    width: 18px; height: 18px;
    fill: var(--pink);
    flex-shrink: 0;
    margin-top: 2px;
}

.pkg-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.pkg-price {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

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

.package-card.featured {
    border-color: rgba(236, 38, 143, 0.2);
    background: linear-gradient(160deg, rgba(236, 38, 143, 0.06), rgba(255, 197, 50, 0.03));
}

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.85rem 1.8rem;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: white;
    border: none;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px var(--pink-glow);
    text-decoration: none;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(236, 38, 143, 0.35);
}

.btn-primary:hover::after { left: 100%; }

.btn-primary.full-width {
    display: flex;
    width: 100%;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.85rem 1.8rem;
    background: rgba(255, 255, 255, 0.06);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(236, 38, 143, 0.1);
    border-color: var(--pink);
    transform: translateY(-2px);
}

.btn-secondary.full-width {
    display: flex;
    width: 100%;
}

.btn-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1.1rem 2.5rem;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: white;
    border: none;
    border-radius: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 6px 24px var(--pink-glow);
    position: relative;
    overflow: hidden;
}

.btn-cta-main::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.btn-cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(236, 38, 143, 0.4);
}

.btn-cta-main svg {
    width: 20px; height: 20px;
    fill: currentColor;
}

/* ══════════════════════════════════
   BAKERY BRIDGE SECTION
══════════════════════════════════ */
.bakery-bridge {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
    text-align: center;
}

.bakery-bridge .bridge-card {
    background: linear-gradient(160deg, rgba(255, 197, 50, 0.06), rgba(236, 38, 143, 0.04));
    border: 1px solid rgba(255, 197, 50, 0.15);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.bakery-bridge h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.8rem;
}

.bakery-bridge p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.bakery-bridge .bakery-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--yellow);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.bakery-bridge .bakery-logo-link:hover {
    color: white;
    transform: translateX(4px);
}

.bakery-bridge .bakery-logo-link svg {
    width: 18px; height: 18px;
    fill: currentColor;
}

/* ══════════════════════════════════
   CORPORATE SECTION
══════════════════════════════════ */
.corporate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

.corporate-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition-bounce);
}

.corporate-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 197, 50, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.corporate-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.corporate-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.corporate-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ══════════════════════════════════
   BOTTOM CTA
══════════════════════════════════ */
.bottom-cta {
    text-align: center;
    padding: 4rem 1.5rem 5rem;
    max-width: 600px;
    margin: 0 auto;
}

.bottom-cta h2 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    color: white;
    margin-bottom: 0.8rem;
}

.bottom-cta p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-alt {
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.contact-alt a {
    color: var(--pink);
    text-decoration: none;
    font-weight: 600;
}

.contact-alt a:hover { color: var(--yellow); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.site-footer {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(13, 13, 26, 0.95), rgba(26, 16, 40, 0.95));
    border-top: 1px solid var(--glass-border);
    padding: 3rem 2rem 1.5rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
}

/* Footer coverage column */
.footer-coverage h4 {
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-coverage .footer-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.footer-coverage .footer-areas .area-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.72rem;
    font-weight: 500;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.footer-coverage .footer-areas .area-tag:hover {
    border-color: var(--pink);
    color: white;
}

.footer-brand .footer-logo {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.footer-brand .footer-logo .mbc { color: var(--pink); }
.footer-brand .footer-logo .party { color: var(--yellow); }
.footer-brand .footer-logo .co { color: white; opacity: 0.7; font-size: 0.9rem; }

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-brand .bakery-link {
    color: var(--yellow);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.footer-brand .bakery-link:hover { color: white; }

.footer-col h4 {
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding: 0.3rem 0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-bottom {
    max-width: 1100px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.footer-bottom a {
    color: var(--text-muted);
    font-size: 0.78rem;
    transition: var(--transition);
}

.footer-bottom a:hover { color: white; }

/* Logo Trust Strip */
.footer-trust {
    max-width: 1100px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.footer-trust .trust-label {
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.logo-scroll {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    gap: 3rem;
    animation: scroll-logos 20s linear infinite;
    width: max-content;
}

.logo-track img {
    height: 22px;
    width: auto;
    opacity: 0.4;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.logo-track img:hover {
    opacity: 0.8;
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Credit Line */
.footer-credit {
    color: var(--text-muted);
    font-size: 0.68rem;
    opacity: 0.5;
    margin-top: 0.8rem;
    text-align: center;
}

.footer-credit a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-credit a:hover { color: white; opacity: 1; }

/* ══════════════════════════════════
   CONTACT FORM
══════════════════════════════════ */
.contact-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 1.5rem 5rem;
}

.form-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(236, 38, 143, 0.15);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group select option {
    background: #1a1028;
    color: white;
}

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

/* ══════════════════════════════════
   ABOUT PAGE CONTENT
══════════════════════════════════ */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem 5rem;
}

.about-content .story-block {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
}

.about-content .story-block h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.about-content .story-block p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-content .story-block p:last-child {
    margin-bottom: 0;
}

/* ══════════════════════════════════
   SERVICE AREA SECTION
══════════════════════════════════ */
.service-areas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

.service-areas .area-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.service-areas .area-tag:hover {
    border-color: var(--pink);
    color: white;
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(13, 13, 26, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--glass-border);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 700px) {
    .hero { padding: 5.5rem 1.2rem 1.5rem; }
    .hero h1 { font-size: 2rem; white-space: normal; }
    .card-grid .grid { grid-template-columns: 1fr; }
    .hero-trust { gap: 1rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .corporate-grid { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
    .hero h1 { font-size: 1.7rem; }
    .glass-card { padding: 1.5rem 1.2rem 1.4rem; }
}
