/* Modern Warm Gradient Design with New Typography */

/* Warm Sunset Theme Variables */
:root {
  --primary-orange: #ff6b35;
  --primary-coral: #ff8e53;
  --secondary-peach: #ffb088;
  --accent-pink: #ff9a9e;
  --accent-yellow: #feca57;
  --warm-white: #fff8f3;
  --warm-gray: #8b7355;
  --dark-brown: #2c1810;
  --light-cream: #fff5f0;
  --shadow-warm: rgba(255, 107, 53, 0.15);

  --gradient-sunset: linear-gradient(
    135deg,
    #ff6b35 0%,
    #ff8e53 50%,
    #ffb088 100%
  );
  --gradient-peach: linear-gradient(135deg, #ffb088 0%, #ff9a9e 100%);
  --gradient-warm: linear-gradient(135deg, #feca57 0%, #ff6b35 100%);
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", "Space Grotesk", sans-serif;
  background: linear-gradient(135deg, #fff8f3 0%, #fff5f0 100%);
  color: var(--dark-brown);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff8f3; /* Fallback for older browsers */
  background: rgba(255, 248, 243, 0.98);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 107, 53, 0.15);
  box-shadow: 0 2px 20px rgba(255, 107, 53, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-svg {
  width: 40px;
  height: 40px;
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  from {
    filter: drop-shadow(0 0 5px var(--primary-orange));
  }
  to {
    filter: drop-shadow(0 0 15px var(--accent-pink));
  }
}

/* Logo text styling */
.logo-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navbar links */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--dark-brown);
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--primary-orange);
  transform: translateY(-1px);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-sunset);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-orange);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff8f3 0%, #fff5f0 50%, #ffe8e0 100%);
  padding-top: 80px; /* Add padding to account for fixed navbar */
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  animation: slideInLeft 1s ease-out;
}

.hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--dark-brown);
}

.text-gradient {
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--warm-gray);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-family: "Outfit", sans-serif;
}

.hero-cta {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: "Outfit", sans-serif;
}

.btn-primary {
  background: var(--gradient-sunset);
  color: white;
  box-shadow: 0 8px 20px var(--shadow-warm);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px var(--shadow-warm);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-orange);
  border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
  background: var(--primary-orange);
  color: white;
  box-shadow: 0 8px 20px var(--shadow-warm);
}

.hero-visual {
  animation: slideInRight 1s ease-out;
}

.hero-svg {
  width: 100%;
  height: auto;
  animation: floatSoft 4s ease-in-out infinite;
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(255, 107, 53, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 154, 158, 0.08) 0%,
      transparent 50%
    );
  z-index: -1;
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-brown);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--warm-gray);
  max-width: 600px;
  margin: 0 auto;
  font-family: "Outfit", sans-serif;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: linear-gradient(135deg, #fffbf7 0%, #fff8f3 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 350px;
  margin: 0 auto;
}

.about-text h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--warm-gray);
  font-family: "Outfit", sans-serif;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8e0 100%);
  border-radius: 20px;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 107, 53, 0.1);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px var(--shadow-warm);
}

.stat h4 {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
}

.about-svg {
  width: 100%;
  height: auto;
}

/* Why Choose Us */
.why-choose {
  padding: 6rem 0;
  background: linear-gradient(135deg, #fff8f3 0%, #fffbf7 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(135deg, #ffffff 0%, #fff8f3 100%);
  padding: 2.5rem;
  border-radius: 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 107, 53, 0.1);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.05);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-warm);
  border-color: var(--primary-orange);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-sunset);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px var(--shadow-warm);
}

.feature-icon img {
  width: 40px;
  height: 40px;
}

.feature-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-brown);
  font-weight: 600;
}

.feature-card p {
  color: var(--warm-gray);
  line-height: 1.6;
  font-family: "Outfit", sans-serif;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: linear-gradient(135deg, #fff8f3 0%, #fff5f0 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #fffbf7 100%);
  padding: 2.5rem;
  border-radius: 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 107, 53, 0.15);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.08);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px var(--shadow-warm);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(255, 154, 158, 0.3);
}

