/* Main CSS Styles for domain.com
   Color Palette:
   - Primary: #00E0D3 (Turquoise)
   - Secondary: #6B00E0 (Purple)
   - Accent1: #CFFF04 (Neon Lime)
   - Accent2: #FF6B6B (Coral)
   - Background: #0D0D0D (Matte Black)
   - Text: #FFFFFF (White)
   - Text Secondary: #B0B0B0 (Light Gray)
*/

/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #FFFFFF;
  background-color: #0D0D0D;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #00E0D3;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #CFFF04;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, #00E0D3 0%, #6B00E0 100%);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #00E0D3 20%, #6B00E0 80%);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 224, 211, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #00E0D3;
}

.btn-secondary:hover {
  background-color: rgba(0, 224, 211, 0.1);
  color: #00E0D3;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Section Styling */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #00E0D3 0%, #6B00E0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.section-divider {
  height: 4px;
  width: 80px;
  background: linear-gradient(to right, #00E0D3, #6B00E0);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.section-header p {
  color: #B0B0B0;
  max-width: 700px;
  margin: 0 auto;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
  transition: all 0.4s ease;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: block;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00E0D3 0%, #6B00E0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  color: #FFFFFF;
  font-weight: 500;
  position: relative;
}

.main-nav a:not(.btn-primary)::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #00E0D3, #6B00E0);
  transition: width 0.3s ease;
}

.main-nav a:not(.btn-primary):hover::after,
.main-nav a.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
}

.menu-button {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  padding: 0;
}

.menu-button span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
}

.menu-button.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.menu-button.active span:nth-child(2) {
  opacity: 0;
}

.menu-button.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 991px) {
  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 69px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(13, 13, 13, 0.95);
    overflow: hidden;
    transition: all 0.4s ease;
    visibility: hidden;
    opacity: 0;
  }

  .main-nav.active {
    height: auto;
    padding: 1.5rem 0;
    visibility: visible;
    opacity: 1;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(107, 0, 224, 0.3), transparent 50%),
               radial-gradient(circle at bottom left, rgba(0, 224, 211, 0.3), transparent 50%);
  z-index: -1;
}

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #00E0D3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #B0B0B0;
  margin-bottom: 2rem;
}

.hero-image {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 35%;
  max-width: 500px;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 0 0 20px;
  box-shadow: -30px 30px 60px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about {
  background-color: rgba(13, 13, 13, 0.8);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text {
  color: #B0B0B0;
}

.about-features {
  margin-top: 2rem;
}

.about-features li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.about-features svg {
  stroke: #00E0D3;
  margin-right: 1rem;
  flex-shrink: 0;
}

.about-image img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5);
}

/* Services Section */
.services {
  background-color: #0D0D0D;
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center right, rgba(107, 0, 224, 0.1), transparent 60%);
  z-index: -1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: rgba(30, 30, 30, 0.6);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #00E0D3, #6B00E0);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 224, 211, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  margin-bottom: 1.5rem;
}

.service-icon svg {
  stroke: #00E0D3;
}

.service-card h3 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.service-card p {
  color: #B0B0B0;
  margin-bottom: 1.5rem;
}

.service-features {
  color: #B0B0B0;
}

.service-features li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #6B00E0;
}

/* Why Choose Us Section */
.why-choose-us {
  background-color: rgba(13, 13, 13, 0.9);
  position: relative;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom center, rgba(0, 224, 211, 0.1), transparent 60%);
  z-index: -1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-icon {
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.feature-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 0, 224, 0.2) 0%, transparent 70%);
  z-index: -1;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon::after {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(107, 0, 224, 0.3) 0%, transparent 70%);
}

.feature-icon svg {
  stroke: #00E0D3;
}

.feature-card h3 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #B0B0B0;
}

/* Gallery Section */
.gallery {
  background-color: #0D0D0D;
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
  transition: all 0.5s ease;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Testimonials Section */
.testimonials {
  background-color: rgba(13, 13, 13, 0.8);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(207, 255, 4, 0.1), transparent 50%);
  z-index: -1;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: rgba(30, 30, 30, 0.6);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 224, 211, 0.2);
}

.quote-icon {
  stroke: rgba(207, 255, 4, 0.3);
  margin-bottom: 1rem;
}

.testimonial-content p {
  color: #B0B0B0;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #00E0D3;
}

.author-info h4 {
  margin-bottom: 0.2rem;
  color: #FFFFFF;
}

.author-info p {
  margin-bottom: 0;
  color: #B0B0B0;
  font-size: 0.9rem;
}

/* Order Form Section */
.order-form {
  background-color: #0D0D0D;
  position: relative;
}

.order-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom right, rgba(255, 107, 107, 0.1), transparent 60%);
  z-index: -1;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: rgba(30, 30, 30, 0.6);
  border-radius: 15px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group:last-of-type {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background-color: rgba(30, 30, 30, 0.8);
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00E0D3;
  box-shadow: 0 0 0 2px rgba(0, 224, 211, 0.2);
}

