/* ===================================
   PADEL MINDSET - MODERN DESIGN
   =================================== */

/* === RESET & BASE STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark-green: #0e261d;
  --lime-yellow: #d4ff00;
  --white: #ffffff;
  --black: #1a1a1a;
  --gray-text: #666666;
  --light-gray: #f5f5f5;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Raleway", sans-serif;
  color: var(--gray-text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header .container {
  max-width: 100%;
  padding: 0 50px;
}

.banner .container {
  max-width: 100%;
  padding: 0;
}

/* === HEADER === */
.header {
  background-color: var(--dark-green);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-container {
  flex: 1;
  display: flex;
  justify-content: flex-end; /* Move to right */
  padding-right: 0; /* Align with container edge */
}

.logo img {
  height: 50px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  margin-right: -20px; /* Slight offset to align right as requested */
}

.nav-menu li a {
  color: var(--white);
  text-decoration: none;
  font-size: 1vw; /* Responsive font size */
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.nav-menu li a:hover {
  opacity: 0.8;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  margin: 3px 0;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--dark-green);
    position: absolute;
    top: 80px;
    left: 0;
    padding: 20px;
    margin: 0;
    gap: 15px;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu li {
    width: 100%;
    text-align: center;
  }
  
  .nav-menu li a {
    font-size: 16px;
    display: block;
    padding: 10px;
  }
}

/* === BANNER SECTION === */
.banner {
  min-height: auto;
  background-color: var(--dark-green);
  position: relative;
  margin-top: 80px;
  overflow: hidden;
}

.banner-full-visual {
  width: 100%;
  line-height: 0;
  position: relative;
}

.banner-bg-full {
  width: 100%;
  height: auto;
  display: block;
}

.banner-content {
  height: auto;
  display: block;
  position: relative;
  background: var(--dark-green);
}

.banner-content .container {
  position: relative;
  z-index: 2;
}

.banner-text {
  max-width: 600px;
}

.banner-title {
  color: var(--white);
  font-size: 90px;
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.title-line1 {
  display: block;
  letter-spacing: 2px;
}

.title-line2 {
  display: block;
  letter-spacing: 2px;
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

.banner-subtitle {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
}

.banner-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 30%;
  width: 50%;
  pointer-events: none;
}

.banner-bg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  object-fit: cover;
}

.tennis-ball {
  position: absolute;
  top: 15%;
  right: 30%;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #c5ff00 0%, #d4ff00 100%);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(212, 255, 0, 0.3);
}

.tennis-ball::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20%;
  width: 60%;
  height: 2px;
  background: var(--white);
  transform: translateY(-50%) rotate(-15deg);
}

/* .banner-bottom removed */

/* Banner Text & Buttons */
.banner-text-overlay {
  position: absolute;
  bottom: 80% !important;
  left: 8% !important;
  transform: translateY(80%);

  }

.banner-text-overlay h2 {
  font-size: 4vw;
}

.banner-text-overlay p {
  font-size: 2vw;
}


.app-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 1.1vw;
  flex-wrap: wrap;
  position: absolute;
  bottom: 15%; /* Adjusted position */
  left: 5%;
  width: auto;
}

.app-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7vw;
  padding: 1vw 2vw;
  background: #CDE001 !important;
  border: 2px solid #000000 !important;
  border-radius: 0.5vw;
  text-decoration: none;
  color: var(--black);
  transition: all 0.3s;
  width: 15vw;
  height: 4.5vw;
}

.app-button i {
  font-size: 2.1vw;
}

.app-button span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}

.app-button small {
  font-size: 0.6vw;
  text-transform: uppercase;
}

.app-button strong {
  font-size: 1.1vw;
  font-weight: 700;
}

.app-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* === ABOUT SECTION === */
.about-section {
  padding: 80px 0;
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  display: flex;
  justify-content: center; /* Center the image */
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: none; /* Remove max-width restriction if any */
  width: 120%; /* Make it bigger overlapping */
  margin-left: -10%; /* Recenter after width increase */
  border-radius: 10px;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 25px;
  text-transform: uppercase;
  text-align: center; /* Centered as requested */
}

.about-text p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.btn-more {
  background: var(--black);
  color: var(--white);
  padding: 12px 35px;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
  display: inline-block;
}

.btn-more:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
}

/* === APP SECTION === */
.app-section {
  padding: 80px 0;
  background: var(--lime-yellow);
}

.app-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.app-image img {
  width: 100%;
  max-width: 550px;
  margin: 0 auto; /* Ensure centering on mobile */
  display: block;
}

.app-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 25px;
  line-height: 1.1;
  text-align: center; /* Centered as requested */
}

.app-intro {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 20px;
}

.app-text p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--black);
}

.app-buttons-inline {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
  width: 100%;
}

.app-button-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 8px;
  text-decoration: none;
  color: var(--black);
  transition: all 0.3s;
  min-width: 250px; /* Increased size */
  height: 70px; /* Increased size */
}

.app-button-inline i {
  font-size: 32px;
}

.app-button-inline span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}

.app-button-inline small {
  font-size: 12px;
  text-transform: uppercase;
}

