@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #ff8906;
  --secondary-color: #e5306f;
  --text-dark: #0e0d16;
  --text-light: #767268;
  --extra-light: #f7f8fd;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
}

nav {
  position: fixed;
  isolation: isolate;
  width: 100%;
  z-index: 9;
}

.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
}

.nav__logo a {
  font-size: clamp(1.2rem, 2vw, 2rem);
  /* responsive font size */
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
  /* adjust to your theme */
  font-family: 'Poppins', sans-serif;
  /* optional modern font */
}

.nav__logo a span {
  color: #e61946;
  /* highlight color */
}


.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--primary-color);
  transition: transform 0.5s;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(100%);
}

.nav__links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
}

.nav__btns {
  display: none;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 2.5rem 1rem;
}

.section__header {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
}

.section__description {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.5rem;
  text-align: center;
}


/* Desktop / Large screens */
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 4rem 2rem;
}

.header__image img {
  max-width: 100%;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.header__content {
  max-width: 600px;
}

.header__content h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.header__content h1 span {
  color: var(--primary-color);
}

.section__description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.header__btns {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.header__btns .btn {
  padding: 0.8rem 1.5rem;
  border: none;
  background: var(--primary-color);
  color: white;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.header__btns .btn:hover {
  background: var(--secondary-color);
}

.video-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 500;
  transition: 0.3s;
}

.video-btn span {
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  padding: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-btn:hover {
  color: var(--secondary-color);
}

/* 📱 Mobile & Tablet responsiveness */
@media (max-width: 992px) {
  .header__container {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1.5rem;
  }

  .header__content {
    max-width: 100%;
  }

  .header__content h1 {
    font-size: 2.2rem;
  }

  .section__description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .header__btns {
    justify-content: center;
  }

  .header__image {
    order: -1;
    /* Puts image on top for mobile */
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .header__content h1 {
    font-size: 1.8rem;
  }

  .section__description {
    font-size: 0.95rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .video-btn {
    font-size: 0.9rem;
  }
}


.service {
  background-color: var(--extra-light);
  padding: 4rem 1rem;
}

.service__container .section__header {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
}

.service__grid {
  margin-block: 3rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service__card {
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: var(--white);
  border: 2px solid transparent;
  transition: all 0.4s ease-in-out;
  text-align: left;
  cursor: pointer;
  animation: fadeInUp 0.7s ease-in-out forwards;
  opacity: 0;
}

.service__card:nth-child(odd) {
  animation-delay: 0.2s;
}

.service__card:nth-child(even) {
  animation-delay: 0.4s;
}

.service__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service__card div {
  margin: 0 auto 1rem auto;
  /* ✅ Center icon container */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 2rem;
}

.service__card:nth-child(1) div {
  color: #00bcff;
  background: #f0f9ff;
}

.service__card:nth-child(2) div {
  color: #ff9f43;
  background: #fff5e6;
}

.service__card:nth-child(3) div {
  color: #c27aff;
  background: #f8f3ff;
}

.service__card:nth-child(4) div {
  color: #00d5be;
  background: #f0fdfa;
}

.service__card:nth-child(5) div {
  color: #ff6b81;
  background: #fff1f3;
}

.service__card:nth-child(6) div {
  color: #2ed573;
  background: #f0fff4;
}

.service__card:nth-child(7) div {
  color: #1e90ff;
  background: #f0f8ff;
}

.service__card:nth-child(8) div {
  color: #ffa502;
  background: #fff8ec;
}

.service__card:nth-child(9) div {
  color: #ff4757;
  background: #fff1f2;
}

.service__card:nth-child(10) div {
  color: #3742fa;
  background: #f1f3ff;
}

.service__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  /* ✅ Center title */
}

.service__card .section__description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
}

.service__btn {
  display: flex;
  justify-content: center;
}

.service__btn .btn {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #00bcff, #c27aff);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.service__btn .btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #ff637e, #00d5be);
}

/* Animation */
@keyframes fadeInUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.hidden {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease-in-out;
}

.service__card.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}





/* ABOUT SECTION */
.about__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 4rem 2rem;
  flex-wrap: wrap;
}

.about__image img {
  max-width: 500px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: scale(1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about__image img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.about__content {
  flex: 1 1 400px;
  animation: fadeInUp 1s ease-in-out forwards;
}

.about__content .section__header {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 2rem;
  line-height: 1.4;
  position: relative;
}

.about__content .section__header::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}

.about__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  /* reduce spacing */
  background: #fff;
  padding: 0.8rem 1rem;
  /* reduce padding */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  min-height: 70px;
  /* ensures uniform but smaller height */
}

.about__list li:nth-child(1) {
  animation-delay: 0.2s;
}

.about__list li:nth-child(2) {
  animation-delay: 0.4s;
}

.about__list li:nth-child(3) {
  animation-delay: 0.6s;
}

.about__list li:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.about__list span {
  font-size: 1.4rem;
  /* smaller icon */
  color: #ff416c;
  background: #fff0f3;
  padding: 0.5rem;
  /* reduce padding inside circle */
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.about__list li:hover span {
  transform: scale(1.2) rotate(10deg);
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #fff;
}

.about__list h4 {
  font-size: 1.05rem;
  /* slightly smaller */
  font-weight: 600;
  color: #333;
  margin-bottom: 0.2rem;
}

.about__list p {
  font-size: 0.9rem;
  /* reduce text size */
  color: #666;
  line-height: 1.4;
  /* reduce line spacing */
  text-align: left;
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about__container {
    flex-direction: column;
    text-align: center;
  }

  .about__list li {
    text-align: left;
  }

  .about__content .section__header::after {
    left: 50%;
    transform: translateX(-50%);
  }
}


.portfolio__container {
  text-align: center;
  padding: 4rem 2rem;
}

.portfolio__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  padding: 0 1rem;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.portfolio__header .section__header {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.portfolio__header .section__header span {
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.portfolio__header .section__header::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  margin: 0.5rem auto 0;
}

.portfolio__header .section__description {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
  font-weight: 400;
}

/* Animation */
@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .portfolio__header .section__header {
    font-size: 1.8rem;
  }

  .portfolio__header .section__description {
    font-size: 0.95rem;
  }
}


.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.portfolio__card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s forwards;
}

.portfolio__card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio__card:hover img {
  transform: scale(1.05);
}

.portfolio__info {
  padding: 1rem;
}

.portfolio__info h4 {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 0.3rem;
}

.portfolio__info p {
  font-size: 0.9rem;
  color: #555;
}

/* Hide extra cards initially */
.portfolio-hidden {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.6s ease;
}

/* Show hidden cards */
.portfolio-hidden.show {
  max-height: 500px;
  opacity: 1;
  margin-top: 1rem;
}

/* Button styling */
.portfolio__button {
  text-align: center;
  margin-top: 2rem;
}

#togglePortfolio {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 25px;
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

#togglePortfolio:hover {
  background: linear-gradient(90deg, #ff4b2b, #ff416c);
  transform: translateY(-3px);
}

/* Animation */
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive behavior */
@media (max-width: 768px) {
  .portfolio-hidden {
    display: none;
  }

  .portfolio-hidden.show {
    display: block;
    max-height: none;
    opacity: 1;
  }
}


.feedback {
  padding: 5rem 1rem;
  background: #f9fafb;
  text-align: center;
}

.feedback__container {
  max-width: 1200px;
  margin: auto;
}


.section__header span {
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 800;
  position: relative;
}

.section__header span::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  border-radius: 50px;
  opacity: 0.7;
}


/* Description */
.section__description {
  margin-top: 1.2rem;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-in-out;
}

/* Fade in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.feedback__wrapper {
  overflow: hidden;
  position: relative;
}

.feedback__track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.feedback__card {
  flex: 0 0 25%;
  /* Default: 4 cards per row */
  padding: 1.5rem;
  background: #fff;
  margin: 0 0.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  animation: fadeInUp 1s ease forwards;
}

