:root {
  --primary-color: #d84b20;
  --primary-hover: #b83a15;
  --bg-dark: #0a0a0a;
  --bg-glass: rgba(255, 255, 255, 0.05);
  --bg-glass-hover: rgba(255, 255, 255, 0.1);
  --text-main: #f5f5f5;
  --text-muted: #a0a0a0;
  --border-glass: rgba(255, 255, 255, 0.1);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #fff;
}

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

ul {
  list-style: none;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-glass);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

nav ul {
  display: flex;
  gap: 30px;
}

nav ul li a {
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--primary-color);
}

.cta-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(216, 75, 32, 0.4);
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.9)), url('./assets/img/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  margin-top: 0;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: fadeUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 40px;
  color: var(--text-muted);
  animation: fadeUp 1s ease-out 0.3s forwards;
  opacity: 0;
  transform: translateY(30px);
}

/* Social Proof */
.social-proof {
  padding: 60px 20px;
  background: #111;
  text-align: center;
}

.social-proof h3 {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
}

.logos {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  opacity: 0.6;
}

.logos svg {
  height: 40px;
  width: auto;
  fill: #fff;
  transition: opacity 0.3s ease;
}

.logos svg:hover {
  opacity: 1;
}

/* About Us */
.about {
  padding: 100px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.about-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Features/Services - Bento Grid */
.services {
  padding: 100px 50px;
  background: #111;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-item:hover {
  background: var(--bg-glass-hover);
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.bento-item.large {
  grid-column: span 2;
  background-image: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.9)), url('./assets/img/services.jpg');
  background-size: cover;
  background-position: center;
}

.bento-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.bento-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.bento-item p {
  color: var(--text-muted);
}

/* Testimonials */
.testimonials {
  padding: 100px 50px;
  text-align: center;
}

.testimonials h2 {
  font-size: 3rem;
  margin-bottom: 60px;
}

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

.testimonial-card {
  background: var(--bg-glass);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border-glass);
  text-align: left;
}

.stars {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
  color: #fff;
}

/* FAQ */
.faq {
  padding: 100px 50px;
  background: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq h2 {
  font-size: 3rem;
  margin-bottom: 50px;
}

.faq-list {
  width: 100%;
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--border-glass);
  padding: 20px 0;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  text-align: left;
  outline: none;
}

.faq-icon {
  transition: transform 0.3s ease;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--text-muted);
  margin-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 15px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* CTA */
.cta-section {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(45deg, #0a0a0a, #1a0b06);
}

.cta-section h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* Footer */
footer {
  background: #050505;
  padding: 60px 50px 20px;
  border-top: 1px solid var(--border-glass);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
}

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

.footer-col ul li a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  padding: 20px 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  width: 90%;
  max-width: 600px;
}

.cookie-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cookie-text a {
  color: var(--primary-color);
  text-decoration: underline;
}

.cookie-btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
  white-space: nowrap;
}

.cookie-btn:hover {
  background: var(--primary-hover);
}

/* Animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Page Standard Layout (for subpages) */
.page-header {
  padding: 150px 50px 80px;
  text-align: center;
  background: #111;
  border-bottom: 1px solid var(--border-glass);
}

.page-header h1 {
  font-size: 3.5rem;
}

.page-content {
  padding: 80px 50px;
  max-width: 900px;
  margin: 0 auto;
}

.page-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.page-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .about { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-item.large { grid-column: span 1; }
  .hero h1 { font-size: 2.5rem; }
  nav ul { display: none; } /* Simplified for mobile */
}
