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

:root {
  --dark: #0a0e27;
  --accent: #ff6b35;
  --yellow: #ffd23f;
  --light: #f4f6ff;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--dark);
  color: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
}

.header {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(10, 14, 39, 0.7);
  backdrop-filter: blur(20px);
  padding: 12px 30px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  background: linear-gradient(135deg, var(--accent), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  width: 90%;
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease;
  z-index: 999;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.mobile-menu.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav {
  display: flex;
  gap: 35px;
}

.nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
}

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

.nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: 0.3s;
}

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

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  padding: 90px 80px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.15;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.15;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.25;
  }
}

.hero-text h1 {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 700;
}

.hero-text h1 span {
  display: block;
  background: linear-gradient(135deg, var(--accent), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff8956);
  color: #fff;
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.4);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-visual {
  position: relative;
  height: 600px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
  top: 50px;
  right: 100px;
  width: 280px;
  animation-delay: 0s;
}

.floating-card:nth-child(2) {
  bottom: 100px;
  right: 50px;
  width: 250px;
  animation-delay: 2s;
}

.floating-card:nth-child(3) {
  top: 200px;
  left: 50px;
  width: 220px;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.card-stat {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.card-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.section {
  padding: 90px 20px;
}

.section-title {
  font-size: 56px;
  margin-bottom: 80px;
  text-align: center;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--yellow));
  transform: scaleX(0);
  transition: 0.4s;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 107, 53, 0.3);
}

.service-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--accent);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #fff;
}

.service-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 15px;
}

.service-icon {
  font-size: 48px;
  margin-top: 20px;
  opacity: 0.7;
}

.service-image {
  width: 100%;
  height: 190px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  margin-bottom: 15px;
}

.why-us {
  background: rgba(255, 255, 255, 0.02);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: 0.4s;
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1),
    rgba(255, 210, 63, 0.05)
  );
}

.why-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.process {
  background: rgba(255, 255, 255, 0.02);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-item {
  display: flex;
  gap: 50px;
  margin-bottom: 80px;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent), var(--yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
  z-index: 2;
}

.timeline-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.stats {
  background: linear-gradient(135deg, var(--accent), var(--yellow));
  padding: 80px 40px;
  margin: 100px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-box {
  text-align: center;
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: rgba(10, 14, 39, 0.7);
  font-weight: 500;
}

.projects-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.bento-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 350px;
  cursor: pointer;
  transition: 0.4s;
}

.bento-item:hover {
  transform: scale(1.02);
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  height: 720px;
}

.bento-tall {
  grid-row: span 2;
  height: 720px;
}

.bento-medium {
  grid-column: span 2;
  height: 350px;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 40px 30px;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.4s;
}

.bento-item:hover .bento-overlay {
  transform: translateY(0);
  opacity: 1;
}

.bento-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 107, 53, 0.2);
  color: var(--accent);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.bento-overlay h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.bento-overlay p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  transition: 0.3s;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.news-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.4s;
}

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

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 25px;
}

.news-date {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.news-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: 0.4s;
}

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

.team-img {
  font-size: 64px;
  margin-bottom: 20px;
}

.team-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.team-role {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
}

.team-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

.about {
  background: rgba(255, 255, 255, 0.02);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-text h3 {
  font-size: 36px;
  margin-bottom: 25px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature i {
  color: var(--accent);
  font-size: 20px;
}

.feature span {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
}

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

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.value-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.4s;
}

.value-item:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
}

.value-item h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--accent);
}

.value-item p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.4s;
}

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

.star {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}

.review-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.role {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
}

.text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 15px;
  font-style: italic;
}

.contact {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 30px;
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-info > p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  line-height: 1.6;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-item i {
  font-size: 24px;
  color: var(--accent);
  margin-top: 5px;
  min-width: 24px;
}

.info-item h4 {
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 5px;
  font-weight: 600;
}

.info-item p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

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

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

.contact-form select {
  cursor: pointer;
}

.contact-form select option {
  background: var(--dark);
  color: #fff;
}

.contact-form button {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--accent), #ff8956);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
}

.contact-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.alert {
  padding: 15px 20px;
  border-radius: 12px;
  margin-top: 20px;
  font-size: 15px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert-success {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #4caf50;
}

.alert-error {
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #f44336;
}

.footer {
  background: rgba(255, 255, 255, 0.02);
  padding: 60px 40px 30px;
  margin-top: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--accent), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-section h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 600;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 2;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}

.footer-section a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.bg-icons {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.bg-icons i {
  position: absolute;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.03);
  animation: floatIcons 20s linear infinite;
}

.bg-icons i:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-duration: 22s;
}
.bg-icons i:nth-child(2) {
  top: 60%;
  left: 10%;
  animation-duration: 26s;
}
.bg-icons i:nth-child(3) {
  top: 20%;
  left: 80%;
  animation-duration: 24s;
}
.bg-icons i:nth-child(4) {
  top: 75%;
  left: 70%;
  animation-duration: 28s;
}
.bg-icons i:nth-child(5) {
  top: 40%;
  left: 50%;
  animation-duration: 30s;
}

@keyframes floatIcons {
  0% {
    transform: translateY(40px) scale(0.9);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(-80px) scale(1.1);
    opacity: 0;
  }
}

#landing-page {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #11183a, #050816);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease;
}

#landing-page.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.landing-content {
  text-align: center;
}

.landing-content h1 {
  font-size: 56px;
  font-weight: 700;
}

.landing-content span {
  color: #ff6b35;
}

.landing-content p {
  margin-top: 10px;
  opacity: 0.8;
  letter-spacing: 2px;
}

.landing-loader {
  width: 260px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  overflow: hidden;
  margin: 40px auto 20px;
}

.landing-loader span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff6b35, #ffd23f);
  animation: landingLoad 3s linear forwards;
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 50px rgba(37, 211, 102, 0.5);
}

@keyframes landingLoad {
  to {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 40px 60px;
  }

  .hero-visual {
    display: none;
  }

  .hero-text h1 {
    font-size: 56px;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .projects-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-large {
    grid-column: span 2;
    grid-row: span 1;
    height: 400px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .service-cards {
    padding: 0 20px;
    grid-template-columns: 1fr;
  }

  .projects-bento {
    grid-template-columns: 1fr;
  }

  .bento-large,
  .bento-medium {
    grid-column: span 1;
    height: 300px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid,
  .team-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    flex-direction: column !important;
    gap: 20px;
  }

  .timeline-number {
    margin: 0 auto;
  }

  .contact {
    padding: 60px 20px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer {
    padding: 40px 20px 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 20px 40px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .section {
    padding: 60px 10px;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .contact-info h3 {
    font-size: 24px;
  }

  .info-item {
    gap: 15px;
  }

  .contact-form {
    padding: 25px 15px;
  }
}
.footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
  display: block;
}

.footer-section p {
  margin-top: 12px;
}

@media (max-width: 768px) {
  .footer-logo {
    width: 150px;
  }
}