.feedback__card .quote-icon {
  font-size: 2rem;
  color: #ff416c;
  display: block;
  margin-bottom: 1rem;
}

.feedback__card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.feedback__details {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.feedback__details img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.feedback__details h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #111;
}

.feedback__details h5 {
  font-size: 0.85rem;
  color: #666;
}

/* Navigation buttons */
.feedback__nav {
  margin-top: 1.5rem;
}

.feedback__nav button {
  background: #111;
  color: #fff;
  border: none;
  padding: 0.6rem 1rem;
  margin: 0 0.3rem;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s;
}

.feedback__nav button:hover {
  background: #e63946;
}

/* Animations */
@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .feedback__card {
    flex: 0 0 50%;
    /* 2 cards per row */
  }
}

@media (max-width: 576px) {
  .feedback__card {
    flex: 0 0 100%;
    /* 1 card per row */
  }
}




/* Contact Section */
.contact__container {
  padding: 4rem 2rem;
}

.contact__header {
  text-align: center;
  margin-bottom: 2rem;
}

/* Contact Header */
.contact__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__header span {
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 800;
  position: relative;
}

.section__header span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
}

/* Description */
.section__description {
  margin-top: 1.2rem;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-in-out;
}

/* Fade in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Layout */
.contact__content {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: stretch;
}

/* Left Image with Overlay */
.contact__image {
  flex: 1 1 40%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.contact__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  text-align: left;
}

.contact__overlay h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #ff416c;
}

