/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-main: #08090e;
    --bg-surface: #0e111a;
    --bg-surface-alt: #161a29;
    --border-color: rgba(255, 255, 255, 0.06);
    --border-color-hover: rgba(99, 102, 241, 0.25);
    
    --color-primary: #4f46e5;      /* Indigo */
    --color-primary-light: #6366f1;
    --color-secondary: #06b6d4;    /* Cyan */
    --color-secondary-light: #22d3ee;
    --color-accent: #8b5cf6;       /* Violet */
    --color-whatsapp: #25d366;     /* WhatsApp Green */
    --color-whatsapp-hover: #20ba5a;

    /* Text Colors */
    --text-white: #ffffff;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    /* Fonts */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Shadows & Glows */
    --glow-primary: 0 0 20px rgba(79, 70, 229, 0.2);
    --glow-secondary: 0 0 20px rgba(6, 182, 212, 0.2);
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.7);

    /* System Constants */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --max-width: 1200px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

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

section {
    padding: 60px 0;
    position: relative;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
    color: var(--text-white);
}

p {
    color: var(--text-muted);
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 36px auto;
}

.section-header p {
    font-size: 1.1rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-secondary-light);
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* ==========================================================================
   BUTTONS & FORMS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: var(--text-white);
    box-shadow: var(--glow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    border: 1px solid var(--border-color);
}

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

.btn-whatsapp-header {
    background: var(--color-whatsapp);
    color: var(--text-white);
    padding: 8px 18px;
    font-size: 0.9rem;
    border-radius: 6px;
}

.btn-whatsapp-header:hover {
    background: var(--color-whatsapp-hover);
    transform: translateY(-1px);
}

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

/* ==========================================================================
   ANNOUNCEMENT BANNER
   ========================================================================== */
.announcement-banner {
    background: linear-gradient(90deg, rgba(79, 70, 229, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 0;
    position: relative;
    z-index: 101;
}

.banner-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    font-weight: 500;
}

.banner-badge {
    background: var(--color-secondary);
    color: var(--bg-main);
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.72rem;
}

.banner-text {
    color: var(--text-light);
}

.banner-link {
    color: var(--color-secondary-light);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.banner-link:hover {
    color: var(--text-white);
}

.banner-whatsapp-btn {
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.25);
    color: var(--color-whatsapp);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.banner-whatsapp-btn:hover {
    background: var(--color-whatsapp);
    color: var(--text-white);
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .banner-container {
        justify-content: center;
        text-align: center;
        gap: 8px;
    }
    .banner-left {
        justify-content: center;
    }
    .banner-right {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 4px;
    }
}

/* ==========================================================================
   HEADER NAVIGATION
   ========================================================================== */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(12px) saturate(180%);
    background-color: rgba(8, 9, 14, 0.75);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-white);
    flex-shrink: 0;
}

.logo span span {
    background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
}

.nav-item:hover, .nav-item.active {
    color: var(--text-white);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 18px;
    cursor: pointer;
}

.hamburger .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ==========================================================================
   AMBIENT BACKGROUND GLOWS
   ========================================================================== */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
}

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

.glow-2 {
    top: 20%;
    right: 5%;
    width: 450px;
    height: 450px;
    background-color: var(--color-secondary);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 120px 0 80px 0;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary-light);
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-secondary-light);
    box-shadow: 0 0 8px var(--color-secondary-light);
    animation: pulse 1.8s infinite alternate;
}