.service-icon img {
  width: 40px;
  height: 40px;
}

.service-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-brown);
  font-weight: 600;
}

.service-card p {
  color: var(--warm-gray);
  line-height: 1.6;
  font-family: "Outfit", sans-serif;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: linear-gradient(135deg, #fff8f3 0%, #fff5f0 50%, #ffe8e0 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 107, 53, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 154, 158, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 90%,
      rgba(254, 202, 87, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact .section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.contact .section-title {
  color: var(--dark-brown);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.contact .section-subtitle {
  color: var(--warm-gray);
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  background: linear-gradient(135deg, #ffffff 0%, #fff8f3 100%);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 15px 35px var(--shadow-warm);
}

.contact-info h3 {
  color: var(--dark-brown);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 53, 0.15);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-warm);
}

.contact-item h4 {
  color: var(--dark-brown);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: var(--warm-gray);
  font-size: 1rem;
  margin: 0;
}

.contact-form {
  background: linear-gradient(135deg, #ffffff 0%, #fff8f3 100%);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 15px 35px var(--shadow-warm);
}

.contact-form h3 {
  color: var(--dark-brown);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  color: var(--dark-brown);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #fff8f3 0%, #ffffff 100%);
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  color: var(--dark-brown);
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  width: 100%;
  padding: 1.125rem 2rem;
  background: var(--gradient-sunset);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px var(--shadow-warm);
  position: relative;
  overflow: hidden;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--shadow-warm);
}

/* Responsive Contact */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact .section-title {
    font-size: 2.5rem;
  }

  .contact-info,
  .contact-form {
    padding: 2rem;
  }
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f0 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.05);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--shadow-warm);
}

.contact-icon {
  width: 40px;
  height: 40px;
}

.contact-item h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-item p {
  color: var(--warm-gray);
  line-height: 1.6;
  font-family: "Outfit", sans-serif;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 15px;
  background: linear-gradient(135deg, #ffffff 0%, #fff8f3 100%);
  color: var(--dark-brown);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: "Outfit", sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--warm-gray);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8e0 100%);
  padding: 3rem 0 1rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo img {
  width: 40px;
  height: 40px;
}

.footer-logo span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ffffff 0%, #fff8f3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 107, 53, 0.2);
  box-shadow: 0 3px 10px rgba(255, 107, 53, 0.1);
}

.footer-social a:hover {
  background: var(--gradient-sunset);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow-warm);
}

.footer-social img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 107, 53, 0.1);
  color: var(--warm-gray);
  font-family: "Outfit", sans-serif;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 70%,
    rgba(255, 107, 53, 0.05) 0%,
    transparent 50%
  );
  z-index: -1;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .about-content {
    gap: 3rem;
  }

  .about-visual {
    max-width: 300px;
    margin: 0 auto;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .about-text h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 968px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .about-visual {
    order: -1;
    max-width: 250px;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .stat {
    padding: 1rem;
  }

  .stat h4 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(255, 248, 243, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(255, 107, 53, 0.1);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero {
    padding-top: 70px; /* Adjust for mobile navbar height */
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-visual {
    max-width: 200px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero {
    padding-top: 60px; /* Smaller padding for very small screens */
  }

  .section-title {
    font-size: 1.8rem;
  }

  .about-text h3 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .stat {
    padding: 0.8rem;
  }

  .stat h4 {
    font-size: 1.2rem;
  }

  .about-visual {
    max-width: 180px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
}

/* Remove any contact-specific styling and ensure consistent warm theme */

/* Ensure all sections follow the warm theme */
section {
  background: linear-gradient(135deg, #fff8f3 0%, #fff5f0 100%);
}

/* Footer adjustments to match warm theme */
.footer-logo span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Optional: Light sparkle particles */
.why-bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background: url("assets/svg/why-sparkle.svg") repeat;
  opacity: 0.12;
  animation: sparkle-move 18s linear infinite;
}
