/* ============================================
   AKADEMIA TENISA WALKOWICZ - MAIN STYLESHEET
   Mobile-first responsive design
   ============================================ */

/* ============================================
   1. CSS RESET & BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--atw-font-body);
  color: var(--atw-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   2. CSS VARIABLES (DESIGN SYSTEM)
   ============================================ */

:root {
  /* Primary Colors */
  --atw-orange: #FF6B35;
  --atw-yellow: #FFD23F;
  --atw-navy: #1E3A5F;

  /* Neutrals */
  --atw-white: #FFFFFF;
  --atw-light-gray: #F8F9FA;
  --atw-medium-gray: #E9ECEF;
  --atw-dark-gray: #6C757D;
  --atw-text-dark: #212529;

  /* Semantic Colors */
  --atw-success: #28A745;
  --atw-link: #1E3A5F;
  --atw-link-hover: #FF6B35;

  /* Typography */
  --atw-font-heading: 'Poppins', sans-serif;
  --atw-font-body: 'Inter', sans-serif;

  /* Font Sizes (Mobile-first) */
  --atw-h1: 2rem;          /* 32px */
  --atw-h2: 1.75rem;       /* 28px */
  --atw-h3: 1.5rem;        /* 24px */
  --atw-h4: 1.25rem;       /* 20px */
  --atw-body: 1rem;        /* 16px */
  --atw-small: 0.875rem;   /* 14px */

  /* Spacing System */
  --atw-space-xs: 0.5rem;   /* 8px */
  --atw-space-sm: 1rem;     /* 16px */
  --atw-space-md: 1.5rem;   /* 24px */
  --atw-space-lg: 2rem;     /* 32px */
  --atw-space-xl: 3rem;     /* 48px */
  --atw-space-xxl: 4rem;    /* 64px */
  --atw-space-jumbo: 6rem;  /* 96px */

  /* Transitions */
  --atw-transition: all 0.3s ease;
}

/* ============================================
   3. TYPOGRAPHY BASE
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--atw-font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--atw-space-sm);
}

h1 {
  font-size: var(--atw-h1);
}

h2 {
  font-size: var(--atw-h2);
}

h3 {
  font-size: var(--atw-h3);
}

h4 {
  font-size: var(--atw-h4);
}

p {
  margin-bottom: var(--atw-space-sm);
}

a {
  color: var(--atw-link);
  text-decoration: none;
  transition: var(--atw-transition);
}

a:hover {
  color: var(--atw-link-hover);
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

/* ============================================
   4. LAYOUT UTILITIES
   ============================================ */

.atw-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--atw-space-sm);
}

.atw-section {
  padding: var(--atw-space-xl) 0;
}

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

.atw-section--cta {
  background: linear-gradient(135deg, var(--atw-navy), #2c5282);
  color: var(--atw-white);
}

.atw-section-title {
  font-size: var(--atw-h2);
  color: var(--atw-navy);
  text-align: center;
  margin-bottom: var(--atw-space-lg);
}

.atw-section-title--white {
  color: var(--atw-white);
}

.atw-section-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--atw-dark-gray);
  margin-bottom: var(--atw-space-lg);
}

.atw-subsection-title {
  font-size: var(--atw-h3);
  color: var(--atw-navy);
  margin-top: var(--atw-space-lg);
  margin-bottom: var(--atw-space-md);
}

.atw-center {
  text-align: center;
}

/* ============================================
   5. NAVIGATION
   ============================================ */

.atw-nav {
  background-color: var(--atw-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: var(--atw-space-sm) 0;
}

.atw-nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.atw-logo h2 {
  font-size: 1.2rem;
  color: var(--atw-navy);
  margin-bottom: 0;
  line-height: 1.3;
}

.atw-logo strong {
  color: var(--atw-orange);
}

.atw-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.atw-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--atw-navy);
  transition: var(--atw-transition);
}

.atw-menu-toggle.atw-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.atw-menu-toggle.atw-active span:nth-child(2) {
  opacity: 0;
}

.atw-menu-toggle.atw-active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.atw-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--atw-white);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex-direction: column;
  padding: var(--atw-space-sm);
}

.atw-mobile-menu.atw-open {
  display: flex;
}

.atw-mobile-menu a {
  padding: var(--atw-space-sm);
  color: var(--atw-navy);
  font-weight: 500;
  border-bottom: 1px solid var(--atw-medium-gray);
}