.contact__overlay p {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact__overlay i {
  color: #ff416c;
  font-size: 1.2rem;
}

.contact__socials {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

.contact__socials a {
  color: #fff;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.contact__socials a:hover {
  color: #ff416c;
}

/* Right Form */
.contact__form {
  flex: 1 1 55%;
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.form__group {
  margin-bottom: 1.2rem;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: #ff416c;
  box-shadow: 0 0 8px rgba(255, 65, 108, 0.3);
  outline: none;
}

/* Button */
.btn {
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  color: #fff;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn:hover {
  background: linear-gradient(90deg, #ff4b2b, #ff416c);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
  .contact__content {
    flex-direction: column;
  }

  .contact__image,
  .contact__form {
    flex: 1 1 100%;
  }

  .contact__image {
    height: 300px;
  }

  .contact__overlay {
    align-items: center;
    text-align: center;
  }

  .contact__form input,
  .contact__form textarea {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border 0.3s ease, box-shadow 0.3s ease;
  }
}


/* Floating popup */
.success-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #2e7d32;
  padding: 15px 25px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  z-index: 99999;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  animation: fadeIn 0.4s ease-out;
  border-left: 6px solid #4caf50;
}

.success-popup.show {
  display: flex;
}

/* Circular green icon */
.success-icon {
  background: #4caf50;
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.map__section {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #f9f9f9, #f1f5f9);
  text-align: center;
}

.map__section .section__header {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.map__section .section__description {
  max-width: 600px;
  margin: 0 auto 2rem auto;
  color: var(--text-light);
  font-size: 1.1rem;
}

.map__container {
  width: 100%;
  max-width: 1000px;
  height: 450px;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.map__container:hover {
  transform: scale(1.02);
}

.map__title span {
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.5rem;
  font-weight: 800;
  display: inline-block;
  position: relative;
}

.map__title span::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #ff416c;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.map__subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 1rem;
  max-width: 650px;
  margin-inline: auto;
  line-height: 1.6;
}

.map__subtitle::before {
  content: "✨ ";
}




.footer {
  position: relative;
  background: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80") no-repeat center center/cover;
  color: #fff;
}

.footer__overlay {
  background: rgba(0, 0, 0, 0.7);
  /* Dark overlay */
  padding: 3rem 1.5rem 1rem;
}

.footer__container {
  display: grid;
  gap: 2rem;
}

.footer__logo a {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

.footer__logo a span {
  color: var(--secondary-color);
}

.footer__col h4 {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.footer__col .section__description {
  margin: 1rem 0 1.5rem;
  font-size: 0.95rem;
  color: #d1d5db;
  line-height: 1.6;
}

.footer__socials {
  display: flex;
  gap: 0.7rem;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.footer__socials a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px) scale(1.05);
}

.footer__links {
  display: grid;
  gap: 0.6rem;
}

.footer__links a {
  font-size: 0.95rem;
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--secondary-color);
}

.footer__links li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #d1d5db;
}

.footer__links i {
  color: var(--secondary-color);
}

.footer__bar {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 0.9rem;
  color: #9ca3af;
}

.footer__bar span {
  color: var(--secondary-color);
  font-weight: 600;
}

/* Responsive */
@media (min-width: 768px) {
  .footer__container {
    grid-template-columns: repeat(4, 1fr);
  }
}



@media (width > 540px) {
  .service__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width > 768px) {
  nav {
    position: static;
    padding: 1rem;
    max-width: var(--max-width);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 2px solid var(--extra-light);
  }

  .nav__header {
    flex: 1;
    padding: 0;
    background-color: transparent;
  }

  .nav__logo a {
    color: var(--text-dark);
  }

  .nav__logo a span {
    color: var(--secondary-color);
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    width: fit-content;
    padding: 0;
    flex-direction: row;
    background-color: transparent;
    transform: none !important;
  }

  .nav__links a {
    color: var(--text-light);
  }

  .nav__links a:hover {
    color: var(--primary-color);
  }

  .nav__btns {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .header__container {
    padding-top: 2rem;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 0;
  }

  .header__image {
    grid-area: 1/2/2/3;
  }

  .header__content :is(h1, .section__description) {
    text-align: left;
  }

  .header__btns {
    justify-content: flex-start;
  }

  .service__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .portfolio__header {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio__header :is(.section__header, .section__description) {
    text-align: left;
  }

  .portfolio__content {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .portfolio__image {
    grid-area: 1/2/2/3;
  }

  .footer__container {
    grid-template-columns: repeat(5, 1fr);
  }

  .footer__col:nth-child(1) {
    grid-column: 1/3;
    max-width: 350px;
  }
}

@media (width > 1024px) {
  .service__grid {
    gap: 1.5rem;
  }

  .feedback__card {
    padding: 2rem 1.5rem;
  }
}