.hero-title {
    font-size: clamp(2.6rem, 6.5vw, 4.75rem);
    margin-bottom: 20px;
    color: var(--text-white);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hero-title .gradient-text {
    display: block;
    background: linear-gradient(135deg, #f97316 0%, #fb923c 30%, #e11d48 70%, #f43f5e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 24px rgba(249, 115, 22, 0.35));
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    max-width: 680px;
    margin: 0 auto 40px auto;
    color: #94a3b8;
    line-height: 1.75;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 48px;
    max-width: 700px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-white) 30%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dim);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    background-color: rgba(14, 17, 26, 0.4);
    border-top: 1px solid var(--border-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 28px 24px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    opacity: 0;
    transition: var(--transition-normal);
}

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

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

/* New Premium Service Card Layout */
.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.service-emoji-icon {
    font-size: 2.2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    flex-shrink: 0;
}

.service-stat {
    text-align: right;
}

.service-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.service-stat-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 3px;
}

.service-title {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 4px;
}

.service-tagline {
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 14px !important;
}

.service-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 18px !important;
}

.service-features {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    flex: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
}

.service-features svg {
    flex-shrink: 0;
}

.service-enquire-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.88rem;
    font-weight: 700;
    margin-top: auto;
    transition: opacity 0.2s;
}

.service-enquire-link:hover {
    opacity: 0.75;
}

/* Legacy icon (hidden now, kept for compatibility) */
.service-icon {
    display: none;
}

/* ==========================================================================
   TECHNOLOGIES SECTION
   ========================================================================== */
.technologies-section {
    background-color: rgba(14, 17, 26, 0.2);
    border-top: 1px solid var(--border-color);
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 24px;
}

.domain-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 36px 32px;
    transition: var(--transition-normal);
    position: relative;
}

.domain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    opacity: 0;
    transition: var(--transition-normal);
}

.it-domain::before {
    background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary-light) 100%);
}

.non-it-domain::before {
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-primary-light) 100%);
}

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

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

.domain-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.domain-icon-glow {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
}

.it-domain .domain-icon-glow {
    color: var(--color-secondary-light);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}

.non-it-domain .domain-icon-glow {
    color: var(--color-accent);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.1);
}

.domain-card-header h3 {
    font-size: 1.35rem;
    color: var(--text-white);
    font-family: var(--font-heading);
}

.domain-intro {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition-fast);
    cursor: default;
}

.tech-item:hover {
    border-color: var(--color-primary-light);
    color: var(--text-white);
    background: rgba(99, 102, 241, 0.03);
    transform: scale(1.02);
}

.tech-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

/* ==========================================================================
   PROFESSIONAL CERTIFICATIONS SECTION
   ========================================================================== */
.certifications-section {
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-color);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.cert-card {
    background: linear-gradient(145deg, var(--bg-surface), rgba(14, 17, 26, 0.7));
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 32px 28px;
    transition: var(--transition-normal);
    position: relative;
    z-index: 1;
}

.cert-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--border-radius-md);
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-secondary-light));
    z-index: -1;
    opacity: 0;
    transition: var(--transition-normal);
}

.cert-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(99, 102, 241, 0.15);
}

.cert-card:hover::after {
    opacity: 0.4;
}

.cert-icon-container {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.cert-card h3 {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.cert-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.cert-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cert-bullet {
    width: 5px;
    height: 5px;
    background-color: var(--color-secondary-light);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-secondary-light);
}

/* ==========================================================================
   EXPERTS SECTION
   ========================================================================== */
.team-section {
    border-top: 1px solid var(--border-color);
}

.team-tabs-container {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 40px;
    padding-bottom: 8px;
}

.team-tabs-container::-webkit-scrollbar {
    height: 6px;
}

.team-tabs-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 3px;
}

.team-tabs-container::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--color-secondary-light) 0%, var(--color-primary-light) 100%);
    border-radius: 3px;
    box-shadow: 0 0 6px rgba(34, 211, 238, 0.3);
}

.team-tabs {
    display: flex;
    gap: 8px;
    min-width: max-content;
    padding: 4px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 30px;
}

.tab-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    color: var(--text-white);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    min-height: unset;
    align-items: stretch;
}

.expert-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 14px 16px;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: fadeIn 0.4s ease forwards;
}

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