.atw-mobile-menu a:hover {
  background-color: var(--atw-light-gray);
  color: var(--atw-orange);
}

.atw-nav-phone {
  color: var(--atw-orange) !important;
  font-weight: 600 !important;
}

/* ============================================
   6. BUTTONS
   ============================================ */

.atw-btn {
  font-family: var(--atw-font-heading);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 50px;
  transition: var(--atw-transition);
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  text-align: center;
  font-size: 1rem;
}

.atw-btn--primary {
  background: linear-gradient(135deg, var(--atw-orange), #FF8C61);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.atw-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: white;
}

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

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

.atw-btn--large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

.atw-btn--full {
  width: 100%;
}

/* ============================================
   7. CARDS
   ============================================ */

.atw-card {
  background: white;
  border-radius: 16px;
  padding: var(--atw-space-lg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: var(--atw-transition);
  height: 100%;
}

.atw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.atw-card-icon {
  font-size: 3rem;
  color: var(--atw-orange);
  margin-bottom: var(--atw-space-md);
  text-align: center;
}

/* ============================================
   8. GRID SYSTEM
   ============================================ */

.atw-grid {
  display: grid;
  gap: var(--atw-space-md);
  margin-bottom: var(--atw-space-lg);
}

.atw-grid--2,
.atw-grid--4 {
  grid-template-columns: 1fr;
}

/* ============================================
   9. HERO SECTION
   ============================================ */

.atw-hero {
  background: linear-gradient(135deg, #FFF5F2 0%, #FFF9E6 100%);
  padding: var(--atw-space-xl) 0;
  min-height: auto;
}

.atw-hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--atw-space-lg);
}

.atw-hero-title {
  font-size: var(--atw-h1);
  color: var(--atw-navy);
  margin-bottom: var(--atw-space-sm);
}

.atw-hero-subtitle {
  font-size: 1.1rem;
  color: var(--atw-dark-gray);
  margin-bottom: var(--atw-space-lg);
}

.atw-hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--atw-space-sm);
  margin-bottom: var(--atw-space-md);
}

.atw-hero-info {
  display: flex;
  flex-direction: column;
  gap: var(--atw-space-xs);
}

.atw-hero-info p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.atw-hero-info i {
  color: var(--atw-orange);
  margin-right: 0.5rem;
}

.atw-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ============================================
   10. IMAGE PLACEHOLDERS
   ============================================ */

.atw-image-placeholder {
  background: linear-gradient(135deg, var(--atw-medium-gray), var(--atw-light-gray));
  border-radius: 16px;
  padding: var(--atw-space-xl);
  text-align: center;
  color: var(--atw-dark-gray);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.atw-image-placeholder i {
  color: var(--atw-orange);
  margin-bottom: var(--atw-space-sm);
}

.atw-image-placeholder p {
  font-weight: 600;
  margin-bottom: 0;
}

/* ============================================
   11. BENEFIT CARDS (Why Tennis Section)
   ============================================ */

.atw-storytelling {
  text-align: center;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto var(--atw-space-xl);
  color: var(--atw-dark-gray);
}

.atw-benefit-card h4 {
  color: var(--atw-navy);
  margin-bottom: var(--atw-space-sm);
}

.atw-insight {
  background: linear-gradient(135deg, #FFF5E6, #FFF9F0);
  border-left: 4px solid var(--atw-yellow);
  padding: var(--atw-space-lg);
  border-radius: 8px;
  margin-top: var(--atw-space-lg);
}

.atw-insight p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   12. PRESCHOOL PROGRAM SECTION
   ============================================ */

.atw-preschool-header {
  text-align: center;
  margin-bottom: var(--atw-space-xl);
}

.atw-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--atw-orange), #FF8C61);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: var(--atw-space-sm);
}

.atw-lead {
  font-size: 1.1rem;
  color: var(--atw-dark-gray);
}

.atw-two-column {
  display: flex;
  flex-direction: column;
  gap: var(--atw-space-lg);
}

.atw-feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--atw-space-md);
  margin: var(--atw-space-lg) 0;
}

.atw-feature-item {
  display: flex;
  gap: var(--atw-space-md);
  align-items: flex-start;
}

.atw-feature-item i {
  font-size: 2rem;
  color: var(--atw-orange);
  flex-shrink: 0;
}

.atw-feature-item strong {
  display: block;
  color: var(--atw-navy);
  margin-bottom: 0.25rem;
}

