/* CSS Variables */
:root {
  --primary-color: #1C2B3A;
  --secondary-color: #2D3E50;
  --accent-color: #C9A227;
  --background-color: #F5F8FB;
  --dark-color: #111111;
  --text-color: #333333;
  --border-color: rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.4);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --main-font: 'DM Serif Display', serif;
  --alt-font: 'DM Sans', sans-serif;
}

/* Reset & Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: var(--alt-font);
}

/* DARK-PRO Preset Rules (Literally Copied) */
body,html{background:var(--secondary-color);color:#F0F0F0} section{background:var(--secondary-color);padding:72px 16px} @media(min-width:1024px){section{padding:88px 24px}} .card{background:rgba(255,255,255,0.06);border-top:3px solid var(--accent-color);border-radius:8px} p,.subtitle{color:rgba(240,240,240,0.75)} .btn:hover,.btn:focus{box-shadow:0 0 24px var(--accent-color)} section+section{border-top:1px solid rgba(255,255,255,0.08)}

/* Typography Scale */
h1 {
  font-family: var(--main-font);
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
}

h2 {
  font-family: var(--main-font);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
}

h3 {
  font-family: var(--main-font);
  font-size: clamp(18px, 2.8vw, 28px);
  font-weight: 600;
  line-height: 1.3;
  color: #FFFFFF;
}

p {
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.7;
}

.section-title {
  text-align: center;
  margin-bottom: 16px;
}

.subtitle {
  font-size: clamp(15px, 1.8vw, 19px);
  line-height: 1.6;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.05);
}

/* Header & CSS Burger Menu */
header {
  background: var(--primary-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.burger-btn .bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #FFFFFF;
  border-radius: 99px;
  transition: transform 0.3s, opacity 0.3s;
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--primary-color);
  padding: 24px 16px;
  border-bottom: 2px solid var(--accent-color);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-nav a {
  color: #F0F0F0;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--accent-color);
}

#menu-toggle:checked ~ .site-nav {
  display: block;
}

#menu-toggle:checked ~ .burger-btn .bar:first-child {
  transform: translateY(8px) rotate(45deg);
}

#menu-toggle:checked ~ .burger-btn .bar:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked ~ .burger-btn .bar:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

@media (min-width: 768px) {
  .burger-btn {
    display: none;
  }
  .site-nav {
    display: flex !important;
    position: static;
    padding: 0;
    box-shadow: none;
    border-bottom: none;
  }
  .site-nav ul {
    flex-direction: row;
    gap: 28px;
  }
}

/* HERO: oversized-word */
.hero-oversized {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--primary-color);
  overflow: hidden;
  padding: 64px 16px;
}

.oversized-word {
  font-size: clamp(5rem, 20vw, 16rem);
  opacity: 0.05;
  font-weight: 900;
  position: absolute;
  z-index: 0;
  white-space: nowrap;
  user-select: none;
  color: #FFFFFF;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-title {
  margin-bottom: 24px;
}

.hero-cta-group {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

@media (min-width: 576px) {
  .hero-cta-group {
    flex-direction: row;
  }
}

/* SECTION 1: Features */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.min-h-400 {
  min-height: 400px;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.feature-title {
  margin-bottom: 12px;
}

.feature-text {
  font-size: 15px;
}

/* SECTION 2: Stats Counter with @property */
@property --count {
  syntax: '<integer>';
  initial-value: 0;
  inherits: false;
}

.stats-section {
  background: var(--primary-color) !important;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

@media (min-width: 576px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 24px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-num {
  --target: 80;
  font-family: var(--main-font);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--accent-color);
  display: inline-block;
  animation: count-up 2s ease-out forwards;
  animation-timeline: view();
  animation-range: entry 0% entry 60%;
  counter-reset: n var(--count);
}

.stat-num::after {
  content: counter(n);
}

.stat-suffix {
  font-family: var(--main-font);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent-color);
  margin-left: 2px;
}

.stat-label {
  margin-top: 12px;
  font-size: 15px;
  max-width: 220px;
}

@keyframes count-up {
  from { --count: 0; }
  to { --count: var(--target); }
}

/* SECTION 3: About + Image */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-image-wrapper {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.about-img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-intro {
  font-size: 18px;
  font-weight: 500;
  color: #FFFFFF !important;
  margin-bottom: 16px;
}

.about-text {
  margin-bottom: 24px;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

.about-list i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

/* SECTION 4: Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stars {
  color: var(--accent-color);
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.testimonial-quote {
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-author {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.author-name {
  font-weight: 700;
  color: #FFFFFF;
}

.author-location {
  font-size: 13px;
  color: rgba(240, 240, 240, 0.6);
}

/* SECTION 5: Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .main-item {
    grid-column: span 2;
  }
}

.gallery-item {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 20px;
  color: #FFFFFF;
  font-weight: 600;
}

.color-item-1 {
  background-color: var(--primary-color);
  border: 2px solid var(--accent-color);
}

.color-item-2 {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.color-item-2 h3, .color-item-2 i {
  color: var(--primary-color) !important;
}

.gallery-color-content {
  text-align: center;
  padding: 24px;
  z-index: 1;
}

.gallery-color-content i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.gallery-color-content h3 {
  font-size: 18px;
  font-weight: 600;
}

/* SECTION 6: Contact + FAQ */
.contact-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .contact-faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info .section-title {
  margin-bottom: 24px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-top: 4px;
}

.contact-item h4 {
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

/* GET Form Styling */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.04);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-title {
  margin-bottom: 24px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(240, 240, 240, 0.85);
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.2);
  color: #FFFFFF;
  font-family: var(--alt-font);
  font-size: 15px;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.form-checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.form-checkbox input {
  margin-top: 4px;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 13px;
  color: rgba(240, 240, 240, 0.7);
  line-height: 1.5;
}

/* Open FAQ Container */
.faq-container {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 24px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-color);
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.faq-answer {
  font-size: 15px;
  line-height: 1.6;
}

/* Scroll-reveal Animation */
@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: reveal-up linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 30%;
}

/* Footer */
footer {
  background: var(--primary-color);
  padding: 48px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

footer img[alt="logo"] {
  filter: brightness(0) invert(1);
  height: 40px;
  width: auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-nav a {
  color: rgba(240, 240, 240, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--accent-color);
}

.footer-copy {
  font-size: 13px;
  color: rgba(240, 240, 240, 0.5);
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .footer-nav {
    justify-content: flex-end;
  }
}
.bg-gray-100,
.bg-gray-100 p,
.bg-white,
.bg-white p,
.bg-yellow-100,
.bg-yellow-100 p,
.bg-blue-100,
.bg-blue-100 p,
.bg-red-100,
.bg-red-100 p,
.bg-green-100,
.bg-green-100 p  {
  color: #111A13;
}