@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

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

:root {
  --primary-color: #ff69b4;
  --background-color: #000000;
  --text-color: #ffffff;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  background-color: var(--background-color);
  color: var(--text-color);
  image-rendering: optimizeSpeed;
}

.pink {
  color: var(--primary-color);
}

/* --- Global Styles --- */

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: black;
}
::-webkit-scrollbar-thumb {
  background: rgb(92, 92, 92);
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

b {
  color: var(--primary-color);
}

.button-nav {
  background-color: var(--primary-color);
  color: var(--text-color);
  padding: 10px 20px;
  border: none;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  width: auto;
  transition: all 0.3s ease;
}

.button-nav:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.btn-main {
  padding: 18px 45px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-align: center;
  border-radius: 2px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.btn-main i {
  margin-right: 10px;
  font-size: 20px;
}

.btn-view {
  background-color: var(--primary-color);
  color: white;
}

.btn-view:hover {
  background-color: #ff3d9f;
  transform: translateY(-4px);
}

.btn-services {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-services:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

/* --- Navbar --- */

.navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 30px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1000;
  transition: all 0.5s ease;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.678);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled .logo {
  font-size: 50px;
}

.navbar .logo {
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-style: italic;
  color: var(--text-color);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 60px;
  z-index: 1001;
  transition: all 0.3s ease;
}

.navbar .logo:hover {
  color: var(--primary-color);
}

.navbar .links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar .links a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

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

@media screen and (max-width: 830px) {
  .navbar {
    flex-direction: row;
    padding: 20px 0;
    height: auto;
    background-color: rgba(0, 0, 0, 0.678);
  }
  .navbar .links {
    right: -100%;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    height: 100vh;
    width: 100%;
    background-color: rgb(0, 0, 0);
    padding: 10px;
    border-radius: 5px;
    z-index: 100;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
  }
  .navbar .links.active {
    right: 0;
  }
  .navbar .links a {
    font-size: 24px;
    padding: 10px 5%;
  }
  .no-scroll {
    overflow: hidden;
    height: 100vh;
  }
}

/* --- Hamburger styles --- */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 11000;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 4px;
  margin: 5px 0;
  background: #fff;
  border-radius: 2px;
  transition: 0.4s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(17px) rotate(45deg);
  background-color: var(--primary-color);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--primary-color);
}

@media screen and (max-width: 830px) {
  .hamburger {
    display: flex;
  }
}

/* --- Cookie Banner --- */

.cookie-container {
  position: fixed;
  bottom: -100%;
  left: 1%;
  width: 35%;
  background: #1a1a1a;
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: bottom 0.5s ease-in-out;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  border-radius: 5px;
}

.cookie-container.active {
  bottom: 1%;
}

.cookie-btn {
  background: var(--primary-color);
  border: none;
  color: white;
  padding: 10px 20px;
  margin-left: 10px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background: #ff3d9f;
}

.cookie-container a {
  color: var(--primary-color);
}

@media screen and (max-width: 1024px) {
  .cookie-container {
    width: 95%;
    left: 2.5%;
  }

  .cookie-container p {
    font-size: 14px;
  }
}


/* --- Hero Slideshow --- */
.heroslideshow {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 10;
  background: #000;
}

.heroslideshow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 30;
  pointer-events: none;
}

.heroslideshow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 15;
  pointer-events: none;
}

.Slides {
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  position: absolute;
  inset: 0;
}

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

.Slides.active {
  opacity: 1;
  z-index: 10;
}

/* --- Content Overlay --- */
.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  width: 90%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: auto;
}

.text-group {
  text-align: center;
  margin-bottom: 40px;
}

.title {
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.8;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.title-outline {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.63);
  color: transparent;
  display: block;
}

.tagline {
  margin-top: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  opacity: 0.9;
}

.button-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--primary-color), transparent);
  z-index: 100;
  animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-20px);
  }
}

/* --- Responsive Adjustments --- */

@media (max-width: 768px) {
  .text-group {
    margin-bottom: 20px;
  }
  .tagline {
    letter-spacing: 0.2em;
    margin-top: 15px;
  }
  .btn-main {
    width: 80vw;
    padding: 14px 24px;
    text-align: center;
  }
  .scroll-indicator {
    height: 40px;
  }
}

/* Handle landscape orientation on small devices */
@media (max-height: 500px) and (orientation: landscape) {
  .title {
    font-size: 5rem;
  }
  .tagline {
    margin-top: 5px;
  }
  .button-container {
    margin-top: 5px;
  }
  .scroll-indicator {
    display: none;
  }
}

/* --- Sections --- */