.atw-feature-item p {
  margin-bottom: 0;
  color: var(--atw-dark-gray);
  font-size: 0.95rem;
}

.atw-method-box {
  background: linear-gradient(135deg, #F0F8FF, #E8F4FD);
  border-left: 4px solid var(--atw-navy);
  padding: var(--atw-space-lg);
  border-radius: 8px;
  margin: var(--atw-space-lg) 0;
}

.atw-method-box h4 {
  color: var(--atw-navy);
  margin-bottom: var(--atw-space-sm);
}

.atw-method-box p {
  margin-bottom: 0;
  line-height: 1.7;
}

/* ============================================
   13. TRAINING PATHS SECTION
   ============================================ */

.atw-path-card {
  display: flex;
  flex-direction: column;
}

.atw-path-header {
  text-align: center;
  padding: var(--atw-space-lg);
  border-radius: 16px 16px 0 0;
  margin: calc(var(--atw-space-lg) * -1) calc(var(--atw-space-lg) * -1) var(--atw-space-lg);
}

.atw-path-header--competitive {
  background: linear-gradient(135deg, var(--atw-orange), #FF8C61);
  color: white;
}

.atw-path-header--recreational {
  background: linear-gradient(135deg, var(--atw-navy), #2c5282);
  color: white;
}

.atw-path-header i {
  font-size: 3rem;
  margin-bottom: var(--atw-space-sm);
}

.atw-path-header h3 {
  font-size: var(--atw-h3);
  margin-bottom: var(--atw-space-xs);
  color: white;
}

.atw-price {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

.atw-path-subtitle {
  font-style: italic;
  color: var(--atw-dark-gray);
  margin-bottom: var(--atw-space-md);
}

.atw-path-features {
  list-style: none;
  margin-bottom: var(--atw-space-lg);
  flex-grow: 1;
}

.atw-path-features li {
  margin-bottom: var(--atw-space-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--atw-space-sm);
}

.atw-path-features i {
  color: var(--atw-success);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.atw-path-question {
  background-color: var(--atw-light-gray);
  padding: var(--atw-space-md);
  border-radius: 8px;
  margin-top: auto;
}

.atw-path-question strong {
  color: var(--atw-navy);
  display: block;
  margin-bottom: var(--atw-space-xs);
}

.atw-path-question p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   14. ABOUT US SECTION
   ============================================ */

.atw-about-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--atw-space-xl);
  font-size: 1.1rem;
}

.atw-check-list {
  list-style: none;
  margin-bottom: var(--atw-space-lg);
}

.atw-check-list li {
  margin-bottom: var(--atw-space-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--atw-space-sm);
}

.atw-check-list i {
  color: var(--atw-success);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.atw-trust-signals {
  margin-top: var(--atw-space-lg);
}

.atw-badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--atw-space-sm);
}

.atw-trust-badge {
  background: linear-gradient(135deg, var(--atw-navy), #2c5282);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
}

.atw-history-box {
  background: linear-gradient(135deg, #FFF9E6, #FFFDF5);
  border-left: 4px solid var(--atw-yellow);
  padding: var(--atw-space-lg);
  border-radius: 8px;
  margin-top: var(--atw-space-xl);
}

.atw-history-box h4 {
  color: var(--atw-navy);
  margin-bottom: var(--atw-space-sm);
  display: flex;
  align-items: center;
  gap: var(--atw-space-sm);
}

.atw-history-box i {
  color: var(--atw-orange);
}

.atw-history-box p {
  margin-bottom: 0;
  line-height: 1.7;
}

/* ============================================
   15. HOW TO START SECTION
   ============================================ */

.atw-steps {
  display: flex;
  flex-direction: column;
  gap: var(--atw-space-lg);
  margin-bottom: var(--atw-space-xl);
}

.atw-step {
  display: flex;
  gap: var(--atw-space-md);
  align-items: flex-start;
}

.atw-step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--atw-orange), #FF8C61);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.atw-step-content h3 {
  color: var(--atw-navy);
  margin-bottom: var(--atw-space-xs);
}

.atw-step-content p {
  margin-bottom: 0;
  color: var(--atw-dark-gray);
}

/* ============================================
   16. FAQ SECTION
   ============================================ */

.atw-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.atw-faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: var(--atw-space-md);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
}

.atw-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--atw-space-lg);
  text-align: left;
  font-family: var(--atw-font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--atw-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--atw-space-md);
  transition: var(--atw-transition);
}