.expert-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.expert-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-white);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.expert-meta h4 {
    font-size: 0.9rem;
    color: var(--text-white);
}

.expert-meta p {
    font-size: 0.73rem;
    color: var(--color-secondary-light);
    font-weight: 500;
}

.expert-company {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0;
    text-align: center;
}

.company-logo-text {
    color: var(--text-white);
    font-weight: 700;
}

.expert-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==========================================================================
   SETUP GUIDE SECTION
   ========================================================================== */
.setup-section {
    background-color: rgba(14, 17, 26, 0.4);
    border-top: 1px solid var(--border-color);
}

.setup-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: flex-start;
}

.setup-steps-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.setup-nav-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
}

.setup-nav-btn:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.setup-nav-btn.active {
    background: rgba(99, 102, 241, 0.04);
    border-color: var(--color-primary-light);
    box-shadow: inset 0 0 12px rgba(99, 102, 241, 0.1);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dim);
}

.setup-nav-btn.active .step-num {
    color: var(--color-secondary-light);
}

.step-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

.setup-nav-btn.active .step-title {
    color: var(--text-white);
}

.setup-details-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-card);
    animation: fadeIn 0.4s ease forwards;
}

.setup-details-card h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 8px;
}

.setup-subtitle {
    font-size: 0.85rem;
    color: var(--color-secondary-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.setup-details-card p {
    font-size: 0.98rem;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.setup-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.info-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 18px;
}

.info-item h4 {
    font-size: 0.9rem;
    color: var(--text-white);
    margin-bottom: 6px;
}

.info-item p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.setup-action-footer {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.setup-footer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 24px 32px;
    border-radius: var(--border-radius-md);
    margin-top: 40px;
    gap: 24px;
}

.setup-footer-link p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */
.process-section {
    border-top: 1px solid var(--border-color);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    opacity: 0.3;
    z-index: 1;
}

.timeline-step {
    position: relative;
    z-index: 2;
}

.step-number-glow {
    width: 72px;
    height: 72px;
    border-radius: var(--border-radius-md);
    background-color: var(--bg-surface);
    border: 1.5px solid var(--border-color);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--text-white);
    transition: var(--transition-normal);
}

.timeline-step:hover .step-number-glow {
    border-color: var(--color-secondary);
    color: var(--color-secondary-light);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.25);
    transform: translateY(-2px);
}

