/* GLOBAL STYLES */
:root {
  --primary-bg: #1A1C2C;
  --secondary-bg: #2B2F4A;
  --accent-gold: #FFD700;
  --accent-wine: #D84F4F;
  --text-primary: #FFFFFF;
  --text-secondary: #EAEAEA;
  --gradient-bg: linear-gradient(135deg, var(--primary-bg), var(--secondary-bg));
  --transition: all 0.3s ease;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  --neon-glow: 0 0 10px rgba(255, 215, 0, 0.5);
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', 'Segoe UI', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-wine);
  text-shadow: var(--neon-glow);
}

h1, h2, h3, h4, h5 {
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.2rem;
  position: relative;
  margin-bottom: 2rem;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.text-center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  padding: 0 20px;
  margin: 0 auto;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--primary-bg);
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.btn:hover {
  background: var(--accent-wine);
  color: var(--text-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.text-center {
  text-align: center;
}

/* HEADER */
header {
  background: var(--gradient-bg);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 15px 0;
  box-shadow: var(--shadow);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.nav-desktop {
  display: flex;
  align-items: center;
}

.nav-desktop ul {
  display: flex;
  list-style: none;
  align-items: center;
  margin: 0;
}

.nav-desktop ul li {
  margin-left: 30px;
}

.nav-desktop ul li a {
  color: var(--text-primary);
  font-weight: 600;
  position: relative;
}

.nav-desktop ul li a.btn {
  padding: 8px 20px;
  margin-top: 0;
}

.nav-desktop ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition);
}

.nav-desktop ul li a:hover::after {
  width: 100%;
}

/* MOBILE MENU */
.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--accent-gold);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  background: var(--gradient-bg);
  width: 100%;
  padding: 20px;
  box-shadow: var(--shadow);
  transform: translateY(-100%);
  opacity: 0;
  transition: var(--transition);
}

.nav-mobile ul {
  list-style: none;
}

.nav-mobile ul li {
  margin-bottom: 15px;
}

.nav-mobile ul li a {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  padding: 10px 0;
}

/* Mobile menu toggle using CSS only */
#mobile-menu-toggle {
  display: none;
}

#mobile-menu-toggle:checked ~ .nav-mobile {
  transform: translateY(0);
  opacity: 1;
}

#mobile-menu-toggle:checked ~ .hamburger span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

#mobile-menu-toggle:checked ~ .hamburger span:nth-child(2) {
  opacity: 0;
}

#mobile-menu-toggle:checked ~ .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
}

/* HERO SECTION */
.hero {
  height: 100vh;
  min-height: 600px;
  padding-top: 100px;
  display: flex;
  align-items: center;
  background: var(--gradient-bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 30%, var(--primary-bg) 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
}

.hero p {
  margin-bottom: 30px;
  font-size: 1.2rem;
  animation: fadeInUp 1s ease-out 0.2s forwards;
  opacity: 0;
}

.hero-btns {
  animation: fadeInUp 1s ease-out 0.4s forwards;
  opacity: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FEATURES SECTION */
.features {
  background: var(--primary-bg);
  padding-top: 80px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-item {
  padding: 30px;
  border-radius: 15px;
  background: var(--gradient-bg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--accent-gold);
  border-radius: 5px;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.feature-image {
  width: 100%;
  height: 180px;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.feature-item:hover .feature-image img {
  transform: scale(1.1);
}

/* SERVICES SECTION */
.services {
  background: var(--primary-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-item {
  padding: 30px;
  border-radius: 15px;
  background: var(--gradient-bg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-image {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: var(--accent-gold);
  transition: var(--transition);
}

.service-item:hover::before {
  height: 100%;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-title {
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.service-desc {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
}

.service-item ul {
  margin-top: 15px;
  padding-left: 20px;
  color: var(--text-secondary);
}

.service-item ul li {
  margin-bottom: 8px;
}

/* WHY US SECTION */
.why-us {
  background: var(--gradient-bg);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-us-item {
  text-align: center;
  padding: 20px;
}

.why-us-icon {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.counter {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 15px;
}

/* TESTIMONIALS SECTION */
.testimonials {
  background: var(--primary-bg);
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  animation: slide 20s infinite linear;
  width: 300%;
}

.testimonial-item {
  flex: 1;
  padding: 30px;
  margin: 0 15px;
  background: var(--gradient-bg);
  border-radius: 10px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-item::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: var(--accent-gold);
  opacity: 0.2;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  background: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-bg);
}

.testimonial-info h4 {
  margin-bottom: 5px;
}

.testimonial-info p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.7;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-66.6666%);
  }
}

/* FAQ SECTION */
.faq {
  background: var(--primary-bg);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  background: var(--gradient-bg);
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}

.faq-question:hover {
  color: var(--accent-gold);
  text-decoration: none;
}

.faq-answer {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-toggle {
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--accent-gold);
  transition: var(--transition);
}

.faq-toggle::before {
  width: 100%;
  height: 2px;
  top: 9px;
  left: 0;
}

.faq-toggle::after {
  width: 2px;
  height: 100%;
  left: 9px;
  top: 0;
}

.faq-item.active .faq-toggle::after {
  transform: rotate(90deg);
  opacity: 0;
}

/* CONTACT FORM */
.contact {
  background: var(--gradient-bg);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: var(--text-primary);
}

.form-control:focus {
  outline: 2px solid var(--accent-gold);
}

select.form-control {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  padding-right: 40px;
}

select.form-control option {
  background-color: var(--primary-bg);
  color: var(--text-primary);
  padding: 10px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.form-check-input {
  margin-right: 10px;
  margin-top: 5px;
  width: 18px;
  height: 18px;
  accent-color: var(--accent-gold);
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--accent-gold);
  color: var(--primary-bg);
  border: none;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: var(--transition);
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit:hover {
  background: var(--accent-wine);
  color: var(--text-primary);
}

/* FOOTER */
footer {
  background: var(--gradient-bg);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
}

.footer-about p {
  margin-bottom: 20px;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links li a {
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-links li a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

/* COOKIE POPUP */
.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: var(--primary-bg);
  padding: 20px;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: bottom 0.5s ease;
}

.cookie-popup.show {
  bottom: 0;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-text {
  flex: 1;
  margin-right: 30px;
}

/* POLICY PAGES */
.policy-page {
  padding-top: 150px;
  min-height: 100vh;
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.policy-title {
  margin-bottom: 30px;
  text-align: center;
}

.policy-section {
  margin-bottom: 30px;
}

.policy-section h3 {
  margin-bottom: 15px;
  color: var(--accent-gold);
}

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-mobile {
    display: block;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  section {
    padding: 50px 0;
  }
  
  .testimonials-slider {
    width: 600%;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  section {
    padding: 40px 0;
  }
  
  .hero {
    min-height: 500px;
  }
  
  .form-container {
    padding: 20px;
  }
} 