* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; width: 100%; scroll-behavior: smooth; }
body { background: #fff; color: #000; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif; box-sizing: border-box; }
.app-wrapper { width: 100%; height: 100%; display: flex; flex-direction: column; overflow-y: auto; }

/* Announcement Bar */
.announcement-bar { background: #000; color: #fff; padding: 12px 40px; text-align: center; font-size: 13px; font-weight: 500; position: relative; z-index: 999; }
.announcement-bar a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3); transition: border-color 0.3s; }
.announcement-bar a:hover { border-bottom-color: #fff; }

/* Navigation - Updated to Center All Elements */
nav { 
  background: #fff; 
  padding: 20px 40px; 
  display: flex; 
  justify-content: center; /* Changes from space-between to center */
  align-items: center; 
  gap: 40px; /* Sets a standard gap between logo and links group */
  border-bottom: 1px solid #e5e5e7; 
  position: sticky; 
  top: 0; 
  z-index: 100; 
}
.logo { font-size: 16px; font-weight: 700; letter-spacing: 1px; }
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a { font-size: 13px; color: #000; text-decoration: none; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #666; }
.nav-btn { background: #000; color: #fff; padding: 10px 24px; border-radius: 18px; border: none; font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.nav-btn:hover { background: #333; }

/* Hero */
.hero { width: 100%; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 80px 40px; background: #fff; text-align: center; }
.hero h1 { font-size: 56px; font-weight: 700; line-height: 1.2; margin-bottom: 20px; letter-spacing: -1px; }
.hero p { font-size: 18px; color: #666; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; font-weight: 400; line-height: 1.6; }
.hero-btn { background: #000; color: #fff; padding: 12px 32px; border-radius: 20px; font-size: 13px; font-weight: 600; border: none; cursor: pointer; transition: all 0.2s; }
.hero-btn:hover { background: #333; transform: translateY(-1px); box-shadow: 0 8px 16px rgba(0,0,0,0.2); }
.hero-buttons { display: flex; gap: 16px; justify-content: center; }
.hero-btn-secondary { background: transparent; color: #000; padding: 12px 32px; border-radius: 20px; font-size: 13px; font-weight: 600; border: 1px solid #e5e5e7; cursor: pointer; transition: all 0.2s; }
.hero-btn-secondary:hover { background: #f5f5f7; border-color: #000; }

/* Section */
section { padding: 100px 40px; }
section h2 { font-size: 44px; font-weight: 600; margin-bottom: 12px; text-align: center; }
section > p { font-size: 16px; color: #666; text-align: center; margin-bottom: 60px; max-width: 600px; margin-left: auto; margin-right: auto; font-weight: 400; line-height: 1.6; }


/* About Grid - Premium Refinement */
#about { padding: 80px 40px 100px; } /* Raises the section up */
#about h2 { font-size: 48px; letter-spacing: -1px; margin-bottom: 60px; } /* Better spacing below title */

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 120px; align-items: start; max-width: 1200px; margin: 0 auto; }
.about-text h3 { font-size: 32px; font-weight: 700; margin-bottom: 24px; letter-spacing: -0.5px; }
.about-text p { font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 24px; }

.about-stats { display: flex; flex-direction: column; gap: 60px; }
.stat { text-align: left; }
.stat-number { font-size: 64px; font-weight: 800; color: #000; letter-spacing: -2.5px; line-height: 1; } /* Massive, impactful numbers */
.stat-label { font-size: 12px; color: #888; margin-top: 12px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1400px; margin: 0 auto; }
.service-card { padding: 40px; background: #f5f5f7; border-radius: 18px; transition: all 0.3s ease; border: 1px solid transparent; }
.service-card:hover { background: #efeff2; transform: translateY(-4px); }
.service-icon { width: 44px; height: 44px; margin-bottom: 20px; color: #000; flex-shrink: 0; }
.service-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 12px; }
.service-card p { font-size: 13px; color: #666; line-height: 1.7; }

Clients Swimming Section
.clients-section { position: relative; overflow: hidden; background: #f5f5f7; }
.clients-swim { display: flex; gap: 20px; animation: swim 30s linear infinite; }
.clients-swim:hover { animation-play-state: paused; }
.client-card { flex: 0 0 auto; width: 240px; height: 140px; background: #fff; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: #000; cursor: pointer; transition: all 0.3s; border: 1px solid #e5e5e7; position: relative; }
.client-card:hover { transform: scale(1.05); box-shadow: 0 12px 24px rgba(0,0,0,0.1); }
.client-card.active { background: #000; color: #fff; border-color: #000; }
.client-detail { position: absolute; top: 12px; right: 12px; width: 20px; height: 20px; background: rgba(0,0,0,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; opacity: 0; transition: opacity 0.3s; }
.client-card:hover .client-detail { opacity: 1; }
.client-card.active .client-detail { background: rgba(255,255,255,0.3); opacity: 1; }

.client-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 2000; align-items: center; justify-content: center; padding: 20px; animation: fadeIn 0.3s ease; }
.client-modal.active { display: flex; }
.client-modal-content { background: #fff; border-radius: 20px; max-width: 600px; width: 100%; padding: 40px; position: relative; animation: slideUp 0.3s ease; }
.client-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; background: transparent; border: none; font-size: 24px; cursor: pointer; color: #999; }
.client-modal h2 { font-size: 28px; font-weight: 700; margin-bottom: 12px; color: #0071e3; }
.client-modal p { font-size: 14px; color: #666; margin-bottom: 12px; line-height: 1.7; }

/* Google Map */
.map-container { width: 100%; height: 400px; border-radius: 18px; overflow: hidden; margin-top: 40px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
iframe { width: 100%; height: 100%; border: none; }

/* Contact Refined Layout */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1400px; margin: 0 auto; align-items: start; }
.contact-info-left { display: flex; flex-direction: column; gap: 40px; }
.contact-info-text h3 { font-size: 24px; font-weight: 600; margin-bottom: 24px; }
.contact-list { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; flex-direction: column; gap: 2px; } /* Added gap to keep labels tightly grouped with data */
.contact-item h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; font-weight: 700; color: #888; }
.contact-item p { font-size: 15px; margin-bottom: 4px; }
.contact-item a { color: #000; text-decoration: none; font-weight: 600; transition: color 0.2s; }
.contact-item a:hover { color: #333; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; align-items: stretch; }

/* Base state: All cards look clean and uniform */
.price-card { padding: 40px; border: 2px solid #e5e5e7; border-radius: 20px; transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); background: #fff; position: relative; overflow: hidden; display: flex; flex-direction: column; }

/* Hover state: The black border and highlights show up when the user interacts */
.price-card:hover { transform: translateY(-12px); box-shadow: 0 24px 48px rgba(0,0,0,0.15); border-color: #000; }
.price-card:hover .price-tier { color: #000; font-weight: 700; }
.price-card:hover .price-features li::before { color: #34c759; } /* Green checks on hover */

.price-tier { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 16px; color: #888; transition: color 0.3s; }
.price-amount { font-size: 48px; font-weight: 800; margin-bottom: 4px; color: #000; letter-spacing: -1.5px; transition: color 0.3s; }
.price-period { font-size: 13px; color: #888; margin-bottom: 32px; transition: color 0.3s; }
.price-features { list-style: none; margin-bottom: 32px; flex-grow: 1; }
.price-features li { padding: 12px 0; font-size: 13px; color: #333; border-bottom: 1px solid #e5e5e7; transition: all 0.3s; position: relative; }
.price-features li::before { content: '✓ '; color: #333; font-weight: 700; margin-right: 10px; transition: color 0.3s; }

.price-btn { width: 100%; padding: 13px 24px; background: #000; color: #fff; border: none; border-radius: 24px; font-weight: 700; cursor: pointer; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); font-size: 13px; letter-spacing: 0.3px; text-transform: uppercase; position: relative; overflow: hidden; margin-top: auto; }
.price-btn::after { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: rgba(255,255,255,0.2); border-radius: 50%; transform: translate(-50%, -50%); transition: width 0.6s, height 0.6s; }
.price-btn:hover::after { width: 300px; height: 300px; }
.price-btn:hover { background: #333; transform: scale(1.02); }

/* Refined Featured State (White Background, Black Accents) */
.price-card.featured { border: 2px solid #000; background: #fff; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.price-card.featured:hover { transform: translateY(-12px); box-shadow: 0 24px 48px rgba(0,0,0,0.15); border-color: #000; }
.price-card.featured .price-tier { color: #888; font-weight: 700; }
.price-card.featured .price-amount { color: #000; font-weight: 800; letter-spacing: -2px; } /* Kept letter-spacing very tight */
.price-card.featured .price-period { color: #888; }
.price-card.featured .price-features li { color: #333; border-bottom-color: rgba(0,0,0,0.05); } /* Softer border on features */
.price-card.featured .price-features li::before { color: #34c759; } /* Kept green checkmark */

/* General Pricing hover behavior */
.price-card:hover:not(.featured) { transform: translateY(-8px); box-shadow: 0 16px 32px rgba(0,0,0,0.08); border-color: #d2d2d7; }

/* Modal */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 2000; align-items: center; justify-content: center; padding: 20px; }
.modal.active { display: flex; }
.modal-content { background: #fff; border-radius: 20px; max-width: 500px; width: 100%; padding: 40px; position: relative; animation: slideUp 0.3s ease; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; background: transparent; border: none; font-size: 24px; cursor: pointer; color: #999; }
.modal h2 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.modal p { font-size: 14px; color: #666; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; color: #888; letter-spacing: 1px; }
.form-group input { width: 100%; padding: 12px; border: 1px solid #e5e5e7; border-radius: 8px; font-size: 14px; transition: all 0.2s; }
.form-group input:focus { outline: none; border-color: #000; box-shadow: 0 0 0 3px rgba(0,0,0,0.1); }
.form-submit { width: 100%; padding: 12px; background: #000; color: #fff; border: none; border-radius: 20px; font-weight: 600; cursor: pointer; transition: all 0.2s; font-size: 13px; }
.form-submit:hover:not(:disabled) { background: #333; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Thank You */
.thank-you { 
  display: none; 
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background: rgba(255, 255, 255, 0.7); /* Slightly more opaque for better contrast */
  backdrop-filter: blur(20px) saturate(180%); /* Stronger premium Apple blur */
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 3000; 
  align-items: center; 
  justify-content: center; 
}
.thank-you.active { display: flex; }
.thank-you-box { 
  background: #fff; 
  border-radius: 28px; /* Slightly more rounded */
  padding: 60px 40px; 
  text-align: center; 
  max-width: 480px; 
  width: 90%;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1); /* Softer, deep shadow */
  animation: scaleIn 0.4s cubic-bezier(0.22, 1, 0.36, 1); /* Smoother animation */
}
.thank-you-icon { 
  width: 80px; 
  height: 80px; 
  background: #34c759; /* Vibrant Success Green */
  border-radius: 50%; 
  margin: 0 auto 32px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 36px; 
  color: #fff; 
  /* Add a soft green glow to the icon */
  box-shadow: 0 10px 25px rgba(52, 199, 89, 0.3); 
}
.thank-you-box h2 { 
  font-size: 32px; /* Marginally larger */
  font-weight: 700; 
  margin-bottom: 16px; 
  color: #1d1d1f; 
  letter-spacing: -0.5px;
}
.thank-you-box p { 
  font-size: 16px; /* Increased font size for better readability */
  color: #515154; 
  line-height: 1.6; 
  margin-bottom: 0;
}

/* OK Button - Beauty Fix (Now Green) */
.thank-you-btn { 
  margin-top: 40px; 
  padding: 14px 48px; 
  background: #34c759; /* Green background instead of black */
  color: #fff; 
  border: none; 
  border-radius: 24px; /* Matches larger padding */
  font-weight: 600; 
  font-size: 16px; 
  cursor: pointer; 
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); 
  box-shadow: 0 4px 12px rgba(52, 199, 89, 0.2); /* Subtle button shadow */
}
.thank-you-btn:hover { 
  background: #30b551; /* Slightly darker green on hover */
  transform: translateY(-2px); /* Gentle lift */
  box-shadow: 0 6px 16px rgba(52, 199, 89, 0.3); /* Stronger glow on hover */
}
.thank-you-btn:active {
  transform: translateY(0) scale(0.98); /* Click effect */
}

/* Footer*/
footer { padding: 20px 40px; background: #f5f5f7; border-top: 1px solid #d2d2d7; font-size: 12px; color: #86868b; }
.footer-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-left { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.footer-links { display: flex; align-items: center; flex-wrap: wrap; }
.footer-links a { color: #515154; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #1d1d1f; text-decoration: underline; }
.divider { margin: 0 10px; color: #d2d2d7; }
.footer-region { color: #515154; }



/* Increase max-width to give cards more room */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1300px; margin: 0 auto; align-items: stretch; }

/* Reduce padding from 40px to 32px to give text more width inside the card */
.price-card { padding: 32px; border: 2px solid #e5e5e7; border-radius: 20px; transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); background: #fff; position: relative; overflow: hidden; display: flex; flex-direction: column; }

/* Add white-space: nowrap and adjust font size slightly */
.price-features li { padding: 12px 0; font-size: 12px; white-space: nowrap; color: #333; border-bottom: 1px solid #e5e5e7; transition: all 0.3s; position: relative; }

@media (max-width: 1024px) {
  .footer-left { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 768px) {
  .footer-content { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links { line-height: 2; }
}

@keyframes swim { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes scaleIn { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }

@media (max-width: 768px) {
  .about-grid, .pricing-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: scale(1); }
  nav { padding: 10px 20px; }
  .announcement-bar { padding: 10px 20px; font-size: 12px; }
  section { padding: 60px 20px; }
  .hero { padding: 140px 20px 60px; }
  .hero h1 { font-size: 36px; }
  .pricing-grid { gap: 16px; }
}
/* Language Selector Styles */
.lang-selector { position: relative; display: flex; align-items: center; margin-left: 8px; }
.lang-btn { background: transparent; border: none; cursor: pointer; color: #1d1d1f; display: flex; align-items: center; justify-content: center; transition: opacity 0.2s; padding: 0; outline: none; }
.lang-btn:hover { opacity: 0.6; }
.lang-btn svg { width: 22px; height: 22px; }

.lang-menu { 
  display: none; 
  position: absolute; 
  top: 100%; 
  right: 50%; 
  transform: translateX(50%); 
  margin-top: 16px; 
  background: rgba(255, 255, 255, 0.9); 
  backdrop-filter: blur(20px) saturate(180%); 
  -webkit-backdrop-filter: blur(20px) saturate(180%); 
  border-radius: 12px; 
  box-shadow: 0 10px 40px rgba(0,0,0,0.1); 
  border: 1px solid rgba(0,0,0,0.05); 
  min-width: 130px; 
  overflow: hidden; 
  z-index: 1001; 
}
.lang-menu.active { display: block; animation: scaleIn 0.2s cubic-bezier(0.22, 1, 0.36, 1); }
.lang-menu a { 
  display: block; 
  padding: 12px 20px; 
  font-size: 13px; 
  color: #1d1d1f; 
  text-decoration: none; 
  font-weight: 500; 
  text-align: center; 
  border-bottom: 1px solid rgba(0,0,0,0.05); 
  transition: background 0.2s; 
}
.lang-menu a:last-child { border-bottom: none; }
.lang-menu a:hover { background: rgba(0,0,0,0.05); }

@media (max-width: 768px) {
  .lang-menu { right: 0; transform: none; }
}
/* --- MOBILE MENU FIX --- */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 26px;
    color: #1d1d1f;
    cursor: pointer;
}

@media (max-width: 950px) {
    .mobile-toggle {
        display: block; /* Show hamburger button */
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 40px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        display: none; /* Hide standard links */
        z-index: 1000;
        border-top: 1px solid rgba(0,0,0,0.05);
    }
    .nav-links.active {
        display: flex; /* Show dropdown when clicked */
    }
    .nav-links a {
        margin: 15px 0;
        font-size: 18px;
        font-weight: 600;
        width: 100%;
    }
    .nav-links .nav-btn {
        margin: 20px 0 10px 0;
        width: 100%;
        text-align: center;
    }
    .lang-selector {
        margin-left: 0;
        margin-top: 15px;
        padding-bottom: 20px;
    }
    .lang-menu {
        left: 0;
        right: auto;
        transform: none;
    }
}
html, body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

.app-wrapper {
  overflow-x: hidden;
  width: 100%;
}

@font-face {
  font-family: 'Coolvetica';
  src: url('RomanSerif.ttf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* Apply it to everything on the site */
body, h1, h2, h3, h4, h5, h6, p, a, button, input, select, textarea {
  font-family: 'Coolvetica', -apple-system, BlinkMacSystemFont, sans-serif !important;
}