.timeline-content h3 {
    font-size: 1.15rem;
    color: var(--text-white);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.9rem;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-section {
    background-color: rgba(14, 17, 26, 0.4);
    border-top: 1px solid var(--border-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
    transition: var(--transition-slow);
}

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

.pricing-card:hover .card-glow {
    opacity: 1.5;
}

.pricing-card.popular {
    border: 2px solid var(--color-primary-light);
    box-shadow: 0 10px 40px -15px rgba(79, 70, 229, 0.3);
}

.popular-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.pricing-header {
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 16px;
}

.price-container {
    display: flex;
    align-items: baseline;
    margin-bottom: 16px;
}

.currency {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-right: 4px;
}

.price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.period {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-left: 6px;
    font-weight: 500;
}

.pricing-header p {
    font-size: 0.9rem;
}

.pricing-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    margin-top: auto;
}

.pricing-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.check-icon {
    color: var(--color-secondary-light);
    flex-shrink: 0;
}

.pricing-cta {
    width: 100%;
}

/* ==========================================================================
   REVIEWS SECTION
   ========================================================================== */
.reviews-section {
    border-top: 1px solid var(--border-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.review-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 32px;
    transition: var(--transition-normal);
}

.review-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.stars {
    font-size: 0.95rem;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 24px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 18px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-white);
    flex-shrink: 0;
}

.reviewer-name {
    font-size: 0.95rem;
    color: var(--text-white);
}

.reviewer-title {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* ==========================================================================
   WHATSAPP COMMUNITY SECTION
   ========================================================================== */
.community-banner-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
}

.community-card {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.06) 0%, rgba(6, 182, 212, 0.06) 100%);
    border: 1px solid rgba(37, 211, 102, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.community-content h3 {
    font-size: 1.75rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.community-content p {
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto 28px auto;
}

.btn-whatsapp-mid {
    background-color: var(--color-whatsapp);
    color: var(--text-white);
    padding: 14px 32px;
}

.btn-whatsapp-mid:hover {
    background-color: var(--color-whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

/* ==========================================================================
   FAQS SECTION
   ========================================================================== */
.faq-section {
    background-color: rgba(14, 17, 26, 0.4);
    border-top: 1px solid var(--border-color);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-trigger {
    width: 100%;
    padding: 24px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: none;
    color: var(--text-white);
    font-size: 1.05rem;
    font-weight: 600;
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--text-muted);
    transition: var(--transition-fast);
}

.faq-icon::before {
    top: 9px;
    left: 2px;
    width: 16px;
    height: 2px;
}

.faq-icon::after {
    top: 2px;
    left: 9px;
    width: 2px;
    height: 16px;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon::before {
    background-color: var(--color-secondary-light);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-panel {
    max-height: 1000px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-content {
    padding: 0 24px 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 16px;
}

.faq-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    border-top: 1px solid var(--border-color);
}

.contact-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-card);
}

.glow-contact {
    bottom: -20%;
    left: -20%;
    width: 350px;
    height: 350px;
    background-color: var(--color-primary);
}

.contact-info-panel {
    padding: 56px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.01) 0%, rgba(99, 102, 241, 0.02) 100%);
    border-right: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
}

.contact-info-panel h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-info-panel p {
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.item-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary-light);
}

.contact-item:hover .item-icon {
    border-color: var(--border-color-hover);
    color: var(--text-white);
}

.item-text span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    font-weight: 600;
}

.item-text a {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
}

.item-text a:hover {
    color: var(--color-secondary-light);
}

.contact-form-panel {
    padding: 56px;
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background-color: var(--bg-surface-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    color: var(--text-white);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--color-primary-light);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.15);
}

.form-group textarea {
    resize: none;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 280px;
}

.footer-links h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 2px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
}

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

/* ==========================================================================
   FLOATING WHATSAPP WIDGET
   ========================================================================== */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-whatsapp);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 99;
    transition: var(--transition-normal);
    animation: pulseGlow 2s infinite;
}

.whatsapp-floating:hover {
    background-color: var(--color-whatsapp-hover);
    transform: scale(1.1);
}

.instagram-floating {
    position: fixed;
    bottom: 92px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 99;
    transition: var(--transition-normal);
    animation: pulseGlowInsta 2s infinite;
}

.instagram-floating:hover {
    transform: scale(1.1);
}

