/*
  Futuristic & Professional Stylesheet for ASERARMM.IT.COM
  Author: Gemini
  Version: 1.0
*/

/* --- Fonts & Root Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Roboto:wght@300;400;700&display=swap');

:root {
  --primary-color: #0d6efd; /* Vibrant Blue */
  --secondary-color: #0abdc6; /* Bright Cyan */
  --dark-bg: #0a0a1a; /* Deep Space Blue */
  --medium-bg: #1a1a3a; /* Lighter Space Blue */
  --light-bg: #2a2a5a; /* Even Lighter Space Blue */
  --text-light: #e0e0ff; /* Light Lavender */
  --text-dark: #1f1f1f; /* Dark Gray */
  --text-muted: #a0a0c0; /* Muted Lavender */
  --accent-glow: rgba(10, 189, 198, 0.7);
  --border-color: rgba(255, 255, 255, 0.1);
  --font-body: 'Roboto', sans-serif;
  --font-heading: 'Orbitron', sans-serif;
}

/* --- General Body & Typography --- */
body {
  background-color: var(--dark-bg);
  color: var(--text-light);
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px var(--accent-glow);
}

p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
  color: #fff;
  text-shadow: 0 0 15px var(--accent-glow);
}

.container {
  max-width: 1200px;
}

/* --- Header & Navigation --- */
.navbar {
  background-color: rgba(10, 10, 26, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  color: #fff !important;
  text-shadow: 0 0 15px var(--accent-glow);
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-light) !important;
  margin: 0 15px;
  padding: 10px 0 !important;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--secondary-color) !important;
  border-bottom: 2px solid var(--secondary-color);
}

.navbar-toggler {
  border-color: var(--border-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(10, 189, 198, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* --- Main Content Sections --- */
main {
  flex: 1;
}

.hero-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--medium-bg) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.05;
    z-index: 0;
}


.hero-section .display-4 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.hero-section .lead {
  font-size: 1.5rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 2rem auto;
}

.content-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.content-section:last-child {
    border-bottom: none;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

/* --- Cards --- */
.info-card {
  background-color: var(--medium-bg);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 20px var(--accent-glow);
}

.info-card .card-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px var(--accent-glow);
}

.info-card .card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.info-card .card-text {
  color: var(--text-muted);
}

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--medium-bg);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.comparison-table th, .comparison-table td {
  padding: 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background-color: var(--light-bg);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--secondary-color);
}

.comparison-table td {
    color: var(--text-light);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table .fa-check-circle {
  color: #28a745;
}

.comparison-table .fa-times-circle {
    color: #dc3545;
}

/* --- Buttons --- */
.btn-primary {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border: none;
  border-radius: 50px;
  padding: 15px 35px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--accent-glow);
}

/* --- Footer --- */
.footer {
  background-color: var(--medium-bg);
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
}

.footer h5 {
  color: #fff;
}

.footer p, .footer a {
  color: var(--text-muted);
}

.footer a:hover {
  color: var(--secondary-color);
}

.footer .social-icons a {
  font-size: 1.5rem;
  margin-right: 15px;
}

/* --- Cookie Banner --- */
#cookie-consent {
  background-color: var(--light-bg);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
}

/* --- Contact Form --- */
.contact-form .form-control {
    background-color: var(--medium-bg);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    border-radius: 10px;
    padding: 1rem;
}

.contact-form .form-control:focus {
    background-color: var(--light-bg);
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px var(--accent-glow);
    color: var(--text-light);
}

.contact-form ::placeholder {
    color: var(--text-muted);
}


/* --- Utility Classes --- */
.text-glow {
    text-shadow: 0 0 8px var(--accent-glow);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .hero-section .display-4 {
        font-size: 2.5rem;
    }
    .hero-section .lead {
        font-size: 1.2rem;
    }
    .nav-link {
        margin: 0;
        padding: 10px !important;
        text-align: center;
    }
}
