:root {
    /* Color Palette */
    --bg-dark: #e2d8d8;
    --bg-glass: rgba(22, 22, 35, 0.55);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-hover: rgba(255, 255, 255, 0.18);
    
    --primary: #ff6a00;
    --primary-glow: rgba(255, 106, 0, 0.4);
    --secondary: #ffa600;
    --secondary-glow: rgba(255, 166, 0, 0.4);
    --accent: #ff3c00;
    
    --text-main: #e9e9f0;
    --text-muted: #9ca3af;
    --text-white: #ffffff;
    
    --shadow-neon: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light Theme Color Overrides */
.light-theme {
    --bg-dark: #f4f7fc;
    --bg-glass: rgba(255, 255, 255, 0.6);
    --border-glass: rgba(0, 0, 0, 0.08);
    --border-glass-hover: rgba(0, 0, 0, 0.15);

    --text-main: #2d3748;
    --text-muted: #718096;
    --text-white: #1a202c;

    --shadow-neon: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

.light-theme .navbar-header {
    background: rgba(244, 247, 252, 0.7);
}

.light-theme .footer-section {
    background: #ffffff;
}

.light-theme .admin-sidebar {
    background: #ffffff;
}
/* CSS Resets & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

body {
    position: relative;
    min-height: 100vh;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #252433;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Glow Background Effects */
.glow-bg-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(130px);
    z-index: -1;
    opacity: 0.35;
    pointer-events: none;
    animation: floatingBlobs 12s infinite alternate ease-in-out;
}
.blob-purple {
    background: var(--primary);
    top: -100px;
    left: -100px;
}
.blob-blue {
    background: #ffffff;
    top: 50%;
    right: -100px;
    animation-delay: -3s;
}
.blob-cyan {
    background: var(--accent);
    bottom: -100px;
    left: 20%;
    animation-delay: -6s;
}

@keyframes floatingBlobs {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 40px) scale(1.15); }
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

p {
    line-height: 1.6;
    color: var(--text-muted);
}

.highlight {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Main Container Layout */
.main-wrapper {
    padding-top: 80px; /* offset navbar height */
    min-height: calc(100vh - 80px);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

/* Glassmorphism Panel Class */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    box-shadow: var(--shadow-neon);
    transition: var(--transition-smooth);
}
.glass-panel:hover {
    border-color: var(--border-glass-hover);
    box-shadow: 0 12px 40px 0 rgba(143, 67, 255, 0.15);
}

/* 3D Perspective Grid Container */
.perspective-container {
    perspective: 1000px;
}

/* Floating Navigation Header */
.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background: rgba(8, 7, 16, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1200px;
    width: 90%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
}

.logo-symbol {
    font-size: 1.8rem;
    color: var(--secondary);
    animation: rotateSymbol 6s infinite linear;
}

@keyframes rotateSymbol {
    100% { transform: rotateY(360deg); }
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--text-white);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transition: var(--transition-smooth);
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}

/* Custom Buttons Styling */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(143, 67, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(143, 67, 255, 0.5);
}

.btn-secondary {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-white);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    border-color: var(--secondary);
    background: rgba(0, 240, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.2);
    transform: translateY(-3px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle .bar {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition-smooth);
}