@keyframes pulseGlowInsta {
    0% { box-shadow: 0 0 0 0 rgba(214, 36, 159, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(214, 36, 159, 0); }
    100% { box-shadow: 0 0 0 0 rgba(214, 36, 159, 0); }
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.5; }
    100% { transform: scale(1.05); opacity: 1; }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (min-width: 992px) and (max-width: 1200px) {
    .nav-container {
        padding: 16px 16px;
        gap: 12px;
    }
    .nav-menu {
        gap: 12px;
    }
    .nav-item {
        font-size: 0.88rem;
    }
    .nav-actions {
        gap: 8px;
    }
}

@media (max-width: 991px) {
    .header {
        padding: 8px 0;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-container {
        padding: 12px 16px;
        gap: 8px;
        overflow: hidden;
    }

    .logo {
        font-size: 1.15rem;
        flex-shrink: 0;
        min-width: 0;
    }

    .nav-actions {
        gap: 8px;
        flex-shrink: 0;
        min-width: 0;
    }

    /* On mobile: hide the weather label text, show only the icon */
    .weather-widget #weather-temp {
        display: none;
    }

    .weather-widget {
        padding: 6px 10px;
        gap: 0;
        min-width: unset;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-main);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        gap: 24px;
        transition: var(--transition-normal);
        border-top: 1px solid var(--border-color);
        z-index: 99;
    }

    .nav-menu.open {
        left: 0;
    }

    .nav-item {
        font-size: 1.15rem;
        width: 100%;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--border-color);
    }

    .setup-layout {
        grid-template-columns: 1fr;
    }

    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 70px;
    }

    section {
        padding: 70px 0;
    }

    .hero-section {
        padding: 80px 0;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-ctas .btn {
        width: 100%;
        max-width: 320px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-top: 36px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-timeline::before {
        display: none;
    }

    .timeline-step {
        display: flex;
        gap: 20px;
        align-items: flex-start;
        text-align: left;
    }

    .step-number-glow {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .setup-details-card {
        padding: 24px;
    }

    .setup-footer-link {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-info-panel, .contact-form-panel {
        padding: 32px 24px;
    }

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

    .domain-card {
        padding: 28px 20px;
    }

    .cert-card {
        padding: 24px 20px;
    }
}

/* ==========================================================================
   SUCCESS GALLERY & LIGHTBOX MODAL
   ========================================================================== */
.gallery-section {
    border-top: 1px solid var(--border-color);
}

.gallery-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.gallery-tabs {
    display: flex;
    gap: 8px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 30px;
}

.gallery-tab-btn {
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-tab-btn:hover {
    color: var(--text-white);
}

.gallery-tab-btn.active {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.gallery-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    min-height: 250px;
}

.gallery-grid::-webkit-scrollbar {
    display: block;
    height: 6px;
}

.gallery-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 3px;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--color-secondary-light) 0%, var(--color-primary-light) 100%);
    border-radius: 3px;
    box-shadow: 0 0 6px rgba(34, 211, 238, 0.3);
}

.gallery-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 16px;
    transition: var(--transition-normal);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.4s ease forwards;
    position: relative;
    overflow: hidden;
}

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

.gallery-img-wrapper {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
    aspect-ratio: 4/3;
    background: rgba(0, 0, 0, 0.2);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform var(--transition-normal);
}

.gallery-card:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-card h4 {
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 6px;
}

.gallery-card p {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(8, 9, 14, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    animation: zoom 0.3s ease;
}

@keyframes zoom {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: var(--text-muted);
    font-size: 40px;
    font-weight: bold;
    transition: var(--transition-fast);
    cursor: pointer;
    user-select: none;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--text-white);
    text-decoration: none;
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
    text-align: center;
    color: var(--text-muted);
    padding: 16px 0;
    font-size: 0.95rem;
}

/* ==========================================================================
   ADMIN PORTAL MODALS & DASHBOARD
   ========================================================================== */
.admin-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(8, 9, 14, 0.9);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.admin-modal.open {
    display: flex;
}

.admin-modal-content {
    background-color: var(--bg-surface);
    border: 1.5px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--border-radius-lg);
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(99, 102, 241, 0.1);
    animation: zoom 0.3s ease;
    margin: 20px auto;
}

.admin-modal-content.login-box {
    width: 90%;
    max-width: 420px;
    padding: 40px;
    text-align: center;
}

.admin-modal-content.login-box h3 {
    margin-bottom: 8px;
    font-size: 1.35rem;
    color: var(--text-white);
}

.admin-modal-content.login-box p {
    font-size: 0.9rem;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.admin-modal-content.dashboard-box {
    width: 95%;
    max-width: 880px;
    padding: 30px 40px 40px 40px;
    height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.admin-modal-content.dashboard-box h3 {
    font-size: 1.6rem;
    color: var(--text-white);
    margin-bottom: 4px;
}

.dashboard-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.admin-modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: var(--text-muted);
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-fast);
}

.admin-modal-close:hover {
    color: var(--text-white);
}

