/* Padel Partners Asia - Shared Styles */

:root {
  --navy: #1a2b4a;
  --navy-light: #2a3f5f;
  --teal: #0d9488;
  --teal-light: #14b8a6;
  --teal-dark: #0f766e;
  --gray: #888;
  --light-gray: #f8f9fa;
  --white: #ffffff;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0 20px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.nav-logo svg {
  width: 24px;
  height: 38px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--navy-light);
  transition: color 0.3s ease;
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.3s;
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    display: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links li {
    border-bottom: 1px solid var(--light-gray);
  }
  
  .nav-links a {
    display: block;
    padding: 15px 0;
  }
}

/* Page Header */
.page-header {
  padding: 140px 20px 80px;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  text-align: center;
}

.page-header h1 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 16px;
  font-weight: 300;
  color: var(--navy-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Hero (Homepage) */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 20px 60px;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.logo-icon {
  margin-bottom: 30px;
}

.logo-icon svg {
  width: 80px;
  height: 128px;
}

.hero h1 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.tagline {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--gray);
  margin-bottom: 50px;
}

.intro {
  max-width: 500px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 50px;
  color: var(--navy-light);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Montserrat', sans-serif;
}

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

.btn-primary:hover {
  background: var(--navy-light);
}

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

.btn-teal:hover {
  background: var(--teal-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* Section Styling */
.section {
  padding: 100px 20px;
}

.section-light {
  background: var(--white);
}

.section-gray {
  background: var(--light-gray);
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--teal);
  text-align: center;
  margin-bottom: 15px;
}

.section-heading {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 50px;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

@media (max-width: 900px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.card {
  background: var(--white);
  border-radius: 8px;
  padding: 35px 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.card-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--navy-light);
  line-height: 1.7;
}

/* Feature Cards with Image */
.feature-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

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

.feature-card-content {
  padding: 30px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--navy-light);
  line-height: 1.7;
}

/* Stats */
.stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-top: 10px;
}

/* Content Sections */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-split.reverse {
  direction: rtl;
}

.content-split.reverse > * {
  direction: ltr;
}

.content-split img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.content-text h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.content-text p {
  font-size: 15px;
  font-weight: 300;
  color: var(--navy-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.content-text ul {
  list-style: none;
  margin: 20px 0;
}

.content-text li {
  font-size: 14px;
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}

.content-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 600;
}

@media (max-width: 768px) {
  .content-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .content-split.reverse {
    direction: ltr;
  }
}

/* Spec Table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.spec-table th,
.spec-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.spec-table th {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: var(--light-gray);
}

.spec-table td {
  font-size: 14px;
  font-weight: 300;
  color: var(--navy-light);
}

.spec-table tr:hover td {
  background: rgba(13, 148, 136, 0.05);
}

/* CTA Banner */
.cta-banner {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.cta-banner p {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-banner .btn {
  background: var(--white);
  color: var(--teal);
}

.cta-banner .btn:hover {
  background: var(--light-gray);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  padding: 16px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: var(--white);
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
}

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

/* Footer */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 20px 30px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand svg {
  width: 40px;
  height: 64px;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  opacity: 0.7;
  line-height: 1.7;
  max-width: 280px;
}

.footer h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  color: var(--teal-light);
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 12px;
}

.footer a {
  font-size: 13px;
  font-weight: 300;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 1;
}

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

.footer-bottom p {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.5;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand p {
    max-width: 100%;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(13, 148, 136, 0.05) 100%);
  border-left: 4px solid var(--teal);
  padding: 25px 30px;
  border-radius: 0 8px 8px 0;
  margin: 30px 0;
}

.highlight-box h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--teal-dark);
}

.highlight-box p {
  font-size: 14px;
  font-weight: 300;
  color: var(--navy-light);
}

/* Process Steps */
.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  margin: 0 auto 20px;
}

.process-step h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 13px;
  font-weight: 300;
  color: var(--navy-light);
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 22px;
  }
  
  .intro {
    font-size: 16px;
  }
  
  .section {
    padding: 60px 20px;
  }
  
  .page-header {
    padding: 120px 20px 60px;
  }
  
  .page-header h1 {
    font-size: 24px;
  }
  
  .section-heading {
    font-size: 22px;
  }
  
  .stats {
    gap: 40px;
  }
  
  .stat-number {
    font-size: 36px;
  }
}
