/* Global Font Imports handled in HTML header */

:root {
    /* Enterprise Red & Dark Theme */
    --primary-color: #dc2626;
    /* Red 600 */
    --primary-dark: #b91c1c;
    /* Red 700 */
    --secondary-color: #ef4444;
    /* Red 500 */
    --accent-color: #f8fafc;
    /* Slate 50 (Light Accent) */

    --dark-bg: #0f172a;
    /* Slate 900 (Main Background) */
    --darker-bg: #020617;
    /* Slate 950 (Darker Background) */
    --card-bg: #1e293b;
    /* Slate 800 (Card Background) */

    --text-color: #f8fafc;
    /* Slate 50 (Light Text) */
    --text-muted: #cbd5e1;
    /* Slate 300 (Muted Text) */
    --border-color: #334155;
    /* Slate 700 (Border) */

    --success: #16a34a;
    --danger: #ef4444;

    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.2);
    --glow-primary: 0 0 20px rgba(220, 38, 38, 0.3);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-body);
    background-color: var(--darker-bg);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
    display: none;
}

/* Typography Enhancements */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

h1 {
    font-weight: 800;
    letter-spacing: -0.04em;
}

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

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* Header */
header {
    background-color: rgba(15, 23, 42, 0.95);
    /* Dark Slate 900 with opacity */
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

/* Transparent Header for Home Page */
header.header-transparent {
    background-color: transparent;
    border-bottom: none;
    box-shadow: none;
    position: fixed;
    width: 100%;
    transition: all 0.3s ease;
}

header.header-transparent.scrolled {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
    /* Slightly smaller padding on scroll */
}

header.header-transparent .logo {
    color: white;
}

header.header-transparent .nav-links a {
    color: rgba(255, 255, 255, 0.9);
}

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

header.header-transparent .mobile-menu-btn {
    color: white;
}

/* Mobile Menu Button - Dark on Light */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 10px;
}

/* Desktop Navigation */
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-direction: row;
    margin-left: auto;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 600;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Stats Section */
.stats-section {
    background: var(--dark-bg);
    border-top: 1px solid var(--border-color);
    padding: 60px 0;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}

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

/* Admin Login Button - Red Gradient */
.admin-btn {
    padding: 10px 25px !important;
    font-size: 0.85rem !important;
    margin-left: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50px;
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
}

.admin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    color: white !important;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
    background: #000;
    /* Always dark base for hero images */
    color: white;
    /* Text always white in hero */
}

/* Slideshow Layers */
.hero-slideshow,
.hero-slide,
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

#network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Same as overlay, but since it draws, it will be visible */
    pointer-events: none;
    /* Allow clicking through to buttons */
}

.hero-slideshow {
    z-index: 0;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    /* Explicit white */
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    color: #f1f5f9;
    /* Light grey text */
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(220, 38, 38, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

/* Light Theme Card Styling */
.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 24px;
    transition: all 0.4s ease;
    flex: 1 1 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Hover Gradient */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(220, 38, 38, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(220, 38, 38, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--dark-bg);
    /* Dark background */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
}

/* Icon Glow Ring */
.service-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon::before {
    opacity: 0.2;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--primary-dark);
    background: var(--darker-bg);
    /* Darker on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-color);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.contact-section {
    background-color: var(--dark-bg);
    border-top: 1px solid var(--border-color);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 5px;
}

.form-wrapper {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: #0f172a;
    /* Darker input background */
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-family: var(--font-body);
    margin-top: 5px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
    background: #1e293b;
    /* Slightly lighter on focus */
}

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

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

label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Industry Cards */
.industry-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 30px 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: var(--shadow-md);
}

.industry-card:hover {
    background: var(--dark-bg);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.industry-card h4 {
    color: var(--text-color) !important;
}

.industry-card i {
    transition: transform 0.3s ease;
    color: var(--primary-color) !important;
}

.industry-card:hover i {
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
    color: var(--text-muted);
    text-align: center;
}

.social-links {
    margin: 20px 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    color: white;
    margin: 0 10px;
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Admin Styles */
.admin-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg);
}

.login-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.admin-header {
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
}