.atw-faq-question:hover {
  background-color: var(--atw-light-gray);
}

.atw-faq-question i {
  color: var(--atw-orange);
  transition: var(--atw-transition);
  flex-shrink: 0;
}

.atw-faq-item.atw-active .atw-faq-question i {
  transform: rotate(180deg);
}

.atw-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.atw-faq-item.atw-active .atw-faq-answer {
  max-height: 500px;
}

.atw-faq-answer p {
  padding: 0 var(--atw-space-lg) var(--atw-space-lg);
  margin-bottom: 0;
  color: var(--atw-dark-gray);
  line-height: 1.7;
}

/* ============================================
   17. CONTACT / CTA FINAL SECTION
   ============================================ */

.atw-cta-header {
  text-align: center;
  margin-bottom: var(--atw-space-xl);
}

.atw-cta-text {
  font-size: 1.1rem;
  margin-bottom: var(--atw-space-md);
}

.atw-cta-highlight {
  font-size: 1.25rem;
  font-weight: 600;
}

.atw-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--atw-space-xl);
}

.atw-contact-info h3,
.atw-contact-form-wrapper h3 {
  color: var(--atw-white);
  margin-bottom: var(--atw-space-lg);
}

.atw-contact-method {
  display: flex;
  gap: var(--atw-space-md);
  margin-bottom: var(--atw-space-lg);
  align-items: flex-start;
}

.atw-contact-method i {
  font-size: 2rem;
  color: var(--atw-orange);
  flex-shrink: 0;
}

.atw-contact-method strong {
  display: block;
  margin-bottom: 0.25rem;
}

.atw-contact-method a {
  color: var(--atw-white);
  font-weight: 600;
  font-size: 1.2rem;
}

.atw-contact-method a:hover {
  color: var(--atw-yellow);
}

.atw-small {
  font-size: var(--atw-small);
  opacity: 0.9;
}

.atw-map-placeholder {
  margin-top: var(--atw-space-lg);
}

.atw-map-box {
  background: rgba(255,255,255,0.1);
  border: 2px dashed rgba(255,255,255,0.3);
  border-radius: 12px;
  padding: var(--atw-space-xl);
  text-align: center;
  color: rgba(255,255,255,0.7);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ============================================
   18. FORM STYLES
   ============================================ */

.atw-form {
  background: white;
  padding: var(--atw-space-lg);
  border-radius: 12px;
}

.atw-form-group {
  margin-bottom: var(--atw-space-md);
}

.atw-form-group label {
  display: block;
  font-weight: 600;
  color: var(--atw-navy);
  margin-bottom: var(--atw-space-xs);
}

.atw-form-group input,
.atw-form-group select,
.atw-form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--atw-medium-gray);
  border-radius: 8px;
  font-family: var(--atw-font-body);
  font-size: 1rem;
  transition: var(--atw-transition);
}

.atw-form-group input:focus,
.atw-form-group select:focus,
.atw-form-group textarea:focus {
  outline: none;
  border-color: var(--atw-orange);
}

.atw-form-message {
  margin-top: var(--atw-space-md);
  padding: var(--atw-space-md);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: var(--atw-space-sm);
}

.atw-form-message--success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.atw-form-message--error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.atw-form-message i {
  font-size: 1.5rem;
}

.atw-form-message p {
  margin-bottom: 0;
}

/* ============================================
   19. FOOTER
   ============================================ */

.atw-footer {
  background-color: var(--atw-navy);
  color: var(--atw-white);
  padding: var(--atw-space-xl) 0 var(--atw-space-md);
}

.atw-footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--atw-space-lg);
  margin-bottom: var(--atw-space-xl);
}

.atw-footer-brand h3 {
  color: var(--atw-white);
  margin-bottom: var(--atw-space-sm);
}

.atw-footer-brand strong {
  color: var(--atw-orange);
}

.atw-footer h4 {
  color: var(--atw-orange);
  font-size: 1.1rem;
  margin-bottom: var(--atw-space-sm);
}

.atw-footer ul {
  list-style: none;
}

.atw-footer ul li {
  margin-bottom: var(--atw-space-xs);
}

.atw-footer a {
  color: var(--atw-white);
  opacity: 0.9;
}

.atw-footer a:hover {
  color: var(--atw-orange);
  opacity: 1;
}