.section {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.titles {
  padding: 80px 15%;
  padding-bottom: 0;
}

.titles h1 {
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}

.titles p {
  margin-top: -10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  opacity: 0.9;
}

@media screen and (max-width: 1024px) {
  .section {
    padding: 60px 5%;
  }

  .titles {
    padding: 60px 5%;
    padding-bottom: 0;
  }

  .titles h1 {
    font-size: clamp(2rem, 10vw, 4rem);
    letter-spacing: -0.03em;
  }

  .titles p {
    letter-spacing: 0.1em;
    margin-top: -5px;
  }
}

/* Home Gallery Grid */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 1400px;
  padding: 40px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: #111;
  cursor: pointer;
  color: white;
  text-align: center;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  z-index: 10;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

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

.tag {
  color: var(--primary-color);
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.gallery-item .title {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1;
  margin-bottom: 12px;
  transition: text-shadow 0.3s ease;
}

.pink-line {
  height: 4px;
  background-color: var(--primary-color);
  width: 0;
  transition: width 0.5s ease 0.1s;
}

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

.gallery-item:hover .pink-line {
  width: 100%;
  box-shadow: 0 0 15px var(--primary-color);
}

@media screen and (max-width: 1024px) {
  .gallery-grid {
    padding: 5px;
  }

  .section {
    padding: 60px 5%;
  }

  .gallery-item .overlay {
    opacity: 1;
  }
  .gallery-item .pink-line {
    width: 100%;
    box-shadow: 0 0 15px var(--primary-color);
  }
}

/* --- Services Section --- */

.services {
  padding: 100px 15%;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.services .btn {
  margin-top: 25px;
  text-align: center;
}

.services-grid-1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.services-grid-1 > div {
  max-width: calc(33.333% - 20px); 
  min-height: 250px;
  box-sizing: border-box;
}

.service-card-1 {
  padding: 50px 40px;
  width: 100%;
  position: relative;
  border: 1px solid #222;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* The thick left border accent */
.service-card-1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-color);
}

.service-card-1.alt::after {
  background: #ffffff;
}

.service-card-1:hover {
  background-color: #0f0f0f;
  border-color: #222;
  transform: translateY(-5px);
}

.icon-box {
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 40px;
}

.service-card-1.alt .icon-box {
  color: #ffffff;
}

.service-title {
  font-size: 24px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text-white);
}

.service-desc {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.5;
}

/* --- Responsive Queries --- */

@media (max-width: 1100px) {
  .services-grid-1 > div {
    max-width: calc(50% - 20px); 
  }
}

@media (max-width: 700px) {
  .services-grid-1 > div {
    max-width: 100%;
    flex-basis: 100%;
  }
}

@media (max-width: 1024px) {
  .services {
    padding: 50px 5%;
  }
  .service-card-1 {
    background-color: var(--background-color);
    padding: 50px 40px;
    gap: 5px;
  }
}

/* --- About Section Container --- */
.about-section {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
}

.about-section .container {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.image-wrapper {
  position: relative;
  z-index: 1;
}
.image-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80%;
  height: 80%;
  border: 2px solid var(--primary-color);
  z-index: -1;
  pointer-events: none;
}

.image-container {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #222;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.image-container:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.main-title span {
  display: block;
}

.pink-dot {
  color: var(--primary-color);
}

.sub-heading {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-color);
  margin-top: 10px;
}

.description {
  font-size: 16px;
  color: var(--text-color);
  max-width: 480px;
  margin-top: 10px;
}

.description b {
  color: var(--text-color);
  font-weight: 700;
}

/* --- Social Icons --- */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-btn {
  width: 45px;
  height: 45px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #333;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn:hover {
  border-color: var(--primary-color);
  background: var(--primary-color);
  transform: translateY(-3px);
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

/* --- Responsive Queries --- */
@media (max-width: 968px) {
  .about-section .container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .image-wrapper::before {
    width: 100%;
    height: 100%;
    top: -15px;
    left: -15px;
  }

  .content {
    align-items: center;
  }

  .description {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 2.5rem;
  }
  .about-section {
    padding: 60px 20px;
  }
}

/* Header */

.header {
  width: 100%;
  height: 45vh;
  background-color: var(--primary-color);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 15%;
  padding-bottom: 50px;
}

.titles-small h1 {
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}

.titles-small p {
  margin-top: -10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  opacity: 0.9;
}


@media screen and (max-width: 1024px) {
  .header {
    width: 100%;
    height: 45vh;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 5%;
    padding-bottom: 20px;
  }
}

/* Header Backgrounds */

.gallery-head {
  background:
    linear-gradient(rgba(0, 0, 0, 0.493), rgba(0, 0, 0, 0.479)),
    url("/Assets/Collections/2-Max-Power-Reunion-2025/Image-28.jpg");
  background-position: center;
  background-size: cover;
}

.services-head {
  background:
    linear-gradient(rgba(0, 0, 0, 0.493), rgba(0, 0, 0, 0.479)),
    url("/Assets/Collections/1-The-Motorist-Ford-Show/Image-11.jpg");
  background-position: center;
  background-size: cover;
}

.about-head {
  background:
    linear-gradient(rgba(0, 0, 0, 0.493), rgba(0, 0, 0, 0.479)),
    url("/Assets/Collections/2-Max-Power-Reunion-2025/Image-74.jpg");
  background-position: center;
  background-size: cover;
}

.contact-head {
  background:
    linear-gradient(rgba(0, 0, 0, 0.493), rgba(0, 0, 0, 0.479)),
    url("/Assets/Collections/1-The-Motorist-Ford-Show/Image-13.jpg");
  background-position: center;
  background-size: cover;
}


/* Collection Backgrounds */

.gallery-4 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.493), rgba(0, 0, 0, 0.479)),
    url("/Assets/Collections/4-Motorist/Image-30.jpg");
  background-position: center;
  background-size: cover;
}