.admin-table-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th {
    background: var(--darker-bg);
    color: var(--text-muted);
    font-weight: 600;
    text-align: left;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    color: white;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-new {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.status-read {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero {
        padding-top: 80px;
    }

    .contact-layout {
        gap: 40px;
    }
}

@media (max-width: 768px) {

    /* Global Adjustments */
    section {
        padding: 60px 0;
    }

    /* Typography Fixes */
    h1 {
        font-size: 1.7rem;
        /* Significantly reduced to fit 'Infrastructure' */
        word-wrap: normal;
        /* Don't break words mid-word */
        overflow-wrap: normal;
        hyphens: manual;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    /* Header Layout */
    header .container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-btn {
        display: block;
        /* Show hamburger */
    }

    /* Mobile Navigation Drawer - Premium Redesign */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        /* Overlay on top of content */
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(15, 23, 42, 0.98);
        /* Deep dark background */
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 10px 0 30px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
        z-index: 999;
        animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

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

    .nav-links a {
        padding: 16px 40px;
        width: 100%;
        text-align: left;
        /* Clean alignment */
        font-size: 1.1rem;
        font-weight: 500;
        color: #cbd5e1;
        border-bottom: none;
        /* Remove dividers */
        transition: all 0.2s ease;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.03);
        color: var(--primary-color);
        padding-left: 50px;
        /* Slide effect */
    }

    .nav-links .admin-btn {
        margin: 25px auto 10px;
        width: 85%;
        max-width: 300px;
        text-align: center;
        display: flex;
        justify-content: center;
        padding: 14px 0 !important;
        font-size: 1rem !important;
        box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.5);
        /* Glowing shadow */
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white !important;
        border-radius: 50px;
        /* Ensure rounded */
    }

    .nav-links .admin-btn:hover {
        transform: translateY(-2px);
        padding-left: 0;
        /* Reset slide effect */
        background: linear-gradient(135deg, var(--primary-dark), var(--secondary-color));
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Hero Section */
    .hero {
        min-height: auto;
        padding: 140px 0 60px;
        /* More top padding for fixed header */
        align-items: flex-start;
        /* Align to top */
    }

    .hero .container {
        width: 100%;
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem;
        padding: 0;
        margin-bottom: 30px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        /* Constrain width */
        margin: 0 auto;
        gap: 15px;
    }

    .btn {
        width: 100%;
        padding: 14px 20px;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    /* Contact Section */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    /* Footer */
    footer {
        padding: 40px 0 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    /* Even smaller for very small screens */

    .logo {
        font-size: 1.2rem;
    }

    .container {
        padding: 0 15px;
    }
}

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

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

/* Sections */
section {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Header */
header {
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.03em;
}

nav a {
    margin-left: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
}

nav a:hover,
nav a.active {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-color);
    color: white;
}

.btn-outline:hover {
    background-color: var(--border-color);
    color: white;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at top right, #1e293b 0%, transparent 40%),
        radial-gradient(circle at bottom left, #312e81 0%, transparent 40%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: -1;
}

.hero h1 {
    font-size: 4rem;
    background: linear-gradient(to bottom right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Contact Form */
.contact-section {
    background-color: var(--darker-bg);
    padding: 100px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-info-item i {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-right: 20px;
    font-size: 1.2rem;
}

.form-wrapper {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
}

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

.form-control {
    width: 100%;
    padding: 14px 20px;
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
    text-align: center;
    color: var(--text-muted);
}

.footer-content {
    margin-bottom: 40px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--card-bg);
    margin: 0 10px;
    color: white;
}

.social-links a:hover {
    background: var(--primary-color);
}

/* Admin Styles (Light/Simple) will just reuse some of this or have overrides if needed. 
   But mostly we want Admin to be clean. */
.admin-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg);
}

.login-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.admin-header {
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.admin-table-container {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    overflow-x: auto;
    border: 1px solid var(--border-color);
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th,
table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

table th {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

table tr:last-child td {
    border-bottom: none;
}

.status-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-new {
    background: rgba(14, 165, 233, 0.2);
    color: #38bdf8;
}

.status-read {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero {
        padding: 40px 0;
    }

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

    nav {
        display: none;
    }

    /* Hamburger menu later if needed, simple for now */
}

/* Services Background Slideshow */
.services-bg-slider,
.service-slide,
.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.services-bg-slider {
    z-index: 0;
}

.services-overlay {
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.4));
    z-index: 1;
}

.service-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.service-slide.active {
    opacity: 1;
}