@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    /* Light Theme (Academic Elegance) */
    --primary: #0F172A;
    --primary-rgb: 15, 23, 42;
    --accent: #B45309; /* Deep Gold */
    --accent-rgb: 180, 83, 9;
    --accent-light: #F59E0B;
    --success: #15803D;
    --bg: #F8FAFC;
    --surface: #FFFFFF;
    --text: #1E293B;
    --text-muted: #475569;
    --border: #E2E8F0;
    --card-hover: rgba(180, 83, 9, 0.05);

    /* Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Space Grotesk', sans-serif;

    /* Shadows & Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.04), 0 4px 6px -4px rgb(0 0 0 / 0.04);
    --shadow-glow: 0 0 25px rgba(180, 83, 9, 0.15);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

/* Dark Theme Variables */
body.dark-theme {
    --primary: #F1F5F9;
    --primary-rgb: 241, 245, 249;
    --accent: #F59E0B; /* Bright Amber Gold */
    --accent-rgb: 245, 158, 11;
    --accent-light: #D97706;
    --success: #22C55E;
    --bg: #090D16;
    --surface: #111827;
    --text: #F1F5F9;
    --text-muted: #9CA3AF;
    --border: #1F2937;
    --card-hover: rgba(245, 158, 11, 0.08);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}
h1 { font-size: 3rem; font-weight: 800; letter-spacing: -0.5px; }
h2 { font-size: 2.25rem; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 600; }
p { color: var(--text-muted); }
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.section {
    padding: 6rem 0;
    position: relative;
}
.section-dark {
    background-color: #0F172A;
    color: #F1F5F9;
}
.section-dark h2, .section-dark h3 {
    color: #FFFFFF;
}
.section-dark p {
    color: #94A3B8;
}
.text-center { text-align: center; }
.section-header {
    max-width: 700px;
    margin: 0 auto 4rem auto;
}
.section-tag {
    font-family: var(--font-accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: inline-block;
}
.section-title {
    margin-bottom: 1rem;
}

/* Grid Frameworks */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 900px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    .section { padding: 4rem 0; }
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
body.dark-theme .header {
    background: rgba(9, 13, 22, 0.85);
    border-bottom: 1px solid var(--border);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--primary);
    letter-spacing: -0.5px;
}
.logo span {
    color: var(--accent);
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}
.nav-link {
    font-weight: 500;
    color: var(--text);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}
.nav-link:hover, .nav-link.active {
    color: var(--accent);
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: none;
    border: 1px solid var(--border);
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: var(--primary);
    transition: var(--transition);
}
.theme-toggle-btn:hover {
    border-color: var(--accent);
    background-color: var(--card-hover);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.nav-btn {
    padding: 0.55rem 1.15rem;
    background: var(--accent);
    color: white !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}
.nav-btn:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
}

/* Burger responsiveness */
.burger-menu {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}
.burger-bar {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    background-color: var(--primary);
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .burger-menu { display: block; }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background-color: var(--surface);
        width: 100%;
        height: calc(100vh - 75px);
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        z-index: 999;
        border-top: 1px solid var(--border);
    }
    .nav-menu.active { left: 0; }
    .nav-link { font-size: 1.15rem; margin: 1rem 0; }
    .nav-actions { flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }
    .burger-menu.active .burger-bar:nth-child(2) { opacity: 0; }
    .burger-menu.active .burger-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .burger-menu.active .burger-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* Button Components */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
    text-align: center;
    justify-content: center;
}
.btn-primary {
    background-color: var(--accent);
    color: white;
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}
.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--border);
}
.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background-color: var(--card-hover);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 9rem 0 6rem 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(180, 83, 9, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(15, 23, 42, 0.04) 0%, transparent 40%);
}
body.dark-theme .hero {
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(17, 24, 39, 0.6) 0%, transparent 50%);
}
.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}
.hero-text h1 {
    font-size: 3.25rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
}
.hero-text h1 span {
    color: var(--accent);
    display: inline-block;
}
.hero-introduction {
    font-family: var(--font-accent);
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}
.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 2.25rem;
}
.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
}
.hero-avatar-container {
    position: relative;
    display: flex;
    justify-content: center;
}
.hero-avatar-border {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--surface);
}
.hero-avatar {
    width: 100%;
    max-width: 360px;
    height: 400px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-ctas { justify-content: center; }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-avatar { height: 320px; }
}

/* Counters Stats */
.stats-grid {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-top: 1rem;
    box-shadow: var(--shadow-md);
}
.stat-item {
    text-align: center;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border);
}
.stat-value {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}
.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}
@media (max-width: 768px) {
    .stats-grid { padding: 1.5rem; }
    .stat-item:not(:last-child)::after { display: none; }
}

/* Academic Services Grid */
.academic-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.academic-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.academic-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}
.academic-card p {
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}
.academic-card-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
.academic-card-link:hover {
    color: var(--accent-light);
}

