:root {
    /* Color Palette - Classic Corporate (No AI vibe) */
    --bg-main: #F4F4F5;
    --bg-card: #FFFFFF;
    --text-primary: #18181B; /* Deep zinc */
    --text-secondary: #52525B;
    --text-tertiary: #A1A1AA;
    
    --accent-blue: #0F2A4A; /* Oxford Navy */
    --accent-blue-light: #1C4473; /* Classic Royal */
    --accent-orange: #A47E3B; /* Matte Gold / Bronze */
    --accent-dark: #09090B; /* Almost Black */
    
    --accent-gradient: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    --button-gradient: linear-gradient(135deg, var(--accent-dark) 0%, #18181B 100%);
    
    --border-color: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 0, 0, 0.2);
    
    --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.08);
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-pill: 100px;
    --radius-bento: 24px;
    --radius-small: 12px;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

/* Glass Header */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(15, 42, 74, 0.75); /* Frosted Oxford Navy glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.5px;
    color: #FFFFFF;
}

.desktop-nav {
    display: flex;
    gap: 40px;
    background: rgba(9, 9, 11, 0.3); /* Semitransparent dark pill */
    padding: 10px 32px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.nav-item {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

.nav-item:hover, .nav-item.active {
    color: var(--accent-orange); /* Matte Gold highlight */
}

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

.lang-pill {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-login {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
}

.btn-premium {
    background: #FFFFFF;
    color: var(--accent-dark);
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-premium i {
    transition: transform 0.3s ease;
}

.btn-premium:hover {
    background: var(--accent-orange);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(164, 126, 59, 0.3);
}

.btn-premium:hover i {
    transform: translateX(4px);
}

/* Hero Section */
.hero-section {
    padding: 220px 40px 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(to bottom, rgba(15, 42, 74, 0.85), rgba(24, 24, 27, 1)), url('hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #FFFFFF;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hero-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.06; /* Subdued opacity to remove the 'AI glow' effect */
    z-index: -1;
}

.blur-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-blue-light);
    top: -100px;
    left: -200px;
}

.blur-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-orange);
    bottom: -100px;
    right: -100px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge {
    background: rgba(164, 126, 59, 0.05);
    color: var(--accent-orange);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(164, 126, 59, 0.15);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 78px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.text-gradient {
    background: linear-gradient(135deg, #EAD6A3 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
}

/* Category Wrapper (Horizontal Scroll) */
.services-showcase {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 100px;
}

.category-wrapper {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.category-track {
    display: inline-flex;
    background: var(--bg-card);
    padding: 8px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    gap: 8px;
}

.cat-btn {
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    background: transparent;
    font-family: var(--font-body);
}

.cat-btn i {
    font-size: 14px;
}

.cat-btn:hover {
    color: var(--text-primary);
}

.cat-btn.active {
    background: var(--accent-dark);
    color: var(--bg-card);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Bento Grid */
.showcase-container {
    background: var(--bg-card);
    border-radius: 40px;
    padding: 60px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.section-title-wrap {
    margin-bottom: 40px;
    text-align: center;
}

.section-title-wrap h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 8px;
    color: var(--accent-dark);
}

.section-title-wrap p {
    color: var(--text-secondary);
    font-size: 16px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(240px, auto);
    gap: 24px;
    transition: opacity 0.3s ease;
}

.bento-grid.fade {
    opacity: 0.2;
    transform: scale(0.98);
}

/* Subcategory Cards */
.bento-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-bento);
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
}

/* Make first card large */
.bento-card.large {
    grid-column: span 2;
    grid-row: span 2;
    background: var(--accent-blue);
    color: white;
    border: none;
}

.bento-card.large .card-title {
    color: white;
}

.bento-card.large .card-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.bento-card.large .card-price {
    color: white;
    font-size: 36px;
}

.bento-card.large .card-icon {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    width: 60px;
    height: 60px;
    font-size: 24px;
    border: none;
}

.bento-card.large .card-arrow {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
}

.bento-card.large:hover {
    box-shadow: 0 20px 40px rgba(15, 42, 74, 0.2);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-small);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent-orange);
    transition: var(--transition-smooth);
}

.card-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0;
    transform: translate(-10px, 10px);
    transition: var(--transition-smooth);
    color: var(--accent-blue);
    border: 1px solid var(--border-color);
}

.bento-card:hover .card-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

.card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    color: var(--accent-dark);
}

.card-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 32px;
}

.card-bottom {
    margin-top: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.card-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.05);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
}

.bento-card.large .card-time {
    background: rgba(255, 255, 255, 0.2);
}

/* Premium Footer */
.premium-footer {
    background: var(--accent-dark);
    color: #FFFFFF;
    padding: 100px 40px 40px;
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand-col .logo-text {
    color: white;
}

.footer-brand-col p {
    color: #AAAAAA;
    margin: 24px 0;
    font-size: 15px;
    line-height: 1.6;
    max-width: 300px;
}

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

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-smooth);
}

.socials a:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateY(-4px);
}

.footer-links-col h3, .footer-newsletter h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-links-col a {
    display: block;
    color: #AAAAAA;
    margin-bottom: 16px;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-links-col a:hover {
    color: var(--accent-blue);
}

.footer-newsletter p {
    color: #AAAAAA;
    font-size: 14px;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-pill);
    padding: 4px;
    border: 1px solid rgba(255,255,255,0.15);
}

.input-group input {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    padding: 12px 20px;
    flex-grow: 1;
    font-family: var(--font-body);
}

.input-group button {
    background: var(--accent-orange);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    transition: var(--transition-smooth);
}

.input-group button:hover {
    background: var(--accent-blue);
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888888;
    font-size: 14px;
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a:hover {
    color: white;
}

/* Toast Notification */
.toast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: var(--accent-dark);
    color: #fff;
    text-align: center;
    border-radius: var(--radius-pill);
    padding: 16px 24px;
    position: fixed;
    z-index: 9999;
    left: 50%;
    bottom: 30px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s, bottom 0.3s, visibility 0.3s;
}

.toast i {
    color: var(--accent-orange);
    font-size: 18px;
}

.toast.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
}

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 0 20px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .showcase-container {
        padding: 32px 20px;
        border-radius: 24px;
    }
    
    .category-track {
        flex-direction: column;
        width: 100%;
    }
    
    .cat-btn {
        justify-content: center;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
