@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&family=Syne:wght@500;700;800&display=swap');

:root {
  --primary-color: #e65c00; /* Terracotta Orange */
  --secondary-color: #0f2027; /* Deep ocean dark */
  --accent-color: #f9d423; /* Sun yellow */
  --bg-dark: #121212;
  --bg-light: #f8f9fa;
  --text-light: #e0e0e0;
  --text-dark: #2c3e50;
  --glass-bg: rgba(15, 32, 39, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
}

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

ul {
  list-style: none;
}

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

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--primary-color);
}

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

nav a {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  position: relative;
  transition: var(--transition);
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

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

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

.btn {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--primary-color), #ff8a00);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(230, 92, 0, 0.4);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 92, 0, 0.6);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  background: url('./assets/img/hero.jpg') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 32, 39, 0.6), rgba(15, 32, 39, 0.9));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(to right, #fff, var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeUp 1s ease-out;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #ccc;
  animation: fadeUp 1s ease-out 0.2s backwards;
}

.hero .btn {
  animation: fadeUp 1s ease-out 0.4s backwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Social Proof */
.social-proof {
  padding: 40px 5%;
  background: var(--secondary-color);
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid var(--glass-border);
}

.social-proof svg {
  height: 40px;
  fill: #888;
  transition: var(--transition);
}

.social-proof svg:hover {
  fill: var(--primary-color);
}

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

.about-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.section-title span {
  color: var(--primary-color);
}

.about-text p {
  margin-bottom: 20px;
  color: #bbb;
  font-size: 1.1rem;
}

/* Services / Features */
.services {
  padding: 100px 5%;
  background: #0a1418;
}

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

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

.bento-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(230,92,0,0.2), transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

.bento-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card h3 {
  font-size: 1.5rem;
  margin: 20px 0 15px;
  color: #fff;
}

.bento-card p {
  color: #aaa;
}

/* Testimonials */
.testimonials {
  padding: 100px 5%;
}

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

.testimonial-card {
  background: var(--secondary-color);
  padding: 40px;
  border-radius: 20px;
  position: relative;
}

.quote-icon {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  color: var(--primary-color);
  position: absolute;
  top: 20px;
  right: 30px;
  opacity: 0.3;
}

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

.client-name {
  font-weight: 700;
  color: #fff;
}

/* FAQ */
.faq {
  padding: 100px 5%;
  background: #0a1418;
}

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

details {
  background: var(--secondary-color);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 20px;
  cursor: pointer;
  transition: var(--transition);
}

details:hover {
  border-color: var(--primary-color);
}

summary {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  outline: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  color: var(--primary-color);
  font-size: 1.5rem;
  transition: transform 0.3s;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  margin-top: 15px;
  color: #bbb;
  border-top: 1px solid var(--glass-border);
  padding-top: 15px;
}

/* CTA */
.cta {
  padding: 100px 5%;
  text-align: center;
  background: linear-gradient(135deg, var(--secondary-color), #1a303a);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.cta h2 {
  font-size: 3rem;
  margin-bottom: 30px;
}

/* Footer */
footer {
  padding: 60px 5% 30px;
  background: var(--bg-dark);
}

.footer-grid {
  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;
  color: #fff;
}

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

.footer-col ul li a {
  color: #888;
  transition: var(--transition);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
  color: #666;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(15, 32, 39, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 20px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transform: translateY(150%);
  transition: transform 0.5s ease-out;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-text {
  max-width: 70%;
}

.cookie-text p {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.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: bold;
}

/* Inner Pages General */
.page-header {
  padding: 150px 5% 80px;
  background: var(--secondary-color);
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
}

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

.page-content {
  padding: 80px 5%;
  max-width: 1000px;
  margin: 0 auto;
}

.page-content h2 {
  font-size: 2rem;
  margin: 40px 0 20px;
  color: var(--primary-color);
}

.page-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #ccc;
}

.page-content ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #ccc;
}

.page-content li {
  margin-bottom: 10px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  background: var(--secondary-color);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}

.contact-form textarea {
  resize: vertical;
  height: 150px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}
