/* Main Colors */
:root {
  --background: #11151C;
  --accent: #FF4E00;
  --secondary-accent: #FFE900;
  --header-color: #F4F4F4;
  --text-color: #B1B1B1;
  --gradient: linear-gradient(to right, #FF4E00, #FFE900);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--background);
  color: var(--text-color);
  line-height: 1.6;
}

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

h1, h2, h3, h4, h5, h6 {
  color: var(--header-color);
  margin-bottom: 1rem;
}

section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 15px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient);
}

section p.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

a {
  text-decoration: none;
  color: var(--accent);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-accent);
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--gradient);
  border: none;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 78, 0, 0.5);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(255, 78, 0, 0.8);
  color: #fff;
}

/* Neon Effect */
.neon-block {
  background-color: rgba(17, 21, 28, 0.8);
  border-radius: 8px;
  padding: 30px;
  margin: 20px 0;
  box-shadow: 0 0 15px rgba(255, 78, 0, 0.3);
  transition: box-shadow 0.3s ease;
}

.neon-block:hover {
  box-shadow: 0 0 25px rgba(255, 78, 0, 0.5);
}

/* Header Styles */
header {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background-color: rgba(17, 21, 28, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--header-color);
  font-weight: 500;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--gradient);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--header-color);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Hero Section */
#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* About Section */
#about {
  padding: 100px 0;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 78, 0, 0.4);
}

/* Services Section */
#services {
  padding: 100px 0;
  background-color: rgba(17, 21, 28, 0.9);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  text-align: center;
  padding: 0;
  border-radius: 8px;
  background-color: rgba(25, 29, 36, 0.5);
  box-shadow: 0 0 15px rgba(255, 78, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 78, 0, 0.5);
}

.service-icon {
  width: 100%;
  height: 200px;
  margin: 0 0 15px;
  overflow: hidden;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-icon img {
  transform: scale(1.05);
}

.service-card h3 {
  margin: 0 20px 10px;
  color: var(--header-color);
}

.service-card p {
  padding: 0 20px 20px;
}

/* Why Choose Us */
#why-us {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature {
  text-align: center;
  border-radius: 8px;
  padding: 25px 15px;
  background-color: rgba(25, 29, 36, 0.5);
  box-shadow: 0 0 15px rgba(255, 78, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 78, 0, 0.4);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(255, 78, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--accent);
}

/* Cases */
#cases {
  padding: 100px 0;
  background-color: rgba(17, 21, 28, 0.9);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.case-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 78, 0, 0.3);
  height: 300px;
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-card:hover img {
  transform: scale(1.05);
}

.case-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(17, 21, 28, 0.9), transparent);
  transition: transform 0.3s ease;
}

.case-card:hover .case-content {
  transform: translateY(-10px);
}

.case-content h3 {
  margin-bottom: 10px;
  color: var(--header-color);
}

.case-content p {
  font-size: 0.95rem;
  margin: 0;
}

/* Testimonials */
#testimonials {
  padding: 100px 0;
}

.testimonial-card {
  background-color: rgba(25, 29, 36, 0.5);
  padding: 30px;
  border-radius: 8px;
  margin: 20px 0;
  position: relative;
  box-shadow: 0 0 15px rgba(255, 78, 0, 0.2);
}

.testimonial-card::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: 20px;
  color: var(--accent);
  opacity: 0.3;
}

/* FAQ Section */
#faq {
  padding: 100px 0;
  background-color: rgba(17, 21, 28, 0.9);
}

.faq-container {
  margin-top: 50px;
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 78, 0, 0.2);
}

.faq-item details {
  background-color: rgba(25, 29, 36, 0.8);
}

.faq-question {
  position: relative;
  padding: 18px 50px 18px 25px;
  cursor: pointer;
  color: var(--header-color);
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  display: block;
}

.faq-question:hover {
  background-color: rgba(30, 35, 45, 0.9);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
}

details[open] .faq-question {
  background-color: rgba(30, 35, 45, 0.9);
}

details[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  background-color: rgba(25, 29, 36, 0.5);
  padding: 25px;
}

.faq-item input {
  position: absolute;
  opacity: 0;
  z-index: -1;
  width: 0;
  height: 0;
}

.faq-item input:checked ~ .faq-question {
  background-color: rgba(30, 35, 45, 0.9);
}

.faq-item input:checked ~ .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item input:checked ~ .faq-answer {
  max-height: 300px;
  padding: 25px;
}

/* Contact Form */
#contact {
  padding: 100px 0;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group label {
  position: absolute;
  top: 15px;
  left: 15px;
  color: var(--text-color);
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background-color: rgba(25, 29, 36, 0.8);
  border: 1px solid rgba(177, 177, 177, 0.2);
  border-radius: 8px;
  color: var(--header-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(255, 78, 0, 0.3);
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -12px;
  left: 10px;
  font-size: 0.8rem;
  background-color: rgba(17, 21, 28, 0.9);
  padding: 0 5px;
  color: var(--accent);
}

.checkbox-group {
  display: flex;
  align-items: center;
}

.checkbox-group input {
  margin-right: 10px;
}

/* Footer */
footer {
  padding: 50px 0 20px;
  background-color: rgba(15, 18, 25, 0.95);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-company-info {
  grid-column: span 3;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.footer-links h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

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

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

.copyright {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(177, 177, 177, 0.1);
}

/* Legal Pages */
.legal-container {
  max-width: 900px;
  margin: 120px auto 50px;
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 78, 0, 0.4);
}

.legal-container h1 {
  color: #11151C;
  margin-bottom: 30px;
  text-align: center;
}

.legal-container h2 {
  color: #000000;
  margin-top: 25px;
  margin-bottom: 15px;
}

.legal-container p, 
.legal-container ul, 
.legal-container ol {
  color: #333;
  margin-bottom: 20px;
}

.legal-container ul, 
.legal-container ol {
  margin-left: 20px;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(25, 29, 36, 0.95);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 78, 0, 0.5);
  z-index: 9999;
  max-width: 400px;
  width: 90%;
  text-align: center;
  display: none;
}

.cookie-popup.show {
  display: block;
  animation: slideUp 0.5s forwards;
}

.cookie-buttons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Thanks Page */
.thanks-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
}

.thanks-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 30px;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(255, 78, 0, 0.4);
  background-color: rgba(17, 21, 28, 0.9);
  border: 1px solid rgba(255, 78, 0, 0.3);
}

.thanks-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.thanks-card h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thanks-card p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.thanks-button {
  margin-top: 30px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { transform: translate(-50%, 100px); opacity: 0; }
  to { transform: translate(-50%, 0); opacity: 1; }
}

/* Error message */
.error-message {
  background-color: rgba(255, 0, 0, 0.1);
  color: #ff6b6b;
  padding: 10px 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  text-align: center;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
  .services-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-company-info {
    grid-column: span 2;
  }
  
  .about-container {
    flex-direction: column;
  }
  
  section h2 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(17, 21, 28, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  nav ul li {
    margin: 15px 0;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .services-grid,
  .features-grid,
  .cases-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-company-info {
    grid-column: span 1;
  }
} 

/* Mobile adjustments for Cases */
@media screen and (max-width: 768px) {
  .cases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .case-card {
    height: 250px;
  }
  
  .case-content {
    padding: 15px;
  }
  
  .case-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  
  .case-content p {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .case-card {
    height: 220px;
  }
  
  .case-content h3 {
    font-size: 1.1rem;
  }
  
  .case-content p {
    font-size: 0.85rem;
  }
  
  #cases {
    padding: 60px 0;
  }
} 