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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #000000;
  overflow-x: hidden;
}

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

/* Colors */
:root {
  --primary-yellow: #fbbf24;
  --primary-black: #000000;
  --dark-gray: #1f1f1f;
  --medium-gray: #374151;
  --light-gray: #6b7280;
  --white: #ffffff;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(251, 191, 36, 0.2);
  z-index: 1000;
  padding: 16px 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 48px;
  height: 48px;
  background: var(--primary-yellow);
  color: var(--primary-black);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-yellow);
  line-height: 1;
}

.brand-subtitle {
  font-size: 14px;
  color: var(--white);
  line-height: 1;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-yellow);
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-yellow);
  margin: 3px 0;
  transition: 0.3s;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--primary-yellow);
  color: var(--primary-black);
}

.btn-primary:hover:not(:disabled) {
  background: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-yellow);
  border: 2px solid var(--primary-yellow);
}

.btn-secondary:hover:not(:disabled) {
  background: var(--primary-yellow);
  color: var(--primary-black);
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Button spinner animation */
.btn-spinner svg {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #000000 0%, #1f1f1f 50%, #000000 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--light-gray);
  border: 2px dashed var(--medium-gray);
  margin: 40px;
  border-radius: 12px;
}

.placeholder-text {
  font-size: 18px;
  font-weight: 600;
  margin: 16px 0 8px;
}

.placeholder-subtext {
  font-size: 14px;
  margin-bottom: 8px;
}

.placeholder-size {
  font-size: 12px;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251, 191, 36, 0.2);
  color: var(--primary-yellow);
  border: 1px solid rgba(251, 191, 36, 0.3);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 32px;
}

.hero-title {
  font-size: 6rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title-accent {
  color: var(--primary-yellow);
}

.hero-description {
  font-size: 24px;
  color: #d1d5db;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Services Section */
.services {
  padding: 120px 0;
  background: var(--dark-gray);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.section-header p {
  font-size: 20px;
  color: #d1d5db;
  max-width: 800px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--primary-black);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--primary-yellow);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(251, 191, 36, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(251, 191, 36, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--primary-yellow);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: rgba(251, 191, 36, 0.3);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.service-card p {
  color: #d1d5db;
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-image-placeholder {
  background: var(--dark-gray);
  border: 2px dashed var(--medium-gray);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  margin-bottom: 24px;
  color: var(--light-gray);
}

.service-image-placeholder p {
  font-size: 14px;
  margin: 8px 0 0;
}

.service-features {
  list-style: none;
  text-align: left;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #d1d5db;
  font-size: 14px;
}

.service-features svg {
  color: var(--primary-yellow);
  flex-shrink: 0;
}

/* About Section */
.about {
  padding: 120px 0;
  background: var(--primary-black);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.text-accent {
  color: var(--primary-yellow);
}

.about-description {
  font-size: 20px;
  color: #d1d5db;
  margin-bottom: 48px;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(251, 191, 36, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-yellow);
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.feature-content p {
  color: #d1d5db;
  line-height: 1.5;
}

.about-image {
  position: relative;
}

.about-image-placeholder {
  background: var(--dark-gray);
  border: 2px dashed var(--medium-gray);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  color: var(--light-gray);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Portfolio Section */
.portfolio {
  padding: 120px 0;
  background: var(--dark-gray);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.portfolio-item {
  background: var(--primary-black);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  border-color: var(--primary-yellow);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-image-placeholder {
  height: 250px;
  background: var(--dark-gray);
  border-bottom: 2px dashed var(--medium-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--light-gray);
}

.portfolio-image-placeholder p {
  margin-top: 12px;
  font-size: 14px;
}

.portfolio-content {
  padding: 24px;
}

.portfolio-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.portfolio-content p {
  color: #d1d5db;
  font-size: 14px;
}

/* Contact Section */
.contact {
  padding: 120px 0;
  background: var(--primary-black);
  position: relative;
  overflow: hidden;
}

.contact-background {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  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' fillRule='evenodd'%3E%3Cg fill='%23fbbf24' fillOpacity='1'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  z-index: 10;
}

.contact-form-container {
  background: var(--dark-gray);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 16px;
  padding: 48px;
}

.contact-form-header {
  margin-bottom: 32px;
}

.contact-form-header h3 {
  font-size: 32px;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-form-header p {
  color: #d1d5db;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px;
  background: var(--primary-black);
  border: 1px solid var(--medium-gray);
  border-radius: 8px;
  color: var(--white);
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-yellow);
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.2);
}

.form-group textarea {
  resize: vertical;
  font-family: inherit;
}

.form-note {
  font-size: 14px;
  color: var(--light-gray);
  text-align: center;
  margin-top: 16px;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-card {
  background: var(--dark-gray);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 16px;
  padding: 32px;
}

.contact-card h3 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(251, 191, 36, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-yellow);
}

.contact-primary {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-secondary {
  color: #d1d5db;
  font-size: 14px;
}

.service-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-area-title {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 12px;
}

.service-area ul {
  list-style: none;
  color: #d1d5db;
  font-size: 14px;
}

.service-area li {
  margin-bottom: 4px;
}

.emergency-card {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.5);
}

.emergency-card p {
  color: var(--white);
  margin-bottom: 16px;
}

/* Footer */
.footer {
  background: var(--dark-gray);
  border-top: 1px solid rgba(251, 191, 36, 0.2);
  padding: 80px 0 32px;
}

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

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-brand p {
  color: #d1d5db;
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-links h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-yellow);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--medium-gray);
  color: var(--light-gray);
}

/* Toast */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--primary-black);
  color: var(--white);
  border: 1px solid var(--primary-yellow);
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transform: translateX(400px);
  transition: transform 0.3s ease;
  z-index: 3000;
  max-width: 400px;
}

.toast.show {
  transform: translateX(0);
}

.toast.error {
  background: #dc2626;
  border-color: #dc2626;
}

.toast.success {
  background: #16a34a;
  border-color: #16a34a;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }

  .section-header h2 {
    font-size: 3rem;
  }

  .about-text h2 {
    font-size: 3rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .service-areas {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .about-text h2 {
    font-size: 2.5rem;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 16px;
  }

  .service-card,
  .contact-form-container,
  .contact-card {
    margin: 0 -16px;
    border-radius: 0;
  }
}
