* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #021e2c;
  color: #ffffff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

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

/* Navbar */
.navbar {
  background-color: #021e2c;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.logo {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo span {
  color: #00b4d8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: #cbd5e1;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #00b4d8;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: #cbd5e1;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: inherit;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #0a2d42;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 180px;
  display: none;
  margin-top: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  color: #cbd5e1;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background-color: rgba(0,180,216,0.1);
  color: #00b4d8;
}

.contact-btn {
  background-color: #e0f7fa;
  color: #021e2c !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.2s;
}

.contact-btn:hover {
  background-color: #b2ebf2;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg svg {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.15;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
  color: #ffffff;
}

.hero-content h1 span {
  color: #00b4d8;
}

.hero-content h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 32px;
  color: #ffffff;
}

.hero-content p {
  font-size: 18px;
  color: #94a3b8;
  margin: 0 0 24px;
}

/* Service Form */
.service-form {
  margin-top: 24px;
}

.radio-group {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #e2e8f0;
  cursor: pointer;
}

.radio-group input[type="radio"] {
  accent-color: #00b4d8;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.service-form input[type="text"] {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background-color: rgba(255,255,255,0.05);
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 12px;
  font-family: inherit;
}

.service-form input[type="text"]::placeholder {
  color: #64748b;
}

.btn-primary {
  display: inline-block;
  width: 100%;
  padding: 14px 24px;
  background-color: #00b4d8;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
  transition: background-color 0.2s;
}

.btn-primary:hover {
  background-color: #0891b2;
}

.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  background-color: transparent;
  color: #00b4d8;
  border: 1px solid #00b4d8;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.btn-outline:hover {
  background-color: rgba(0,180,216,0.1);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(0,180,216,0.15);
  color: #00b4d8;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.2;
}

.section-title span {
  color: #00b4d8;
}

.section-subtitle {
  font-size: 18px;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.card {
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,180,216,0.2);
}

.card-image {
  height: 240px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 24px;
}

.card-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
}

.card-content p {
  font-size: 15px;
  color: #94a3b8;
  margin: 0 0 20px;
}

.card-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #e0f7fa;
  color: #021e2c;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.2s;
}

.card-btn:hover {
  background-color: #b2ebf2;
}

/* Features Section */
.features {
  padding: 60px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  color: #00b4d8;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #00b4d8;
}

.feature p {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.6;
}

/* Community Section */
.community {
  padding: 80px 0;
}

.community .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.community-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.community-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.community-content h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
}

.community-content h2 span {
  color: #00b4d8;
}

.community-content p {
  font-size: 18px;
  color: #94a3b8;
  line-height: 1.7;
}

/* Footer */
.footer {
  background-color: #e0f7fa;
  color: #021e2c;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
}

.footer-brand h3 span {
  color: #00b4d8;
}

.footer-brand p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 20px;
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background-color: #e0f7fa;
  color: #021e2c;
  border: 1px solid #021e2c;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}

.footer-contact-btn:hover {
  background-color: #021e2c;
  color: #ffffff;
}

.footer-column h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 16px;
  color: #334155;
}

.footer-column a {
  display: block;
  font-size: 14px;
  color: #475569;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: #00b4d8;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #cbd5e1;
}

.footer-bottom p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

/* Page Hero */
.page-hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}

.page-hero .section-tag {
  margin-bottom: 24px;
}

.page-hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 auto 20px;
  max-width: 700px;
}

.page-hero h1 span {
  color: #00b4d8;
}

.page-hero p {
  font-size: 18px;
  color: #94a3b8;
  max-width: 640px;
  margin: 0 auto 32px;
}

.page-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Feature Cards Dark */
.feature-cards {
  padding: 40px 0 60px;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.2s, border-color 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,180,216,0.2);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(0,180,216,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #00b4d8;
}

.feature-card-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
}