.atw-footer-contact p {
  margin-bottom: var(--atw-space-sm);
  display: flex;
  align-items: center;
  gap: var(--atw-space-xs);
}

.atw-footer-contact i {
  color: var(--atw-orange);
}

.atw-footer-badges {
  display: flex;
  flex-direction: column;
  gap: var(--atw-space-xs);
}

.atw-footer-badges span {
  background: rgba(255,255,255,0.1);
  padding: 0.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
}

.atw-footer-seo {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--atw-space-md);
  margin-bottom: var(--atw-space-md);
}

.atw-footer-seo p {
  text-align: center;
  opacity: 0.6;
  font-size: 0.75rem;
  line-height: 1.8;
}

.atw-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--atw-space-md);
  display: flex;
  flex-direction: column;
  gap: var(--atw-space-sm);
  text-align: center;
  font-size: 0.875rem;
}

.atw-footer-legal {
  display: flex;
  gap: var(--atw-space-md);
  justify-content: center;
}

/* ============================================
   20. FLOATING PHONE BUTTON
   ============================================ */

.atw-floating-phone {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--atw-orange), #FF8C61);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  z-index: 999;
  transition: var(--atw-transition);
}

.atw-floating-phone:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
  color: white;
}

/* ============================================
   21. DIRECT CONTACT (WhatsApp + Phone CTA)
   ============================================ */

.atw-direct-contact {
  display: flex;
  flex-direction: column;
  gap: var(--atw-space-md);
}

.atw-direct-contact-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

.atw-contact-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: var(--atw-space-sm);
  font-size: 1.15rem;
  padding: 1.25rem 2rem;
}

.atw-contact-btn i {
  font-size: 1.4rem;
}

.atw-btn--whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.atw-btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: white;
}

.atw-direct-contact-hours {
  text-align: center;
  opacity: 0.8;
}

.atw-direct-contact-hours p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.atw-direct-contact-hours i {
  margin-right: 0.5rem;
}

/* ============================================
   22. ANIMATIONS (Optional - Scroll Effects)
   ============================================ */

.atw-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.atw-animate.atw-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   22. MEDIA QUERIES - TABLET (768px+)
   ============================================ */

@media (min-width: 768px) {
  /* Typography - increase sizes */
  :root {
    --atw-h1: 2.5rem;
    --atw-h2: 2rem;
    --atw-h3: 1.625rem;
  }

  /* Navigation - show as horizontal menu */
  .atw-menu-toggle {
    display: none;
  }

  .atw-mobile-menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    box-shadow: none;
    padding: 0;
    gap: var(--atw-space-md);
  }

  .atw-mobile-menu a {
    padding: 0.5rem;
    border-bottom: none;
  }

  /* Hero - side by side layout */
  .atw-hero-content {
    flex-direction: row;
    align-items: center;
  }

  .atw-hero-text,
  .atw-hero-image {
    flex: 1;
  }

  .atw-hero-cta {
    flex-direction: row;
  }

  /* Grid - 2 columns */
  .atw-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Two column layouts */
  .atw-two-column {
    flex-direction: row;
    align-items: center;
  }

  .atw-two-column--reverse {
    flex-direction: row-reverse;
  }

  .atw-two-column-text,
  .atw-two-column-image {
    flex: 1;
  }

  /* Steps - horizontal timeline */
  .atw-steps {
    flex-direction: row;
  }

  /* Contact grid - 2 columns */
  .atw-contact-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .atw-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================
   23. MEDIA QUERIES - DESKTOP (1024px+)
   ============================================ */

@media (min-width: 1024px) {
  /* Typography - desktop sizes */
  :root {
    --atw-h1: 3.5rem;
    --atw-h2: 2.5rem;
    --atw-h3: 1.875rem;
  }

  /* Sections - more spacing */
  .atw-section {
    padding: var(--atw-space-jumbo) 0;
  }

  /* Hero - larger min-height */
  .atw-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
  }

  /* Grid - 4 columns */
  .atw-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Footer - 4 columns */
  .atw-footer-content {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Container - more padding */
  .atw-container {
    padding: 0 var(--atw-space-lg);
  }
}

/* ============================================
   24. PRINT STYLES
   ============================================ */

@media print {
  .atw-nav,
  .atw-floating-phone,
  .atw-btn {
    display: none;
  }

  body {
    font-size: 12pt;
    color: black;
  }

  .atw-section {
    page-break-inside: avoid;
  }
}