/* Home Hero Section */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 40px 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--text-white);
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero 3D Card Deck */
.hero-visual {
    position: relative;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tilt-card-3d {
    width: 320px;
    height: 400px;
    border-radius: 24px;
    padding: 30px;
    transform-style: preserve-3d;
    transform: rotateX(10deg) rotateY(-10deg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.tilt-card-inner {
    transform: translateZ(50px);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.tilt-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tilt-card-3d i.card-brand-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-number {
    font-family: 'Outfit', monospace;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    color: var(--text-white);
    margin: 20px 0;
}

.card-holder {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Services Grid Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card-3d {
    padding: 40px 30px;
    border-radius: 20px;
    cursor: pointer;
    transform-style: preserve-3d;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(143, 67, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(143, 67, 255, 0.2);
    transition: var(--transition-smooth);
    transform: translateZ(30px);
}

.service-icon-box i {
    font-size: 1.6rem;
    color: var(--primary);
}

.service-card-3d h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    transform: translateZ(25px);
}

.service-card-3d p {
    font-size: 0.95rem;
    transform: translateZ(15px);
}

.service-card-3d:hover .service-icon-box {
    background: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.service-card-3d:hover .service-icon-box i {
    color: var(--text-white);
}

/* Portfolio Filters & Grid */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 30px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 380px;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 7, 16, 0.95) 20%, rgba(8, 7, 16, 0.4));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition-smooth);
    transform: translateY(10px);
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.08);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-cat {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 8px;
}

.portfolio-overlay h3 {
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

/* Blog Layout Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-img-box {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-img-box img {
    transform: scale(1.06);
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-content h3 a:hover {
    color: var(--secondary);
}

.blog-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
}

.blog-link:hover {
    color: var(--secondary);
}

/* Contact Grid & Form UI */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    padding: 25px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 240, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 240, 255, 0.2);
    color: var(--secondary);
    font-size: 1.2rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.form-box {
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    padding: 14px 18px;
    color: var(--text-white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    background: rgba(143, 67, 255, 0.03);
    box-shadow: 0 0 15px rgba(143, 67, 255, 0.15);
}

textarea.form-control {
    resize: none;
    height: 150px;
}

/* Alerts and statuses */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Footer layout */
.footer-section {
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 30px 0;
    background: #06060c;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.brand-col .brand-desc {
    margin: 20px 0;
    font-size: 0.95rem;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.footer-socials a:hover {
    color: var(--text-white);
    border-color: var(--primary);
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-white);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.contact-col p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-col i {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.admin-link {
    color: var(--primary);
    font-weight: 500;
}

.admin-link:hover {
    color: var(--secondary);
}

.divider {
    margin: 0 10px;
    color: var(--border-glass);
}

/* Detail view style */
.detail-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.detail-header {
    margin-bottom: 30px;
}

.detail-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.detail-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 40px;
    border: 1px solid var(--border-glass);
}

.detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.detail-content p {
    margin-bottom: 25px;
    color: var(--text-main);
}

/* Admin Dashboard Styles */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
    background: var(--bg-dark);
}

.admin-sidebar {
    width: 280px;
    background: #06060c;
    border-right: 1px solid var(--border-glass);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    position: sticky;
    top: 0;
}

.admin-nav {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    border-radius: 12px;
    color: var(--text-muted);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.admin-nav-item:hover, .admin-nav-item.active {
    color: var(--text-white);
    background: rgba(143, 67, 255, 0.1);
    border-left: 3px solid var(--primary);
}

.admin-nav-item i {
    width: 20px;
}

.admin-content-area {
    flex-grow: 1;
    padding: 40px;
    overflow-y: auto;
}

.admin-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.admin-stat-card {
    padding: 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-stat-value h4 {
    font-size: 2.2rem;
    color: var(--text-white);
}

.admin-stat-value p {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.admin-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(143, 67, 255, 0.1);
    border: 1px solid rgba(143, 67, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

/* Data Table UI */
.table-responsive {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--border-glass);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-glass);
}

.admin-table th, .admin-table td {
    padding: 18px 24px;
    text-align: left;
    border-bottom: 1px solid var(--border-glass);
}

.admin-table th {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-white);
    font-weight: 600;
}

.admin-table td {
    color: var(--text-main);
}

.admin-table tr:last-child td {
    border-bottom: none;
}

/* Actions in tables */
.action-btns {
    display: flex;
    gap: 10px;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.8rem;
    border-radius: 8px;
}

.btn-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.btn-danger:hover {
    background: #ef4444;
    color: var(--text-white);
}

.btn-edit {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.btn-edit:hover {
    background: #10b981;
    color: var(--text-white);
}

.badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Modal and panel styles */
.admin-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1200;
}

.admin-modal-content {
    width: 90%;
    max-width: 650px;
    padding: 40px;
}

/* Login Page Specific Styles */
.login-page-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--bg-dark);
}

.login-card {
    width: 100%;
    max-width: 420px;
    padding: 40px;
    margin: 20px;
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content p {
        margin: 0 auto 30px auto;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-visual {
        height: 380px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #080710;
        z-index: 999;
        transition: var(--transition-smooth);
        padding: 40px;
        border-top: 1px solid var(--border-glass);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .nav-menu a {
        font-size: 1.3rem;
    }
    .btn-nav-cta {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Section Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 12px 40px 0 rgba(255, 106, 0, 0.25);
    background: linear-gradient(180deg, rgba(22, 22, 35, 0.75) 0%, rgba(255, 106, 0, 0.05) 100%);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    box-shadow: 0 16px 48px 0 rgba(255, 106, 0, 0.35);
    border-color: var(--secondary);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.4);
}

.pricing-card-header {
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.pricing-card-header h3 {
    font-size: 1.6rem;
    color: var(--text-white);
}

.price-container {
    margin-top: 20px;
    display: flex;
    align-items: baseline;
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.pricing-card.featured .price-amount {
    background: linear-gradient(135deg, var(--text-white), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.billing-period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 5px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.check-icon {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-card.featured .check-icon {
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.pricing-card-footer {
    margin-top: auto;
}

/* Make sure grid fits mobile nicely */
@media (max-width: 992px) {
    .pricing-card.featured {
        transform: none;
    }
}