.gallery-3 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.493), rgba(0, 0, 0, 0.479)),
    url("/Assets/Collections/3-Ford-Capri-MK1/Image-3.jpg");
  background-position: center;
  background-size: cover;
}

.gallery-2 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.493), rgba(0, 0, 0, 0.479)),
    url("/Assets/Collections/2-Max-Power-Reunion-2025/Image-74.jpg");
  background-position: center;
  background-size: cover;
}

.gallery-1 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.493), rgba(0, 0, 0, 0.479)),
    url("/Assets/Collections/1-The-Motorist-Ford-Show/Image-11.jpg");
  background-position: center;
  background-size: cover;
}

/* Services Page */

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-bottom: 100px;
  padding: 20px 25%;
}

.service-card {
  background: black;
  border: 1px solid #1a1a1a;
  padding: 50px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 450px;
  overflow: hidden;
}

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

.service-card::before {
  content: attr(data-number);
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 10rem;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.226);
  font-style: italic;
  pointer-events: none;
}

.service-card h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  position: relative;
}

.service-card p {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.price-tag {
  font-size: 2.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-style: italic;
  margin-top: auto;
}

.price-tag span {
  font-size: 1rem;
  color: var(--primary-color);
  vertical-align: top;
}

.service-footer {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.details-btn {
  background: none;
  border: none;
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.details-btn:hover {
  color: var(--primary-color);
}

.service-card.featured {
  background: linear-gradient(145deg, #0a0a0a 0%, #15050f 100%);
  border-color: rgba(255, 51, 153, 0.3);
}

.featured-badge {
  background: var(--primary-color);
  color: white;
  font-size: 0.6rem;
  padding: 5px 12px;
  font-weight: 900;
  position: absolute;
  top: 20px;
  left: 50px;
  text-transform: uppercase;
}

/* MODAL STYLES */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #111;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  border: 1px solid #222;
  padding: 60px;
  position: relative;
  overflow-y: auto;
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

.modal-content h3 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.modal-content .full-desc {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #eee;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border-top: 1px solid #222;
  padding-top: 40px;
}

.modal-list-title {
  font-size: 0.8rem;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.modal-list {
  list-style: none;
}

.modal-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.modal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background: var(--primary-color);
}

/* Modal Button Group */
.modal-btn-group {
  gap: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.cta-section {
  padding: 100px 0;
  border-top: 1px solid #1a1a1a;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cta-section .btn-main {
  width: 15%;
}

.cta-btn {
  display: inline-block;
  background: var(--accent-pink);
  color: white;
  text-decoration: none;
  padding: 20px 50px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.5rem;
  text-transform: uppercase;
  transition: var(--transition);
}

@media (max-width: 1024px) {
  .services-grid {
    padding: 20px 2%;
  }
  .modal-container {
    padding: 40px 20px;
  }
  .modal-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .modal-content h3 {
    font-size: 2rem;
  }
  .modal-btn-group {
    grid-template-columns: 1fr;
  }
}

/* Contact Form */

.row-section {
  padding: 80px 15%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.row-section .left {
  width: 50%;
}

.row-section .left img {
  width: 100%;
}

.row-section .right {
  width: 50%;
}

.row-section .right .title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
  font-family: 'Inter', sans-serif;
  margin-bottom: 20px;
}

.contact-container {
  max-width: 500px;
  margin: 50px auto;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-radius: 8px;
  font-family: sans-serif;
}

.input-group {
  margin-bottom: 15px;
}

.contact-container .btn-main {
  width: 100%;
  cursor: pointer;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  font-family: 'Inter', sans-serif;
  font-style: italic;
  text-transform: uppercase;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

input:focus, textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 10px var(--primary-color);
}

#status {
  margin-top: 15px;
  font-weight: bold;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

@media screen and (max-width: 1024px) {
  .row-section {
    padding: 10px 5%;
    display: flex;
    flex-direction: column;
  }
  .row-section .left {
    width: 100%;
  }
  .row-section .right {
    width: 100%;
  }
  
  .row-section .right .title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px;
  }
  
  .contact-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    font-family: sans-serif;
  }
  
}

/* Footer */

footer {
  background-color: #111;
  color: var(--text-color);
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 40px 10%;
}

footer .logo {
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-style: italic;
  color: var(--text-color);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 30px;
  z-index: 1001;
  transition: all 0.3s ease;
}

footer .section {
  display: flex;
  gap: 10px;
}

footer .section a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
footer .section a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  footer {
    flex-direction: column;
    gap: 20px;
    padding: 30px 5%;
  }
  footer .logo {
    font-size: 24px;
  }
}


/* Privacy Policy Styles */

.policy-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.policy-container h2 {
  font-size: 2rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-container p {
  margin-bottom: 15px;
}

.policy-container a {
  color: var(--primary-color);
  text-decoration: none;
}