:root {
  --primary: #ff6b35;
  --primary-dark: #e5532a;
  --secondary: #2ec4b6;
  --accent: #ffd23f;
  --dark: #0a2540;
  --bg: #fffdf9;
  --bg-soft: #fff4e6;
  --text: #1a1a1a;
  --text-muted: #4a4a4a;
  --border: #ffd9c2;
  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--border);
  z-index: 100;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: -0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  transform: rotate(-5deg);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 0.6rem 1.3rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
}

/* HERO */
.hero {
  position: relative;
  padding: 5rem 0 7rem;
  background: linear-gradient(135deg, #fff4e6 0%, #ffe0c2 50%, #ffd23f33 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(60px);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 350px;
  height: 350px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.25;
  filter: blur(60px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background: white;
  border: 2px solid var(--primary);
  border-radius: 50px;
  box-shadow: 4px 4px 0 var(--primary);
}

.hero-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

h1 .highlight {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

h1 .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.05em;
  width: 100%;
  height: 0.3em;
  background: var(--accent);
  z-index: -1;
  transform: skewX(-10deg);
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 560px;
  line-height: 1.6;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem 2.2rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  position: relative;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 5px 5px 0 var(--dark);
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--dark);
}

.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--dark);
}

.btn-secondary {
  background: white;
  color: var(--dark);
  border: 2px solid var(--dark);
  box-shadow: 4px 4px 0 var(--secondary);
}

.btn-secondary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--secondary);
}

.trust-badges {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.badge-icon {
  width: 32px;
  height: 32px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-image {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  aspect-ratio: 4 / 4.2;
}

.hero-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid var(--dark);
  box-shadow: 12px 12px 0 var(--primary);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}

.hero-image-wrap:hover {
  transform: rotate(0deg);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 1rem 1.3rem;
  border-radius: 14px;
  border: 2px solid var(--dark);
  box-shadow: 6px 6px 0 var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.floating-card.card-1 {
  top: 15%;
  left: -8%;
  transform: rotate(-6deg);
  animation: float 4s ease-in-out infinite;
}

.floating-card.card-2 {
  bottom: 12%;
  right: -6%;
  transform: rotate(5deg);
  animation: float 4s ease-in-out infinite 1s;
}

.floating-card .icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-10px) rotate(-6deg); }
}

.floating-card.card-2 {
  animation-name: float2;
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(5deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

/* SECTIONS */
section {
  padding: 6rem 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  background: var(--bg-soft);
  border-radius: 50px;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  padding: 2.5rem 2rem;
  border-radius: 20px;
  background: white;
  border: 2px solid var(--dark);
  box-shadow: 6px 6px 0 var(--dark);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.4;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--dark);
}

.service-card:hover::after {
  transform: scale(1.5);
}

.service-card:nth-child(2)::after { background: var(--secondary); }
.service-card:nth-child(3)::after { background: var(--primary); }
.service-card:nth-child(4)::after { background: var(--primary); }
.service-card:nth-child(5)::after { background: var(--secondary); }
.service-card:nth-child(6)::after { background: var(--accent); }

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  transform: rotate(-3deg);
  position: relative;
  z-index: 1;
}

.service-card:nth-child(2) .service-icon { background: var(--secondary); }
.service-card:nth-child(3) .service-icon { background: var(--accent); color: var(--dark); }
.service-card:nth-child(4) .service-icon { background: var(--accent); color: var(--dark); }
.service-card:nth-child(5) .service-icon { background: var(--secondary); }
.service-card:nth-child(6) .service-icon { background: var(--primary); }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.97rem;
  position: relative;
  z-index: 1;
}

/* ABOUT */
.about {
  background: var(--secondary);
  color: white;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(255, 210, 63, 0.3), transparent 50%);
  pointer-events: none;
}

.about .section-tag {
  background: white;
  color: var(--primary-dark);
}