.feature-card p {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

/* Pricing */
.pricing-section {
  padding: 60px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured {
  background-color: #00b4d8;
  border-color: #00b4d8;
  color: #ffffff;
}

.pricing-card.featured p,
.pricing-card.featured li {
  color: rgba(255,255,255,0.9);
}

.pricing-card.featured .price {
  color: #ffffff;
}

.pricing-card h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #00b4d8;
  margin: 0 0 8px;
}

.pricing-card.featured h3 {
  color: rgba(255,255,255,0.9);
}

.pricing-card .speed {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 8px;
}

.pricing-card .desc {
  font-size: 15px;
  color: #94a3b8;
  margin: 0 0 20px;
  min-height: 44px;
}

.pricing-card .price {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 20px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-card .price span {
  font-size: 16px;
  font-weight: 500;
  color: #94a3b8;
}

.pricing-card.featured .price span {
  color: rgba(255,255,255,0.8);
}

.pricing-card ul {
  margin-bottom: 24px;
}

.pricing-card li {
  font-size: 15px;
  color: #cbd5e1;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-card li::before {
  content: "✓";
  color: #00b4d8;
  font-weight: 700;
}

.pricing-card.featured li::before {
  color: #ffffff;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: #00b4d8;
  color: #ffffff;
  border: none;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
  transition: background-color 0.2s;
}

.pricing-btn:hover {
  background-color: #0891b2;
}

.pricing-card.featured .pricing-btn {
  background-color: #ffffff;
  color: #00b4d8;
}

.pricing-card.featured .pricing-btn:hover {
  background-color: #f1f5f9;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
}

.cta-box {
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 60px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 16px;
}

.cta-box p {
  font-size: 16px;
  color: #94a3b8;
  margin: 0 0 24px;
}

.cta-box .btn-primary {
  width: auto;
  display: inline-block;
  padding: 14px 32px;
}

/* Two Column CTA */
.two-col-cta {
  padding: 60px 0;
}

.two-col-cta .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col-cta .cta-image {
  border-radius: 16px;
  overflow: hidden;
}

.two-col-cta .cta-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.two-col-cta .cta-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 16px;
}

.two-col-cta .cta-content p {
  font-size: 16px;
  color: #94a3b8;
  margin: 0 0 24px;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: #e0f7fa;
  color: #021e2c;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-white:hover {
  background-color: #b2ebf2;
}

/* Contact Page */
.contact-section {
  padding: 80px 0;
}

.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 40px;
}

.contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
}

.contact-form-wrapper > p {
  font-size: 15px;
  color: #94a3b8;
  margin: 0 0 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #cbd5e1;
}

.form-group label .required {
  color: #00b4d8;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background-color: rgba(255,255,255,0.05);
  color: #ffffff;
  font-size: 15px;
  font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #64748b;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.form-group select option {
  background-color: #0a2d42;
  color: #ffffff;
}

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

.char-count {
  text-align: right;
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
}

/* Admin Page */
.admin-body {
  background-color: #0f172a;
}

.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-login-box {
  background-color: #1e293b;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 48px;
  width: 100%;
  max-width: 420px;
}

.admin-login-box h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
  text-align: center;
}

.admin-login-box p {
  font-size: 14px;
  color: #94a3b8;
  text-align: center;
  margin: 0 0 32px;
}

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

.admin-login-box .form-group label {
  color: #e2e8f0;
}

.admin-login-box input {
  background-color: #0f172a;
}

.admin-dashboard {
  display: none;
  padding: 40px 0;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.admin-header h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.logout-btn {
  padding: 8px 16px;
  background-color: transparent;
  color: #94a3b8;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.logout-btn:hover {
  background-color: rgba(255,255,255,0.05);
  color: #ffffff;
}

.admin-table-wrapper {
  background-color: #1e293b;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
}

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

.admin-table th,
.admin-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 14px;
}

.admin-table th {
  background-color: rgba(255,255,255,0.03);
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
}

.admin-table td {
  border-top: 1px solid rgba(255,255,255,0.05);
  color: #e2e8f0;
}

.admin-table tr:hover td {
  background-color: rgba(255,255,255,0.02);
}

.no-data {
  text-align: center;
  padding: 60px 20px;
  color: #64748b;
}

.error-msg {
  color: #ef4444;
  font-size: 14px;
  margin-top: 8px;
  text-align: center;
}

/* Policy Page */
.policy-section {
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
}

.policy-section h1 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 24px;
}

.policy-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 32px 0 16px;
  color: #00b4d8;
}

.policy-section p {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.7;
  margin: 0 0 16px;
}

.policy-section ul {
  margin: 16px 0;
  padding-left: 24px;
  list-style: disc;
}

.policy-section ul li {
  font-size: 16px;
  color: #94a3b8;
  margin-bottom: 8px;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
  .cards-grid,
  .features-grid,
  .pricing-grid,
  .feature-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero .container,
  .community .container,
  .two-col-cta .container {
    grid-template-columns: 1fr;
  }
  
  .hero-content h1 {
    font-size: 40px;
  }
  
  .hero-content h2 {
    font-size: 28px;
  }
  
  .page-hero h1 {
    font-size: 36px;
  }
  
  .cards-grid,
  .features-grid,
  .pricing-grid,
  .feature-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .cta-box {
    padding: 32px;
  }
  
  .admin-table-wrapper {
    overflow-x: auto;
  }
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background-color: #021e2c;
  z-index: 9999;
  padding: 80px 24px 24px;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  font-size: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
}