.admin-dashboard-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.admin-upload-form-panel h4, .admin-manage-panel h4 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 20px;
    border-left: 3px solid var(--color-secondary);
    padding-left: 10px;
}

.admin-items-list {
    max-height: 380px;
    overflow-y: auto;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 10px 14px;
    gap: 16px;
    min-width: 0;
}

.admin-item-info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1;
}

.admin-item-thumb {
    width: 44px;
    height: 33px;
    border-radius: 4px;
    object-fit: cover;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.admin-item-text {
    min-width: 0;
    flex: 1;
}

.admin-item-text h5 {
    font-size: 0.9rem;
    color: var(--text-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-item-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--color-secondary-light);
}

.btn-delete-item {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-delete-item:hover {
    background: #ef4444;
    color: var(--text-white);
    border-color: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

.btn-order-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-order-item:hover:not(:disabled) {
    background: var(--color-primary-light);
    border-color: var(--color-primary-light);
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.3);
}

.admin-items-list::-webkit-scrollbar {
    width: 6px;
}
.admin-items-list::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.01);
}
.admin-items-list::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
}

@media (max-width: 768px) {
    .admin-dashboard-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .admin-modal-content.dashboard-box {
        padding: 24px;
    }
}

/* Admin Tabs and Form Grids */
.admin-tab-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    flex-wrap: wrap;
}

.admin-tab-btn {
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
}

.admin-tab-btn:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-color-hover);
}

.admin-tab-btn.active {
    color: var(--text-white);
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: var(--glow-primary);
}

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 12px;
    margin-right: -12px;
}

.admin-tab-content::-webkit-scrollbar {
    width: 6px;
}

.admin-tab-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.01);
    border-radius: 10px;
}

.admin-tab-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.admin-tab-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.15);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   WEATHER-BASED THEMES OVERRIDES
   ========================================================================== */
/* Cold Theme (Winter / Icy) */
body.theme-cold {
    --bg-main: #060913;
    --bg-surface: #0b1122;
    --bg-surface-alt: #131c34;
    --color-primary: #0ea5e9;       /* Ice Blue */
    --color-primary-light: #38bdf8;
    --color-secondary: #06b6d4;     /* Cyan */
    --color-secondary-light: #22d3ee;
    --color-accent: #a5f3fc;        /* Light Ice */
    --glow-primary: 0 0 20px rgba(14, 165, 233, 0.25);
    --glow-secondary: 0 0 20px rgba(6, 182, 212, 0.25);
}

/* Summer Theme (Sunny / Warm) */
body.theme-summer {
    --bg-main: #0d0806;
    --bg-surface: #18100c;
    --bg-surface-alt: #251a14;
    --color-primary: #ea580c;       /* Sun Orange */
    --color-primary-light: #f97316;
    --color-secondary: #e11d48;     /* Warm Rose */
    --color-secondary-light: #fb7185;
    --color-accent: #facc15;        /* Golden Yellow */
    --glow-primary: 0 0 20px rgba(234, 88, 12, 0.25);
    --glow-secondary: 0 0 20px rgba(225, 29, 72, 0.25);
}

/* Spring Theme (Fresh / Floral) */
body.theme-spring {
    --bg-main: #060b08;
    --bg-surface: #0e1811;
    --bg-surface-alt: #18271d;
    --color-primary: #059669;       /* Emerald Green */
    --color-primary-light: #10b981;
    --color-secondary: #c084fc;     /* Blossom Pink/Purple */
    --color-secondary-light: #d8b4fe;
    --color-accent: #34d399;        /* Mint */
    --glow-primary: 0 0 20px rgba(5, 150, 105, 0.25);
    --glow-secondary: 0 0 20px rgba(192, 132, 252, 0.25);
}

/* Weather Widget Widget */
.weather-widget {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.weather-widget:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-color-hover);
    color: var(--text-white);
}

.weather-icon {
    font-size: 0.95rem;
}