.form-checkboxes {
  grid-column: 1 / -1;
  margin-bottom: 2rem;
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
}

.form-check input {
  margin-right: 0.8rem;
}

.form-check label {
  color: #B0B0B0;
  font-size: 0.9rem;
}

.contact-form button {
  grid-column: 1 / -1;
  justify-self: center;
}

/* FAQ Section */
.faq {
  background-color: rgba(13, 13, 13, 0.9);
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center left, rgba(107, 0, 224, 0.1), transparent 60%);
  z-index: -1;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.faq-form {
  width: 100%;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem;
  background-color: rgba(30, 30, 30, 0.6);
  color: #FFFFFF;
  font-weight: 500;
  cursor: pointer;
  border: none;
  text-align: left;
  font-size: 1rem;
}

.faq-icon {
  font-size: 1.5rem;
  line-height: 1;
  color: #00E0D3;
  margin-left: 1rem;
}

.faq-answer {
  padding: 0 1.2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: rgba(20, 20, 20, 0.6);
  color: #B0B0B0;
}

.faq-answer[style="display: block;"] {
  padding: 1.2rem;
  max-height: none;
}

.faq-item.active .faq-question {
  background: linear-gradient(to right, rgba(0, 224, 211, 0.1), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Contact Section */
.contact {
  background-color: #0D0D0D;
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom center, rgba(207, 255, 4, 0.1), transparent 60%);
  z-index: -1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item svg {
  stroke: #00E0D3;
  flex-shrink: 0;
}

.contact-item h3 {
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item address {
  color: #B0B0B0;
  margin-bottom: 0.3rem;
  font-style: normal;
}

.contact-map {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  height: 100%;
  min-height: 450px;
}

.contact-map iframe {
  border-radius: 15px;
  width: 100%;
  height: 100%;
}

/* Footer */
.footer {
  background: linear-gradient(to bottom, #0A0A0A, #151515);
  padding: 5rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 224, 211, 0.1), transparent 50%);
  z-index: 0;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-column h3 {
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, #00E0D3, #6B00E0);
}

.company-description {
  color: #B0B0B0;
  max-width: 400px;
  margin-top: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #B0B0B0;
}

.footer-links a:hover {
  color: #00E0D3;
}

.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #B0B0B0;
}

.contact-list svg {
  stroke: #00E0D3;
  margin-right: 0.8rem;
  flex-shrink: 0;
}

.contact-list a {
  color: #B0B0B0;
}

.contact-list a:hover {
  color: #00E0D3;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #B0B0B0;
}

/* Thanks Page */
.thanks-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 0;
}

.thanks-frame {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(30, 30, 30, 0.6);
  border: 2px solid;
  border-image: linear-gradient(135deg, #00E0D3, #6B00E0) 1;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.thanks-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom right, rgba(0, 224, 211, 0.1), transparent 70%);
  z-index: 0;
}

.thanks-content {
  position: relative;
  z-index: 1;
}

.thanks-icon {
  stroke: #00E0D3;
  margin-bottom: 2rem;
}

.thanks-content h1 {
  background: linear-gradient(135deg, #00E0D3 0%, #6B00E0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.thanks-content p {
  color: #B0B0B0;
  margin-bottom: 2rem;
}

.thanks-content .btn-primary {
  margin-top: 1rem;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: rgba(20, 20, 20, 0.95);
  padding: 1.5rem;
  z-index: 9999;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: bottom 0.5s ease;
  backdrop-filter: blur(10px);
}

.cookie-popup.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content h3 {
  margin-bottom: 0.5rem;
}

.cookie-content p {
  margin-bottom: 0;
  color: #B0B0B0;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* SVG Favicon */
@media (prefers-reduced-motion: no-preference) {
  .service-icon svg,
  .feature-icon svg,
  .about-features svg,
  .contact-item svg,
  .quote-icon {
    animation: pulse 3s infinite ease-in-out;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero-image {
    width: 40%;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .hero {
    padding: 7rem 0 4rem;
    flex-direction: column;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-image {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 80%;
    max-width: 400px;
    margin: 2rem auto 0;
  }
  
  .hero-image img {
    border-radius: 20px;
    height: 300px;
  }
  
  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .about-content .about-text {
    order: 1;
  }
  
  .about-content .about-image {
    order: 2;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .footer-column:first-child {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  section {
    padding: 3.5rem 0;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .feature-card,
  .service-card,
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .form-container {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0D0D0D;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #00E0D3 0%, #6B00E0 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #00E0D3 20%, #6B00E0 80%);
}

/* Custom Selection */
::selection {
  background: rgba(0, 224, 211, 0.3);
  color: #FFFFFF;
}