.about .section-sub {
  color: rgba(255, 255, 255, 0.9);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-image {
  border-radius: 24px;
  overflow: visible;
  position: relative;
}

.about-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid var(--dark);
  box-shadow: 12px 12px 0 var(--accent);
  transform: rotate(-2deg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text h2 {
  color: var(--dark);
}

.about-text p {
  margin-bottom: 1.2rem;
  color: var(--dark);
  font-size: 1.05rem;
  font-weight: 500;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.fact-card {
  background: white;
  border: 2px solid var(--dark);
  border-radius: 14px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 4px 4px 0 var(--dark);
}

.fact-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.fact-card span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--bg-soft);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid var(--dark);
  box-shadow: 5px 5px 0 var(--primary);
  position: relative;
}

.testimonial-card:nth-child(2) { box-shadow: 5px 5px 0 var(--secondary); }
.testimonial-card:nth-child(3) { box-shadow: 5px 5px 0 var(--accent); }

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--primary);
  font-weight: 800;
  line-height: 1;
}

.testimonial-card p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  margin: 1.2rem 0 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 2px dashed var(--border);
  padding-top: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
}

.testimonial-card:nth-child(2) .author-avatar { background: var(--secondary); }
.testimonial-card:nth-child(3) .author-avatar { background: var(--accent); color: var(--dark); }

.author-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
}

.author-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  border: 2px solid var(--dark);
  box-shadow: 4px 4px 0 var(--dark);
  transition: transform 0.2s ease;
}

.contact-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--dark);
}

.contact-item:nth-child(2) { box-shadow: 4px 4px 0 var(--secondary); }
.contact-item:nth-child(3) { box-shadow: 4px 4px 0 var(--accent); }
.contact-item:nth-child(4) { box-shadow: 4px 4px 0 var(--primary); }

.contact-item:nth-child(2):hover { box-shadow: 6px 6px 0 var(--secondary); }
.contact-item:nth-child(3):hover { box-shadow: 6px 6px 0 var(--accent); }
.contact-item:nth-child(4):hover { box-shadow: 6px 6px 0 var(--primary); }

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  transform: rotate(-3deg);
}

.contact-item:nth-child(2) .contact-icon { background: var(--secondary); }
.contact-item:nth-child(3) .contact-icon { background: var(--accent); color: var(--dark); }
.contact-item:nth-child(4) .contact-icon { background: var(--primary); }

.contact-item strong {
  display: block;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.contact-item p, .contact-item a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.97rem;
}

.contact-item a:hover {
  color: var(--primary);
}

.contact-form {
  background: var(--dark);
  padding: 2.8rem;
  border-radius: 24px;
  border: 4px solid var(--dark);
  box-shadow: 10px 10px 0 var(--primary);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: white;
}

.contact-form .form-sub {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.8rem;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.btn-submit {
  width: 100%;
  background: var(--primary);
  color: white;
  font-weight: 700;
  padding: 1.1rem;
  border-radius: 12px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  margin-top: 0.5rem;
  transition: all 0.2s;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 2rem;
  text-align: center;
  font-size: 0.9rem;
  border-top: 4px solid var(--primary);
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  margin: 0 0.8rem;
  font-weight: 500;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--accent);
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.2rem;
}

/* RESPONSIVE */
@media (max-width: 880px) {
  .nav-links {
    display: none;
  }
  
  .hero {
    padding: 3rem 0 4rem;
  }
  
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .facts {
    grid-template-columns: 1fr 1fr;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .hero-image-wrap,
  .about-image-wrap {
    transform: rotate(0deg);
  }
  
  .floating-card {
    display: none;
  }
  
  footer .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  .btn {
    padding: 0.95rem 1.8rem;
    width: 100%;
    justify-content: center;
  }
  
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  
  .facts {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
}

/* ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.fade-in:nth-child(2) { animation-delay: 0.1s; }
.fade-in:nth-child(3) { animation-delay: 0.2s; }
.fade-in:nth-child(4) { animation-delay: 0.3s; }
.fade-in:nth-child(5) { animation-delay: 0.4s; }
.fade-in:nth-child(6) { animation-delay: 0.5s; }