.app-button-inline strong {
  font-size: 18px;
  font-weight: 700;
}

.app-button-inline:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* === EXPERTISES SECTION === */
.expertises-section {
  padding: 80px 0;
  background: var(--white);
}

.section-title-center {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.expertises-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.expertise-card {
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 35px 20px;
  text-align: center;
  transition: all 0.3s;
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--dark-green);
}

.expertise-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expertise-icon i {
  font-size: 28px;
  color: var(--black);
}

.expertise-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.expertise-card p {
  font-size: 13px;
  line-height: 1.6;
}

/* === COMPLEXES SECTION === */
.complexes-section {
  padding: 120px 0 80px 0;
  background: var(--dark-green);
  position: relative;
}

.section-title-white {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 60px;
  margin-top: 60px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.carousel-controls {
  position: absolute;
  right: 50px;
  top: 80px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s;
}

.carousel-btn.prev {
  background: var(--white);
  color: var(--dark-green);
}

.carousel-btn.next {
  background: var(--lime-yellow);
  color: var(--dark-green);
}

.carousel-btn:hover {
  transform: scale(1.1);
}

.complexes-carousel {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.complex-card-wrapper {
   margin-top: 60px; /* Space for logo */
   min-width: calc(33.333% - 20px);
   display: flex;
   flex-direction: column;
   align-items: center;
   position: relative;
}

.complex-logo-top {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-green);
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Visibility shadow */
}

.complex-logo-top img {
    height: 45px;
    width: auto;
}

.complex-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

.complex-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.complex-title-pill {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(14, 37, 27, 0.95);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.complex-info h3 { /* Hidden as we use overlay */
  display: none;
}

.complex-location {
  color: var(--white);
  font-size: 14px;
}

.complex-location i {
  margin-right: 5px;
}

/* === CONTACT SECTION === */
.contact-section {
  padding: 80px 0;
  background: var(--lime-yellow);
}

.section-title-center-dark {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
}

.contact-form-wrapper h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  background: #f8f8f8;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--dark-green);
  background: var(--white);
}

/* Honeypot field - hidden from users but visible to bots */
.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.btn-submit {
  background: #1e88e5;
  color: var(--white);
  padding: 14px 40px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-submit:hover {
  background: #1565c0;
  transform: translateY(-2px);
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-box {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
}

.contact-info-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  align-items: start;
  gap: 15px;
  margin-bottom: 20px;
}

.info-item i {
  font-size: 18px;
  color: var(--dark-green);
  margin-top: 3px;
}

.info-item p {
  margin: 0;
  color: var(--gray-text);
  font-size: 14px;
}

.contact-map {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 300px;
}

/* === FOOTER === */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 20px;
}

.app-buttons-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-button-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15px;
  background: transparent;
  border: 2px solid var(--white);
  border-radius: 6px;
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s;
  width: fit-content;
}

.app-button-footer i {
  font-size: 20px;
}

.app-button-footer span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.app-button-footer small {
  font-size: 8px;
  text-transform: uppercase;
}

.app-button-footer strong {
  font-size: 12px;
  font-weight: 700;
}

.app-button-footer:hover {
  background: var(--white);
  color: var(--black);
}

.footer-col h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s;
}

.footer-col a {
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--lime-yellow);
}

.footer-col p {
  font-size: 13px;
  margin-bottom: 10px;
}

.footer-legal-link {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
}

.footer-legal-link:hover {
  color: var(--lime-yellow);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--white);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--lime-yellow);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: var(--dark-green);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 30px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .banner-title {
    font-size: 60px;
  }

  .banner-visual {
    width: 60%;
  }

  .about-content,
  .app-content {
    grid-template-columns: 1fr;
  }

  .expertises-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }

  .carousel-controls {
    right: 20px;
    top: 60px;
  }

  .complex-card-wrapper {
    min-width: 100%;
  }

  .app-buttons {
    gap: 20px;
  }

  .app-button {
    width: 280px;
    height: 85px;
    padding: 18px 35px;
    gap: 12px;
    border-radius: 8px;
  }

  .app-button i {
    font-size: 40px;
  }

  .app-button small {
    font-size: 11px;
  }

  .app-button strong {
    font-size: 20px;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .about-image img {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .banner-title {
    font-size: 45px;
  }

  .banner-subtitle {
    font-size: 18px;
  }

  .banner-visual {
    display: none;
  }

  .section-title-center,
  .section-title-white,
  .section-title-center-dark {
    font-size: 32px;
  }

  .app-title {
    font-size: 36px;
  }

  .expertises-grid {
    grid-template-columns: 1fr;
  }

  .complex-card {
    min-width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* === CAROUSEL DOTS === */
.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 10px;
}

.carousel-dots .dot {
    height: 12px;
    width: 12px;
    background-color: #666; /* Visible grey on dark background */
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent; /* To prevent layout shift if we add border */
}

.carousel-dots .dot.active {
    background-color: var(--lime-yellow);
    transform: scale(1.2);
}

.carousel-dots .dot:hover {
    background-color: #999;
}

.carousel-dots .dot.active:hover {
    background-color: var(--lime-yellow);
}