/* Value Checklist section */
.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.checklist-item:hover {
    border-color: var(--accent);
    background-color: var(--card-hover);
}
.checklist-icon {
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: bold;
}
.checklist-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}
.checklist-item p {
    font-size: 0.9rem;
}

/* About Timeline component */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    background-color: var(--border);
}
.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 80px;
}
.timeline-badge {
    position: absolute;
    left: 20px;
    top: 5px;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background-color: var(--surface);
    border: 2px solid var(--accent);
    color: var(--accent);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}
.timeline-content {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.timeline-content h4 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Masonry Testimonial Layout */
.masonry-container {
    column-count: 3;
    column-gap: 1.5rem;
    margin: 0 auto;
}
.masonry-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 1.75rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    break-inside: avoid;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.masonry-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.masonry-quote {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}
.masonry-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}
.masonry-author h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}
.masonry-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.masonry-rating {
    color: #F59E0B;
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .masonry-container { column-count: 2; }
}
@media (max-width: 600px) {
    .masonry-container { column-count: 1; }
}

/* Dynamic Testimonials Carousel (Home page) */
.carousel-wrapper {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    height: 250px;
}
.carousel-card {
    position: absolute;
    inset: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease-out;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.carousel-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.carousel-card.prev {
    transform: translateX(-50px);
}

/* FAQ Accordion UI */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary);
    cursor: pointer;
    font-family: var(--font-heading);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 1.5rem;
}
.faq-answer p {
    padding-bottom: 1.25rem;
    font-size: 0.95rem;
}
.faq-item.active .faq-question {
    color: var(--accent);
}
.faq-item.active .faq-answer {
    max-height: 250px;
}

/* PDF Preview Modal */
.pdf-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    padding: 1.5rem;
}
.pdf-modal.active {
    opacity: 1;
    pointer-events: auto;
}
.pdf-modal-content {
    background: var(--surface);
    border-radius: var(--radius-md);
    max-width: 800px;
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xl);
    transform: scale(0.95);
    transition: var(--transition);
    overflow: hidden;
}
.pdf-modal.active .pdf-modal-content {
    transform: scale(1);
}
.pdf-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pdf-viewer {
    flex-grow: 1;
    background: #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pdf-document-mockup {
    width: 90%;
    height: 90%;
    background: white;
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    overflow-y: auto;
    font-family: 'Times New Roman', Times, serif;
    color: #000;
    line-height: 1.5;
}
.pdf-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}
.pdf-close:hover {
    color: var(--accent);
}

/* Reading Progress Bar */
.progress-bar-container {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 1001;
}
.progress-bar {
    width: 0;
    height: 100%;
    background-color: var(--accent);
}

/* Back-to-Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 998;
}
.back-to-top.active {
    opacity: 1;
    pointer-events: auto;
}
.back-to-top:hover {
    background-color: var(--accent-light);
    transform: translateY(-3px);
}

/* General Layouts (Blogs, Portfolio grids) */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: var(--surface);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
    background-color: var(--accent);
    color: white;
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

/* Portfolio Card */
.portfolio-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.portfolio-img {
    height: 200px;
    background: linear-gradient(135deg, #0F172A, #1E293B);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 3rem;
    position: relative;
}
.portfolio-meta {
    padding: 1.5rem;
}
.portfolio-cat {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: inline-block;
}
.portfolio-meta h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.portfolio-actions {
    display: flex;
    gap: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-top: 1rem;
}
.portfolio-action-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    cursor: pointer;
}
.portfolio-action-link:hover {
    color: var(--accent-light);
}

/* Blog Cards */
.blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.blog-card-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}
.blog-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-cat {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: inline-block;
}
.blog-card-content h4 {
    font-size: 1.15rem;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}
.blog-card-content p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}
.blog-card-meta {
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.25rem;
}
.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.4rem;
}
.form-control {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background-color: var(--surface);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--card-hover);
}
textarea.form-control {
    min-height: 110px;
    resize: vertical;
}

/* Newsletter block */
.newsletter-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

/* Footer styling */
.footer {
    background-color: #0B0F19;
    color: #94A3B8;
    padding: 5rem 0 2rem 0;
    border-top: 1px solid #1E293B;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
}
.footer h4 {
    color: white;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}
.footer-col p {
    font-size: 0.9rem;
    color: #94A3B8;
    line-height: 1.6;
}
.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 0.6rem;
}
.footer-links a {
    font-size: 0.9rem;
    color: #94A3B8;
}
.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}
.footer-bottom {
    border-top: 1px solid #1E293B;
    margin-top: 4rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}
@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Toast styling */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2500;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
}
.toast.active {
    transform: translateY(0);
    opacity: 1;
}
.toast-success-icon {
    color: var(--success);
    font-weight: bold;
}

/* Admin Dashboard layout tweaks */
.admin-badge-new {
    background-color: rgba(180, 83, 9, 0.1);
    color: var(--accent);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
}
