/* PhyllisGladys Travel - Dream Trip Concierge Design */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Ocean/Teal Gradient Colors */
  --teal-dark: #022c22;
  --teal-mid: #0f766e;
  --teal-bright: #14b8a6;
  --coral-accent: #fb7185;
  --orange-warm: #fb923c;
  
  /* UI Colors */
  --text-dark: #0f172a;
  --text-gray: #475569;
  --text-light: #64748b;
  --white: #ffffff;
  --off-white: #fef7f3;
  --bg-cream: #fef3f0;
  --border-light: #e2e8f0;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2), 0 4px 10px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 20px rgba(20, 184, 166, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==================== STICKY NAVIGATION ==================== */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(2, 44, 34, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20, 184, 166, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}

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

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

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

/* ==================== HERO SECTION ==================== */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding: 120px 24px 100px;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(2, 44, 34, 0.85) 0%, rgba(15, 118, 110, 0.75) 50%, rgba(2, 44, 34, 0.85) 100%);
  z-index: 1;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(20, 184, 166, 0.2);
  border: 1px solid rgba(20, 184, 166, 0.5);
  color: var(--teal-bright);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--coral-accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(251, 113, 133, 0.4);
}

.btn-primary:hover {
  background: #f43f5e;
  box-shadow: 0 6px 20px rgba(251, 113, 133, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--orange-warm);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(251, 146, 60, 0.4);
}

.btn-secondary:hover {
  background: #f97316;
  box-shadow: 0 6px 20px rgba(251, 146, 60, 0.5);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  border-color: var(--teal-bright);
  background: rgba(20, 184, 166, 0.15);
  color: var(--teal-bright);
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.125rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* ==================== SERVICES ROW ==================== */
.services-row {
  padding: 80px 24px;
  background: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--off-white);
  border: 2px solid var(--border-light);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--teal-bright);
  background: var(--white);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--teal-mid) 0%, var(--teal-bright) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
  stroke-width: 2.5;
}

.service-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-gray);
  line-height: 1.7;
}

/* ==================== DEALS SECTION ==================== */
.deals-section {
  padding: 60px 24px;
  background: var(--bg-cream);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 40px;
}

.deals-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== WIDGET CONTAINER ==================== */
.widget-container {
  padding: 40px 0;
  max-width: 1000px;
  margin: 0 auto;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  padding: 80px 24px;
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--off-white);
  border-left: 4px solid var(--coral-accent);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-card p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-gray);
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--teal-mid);
  font-style: normal;
}

/* ==================== FORM SECTION ==================== */
.form-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-mid) 50%, var(--teal-dark) 100%);
  color: var(--white);
}

.form-section .section-title,
.form-section .section-subtitle {
  color: var(--white);
}

.form-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
  background: var(--white);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

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

.form-reassurance {
  background: var(--bg-cream);
  border-left: 3px solid var(--coral-accent);
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  color: var(--text-gray);
  font-size: 0.9375rem;
}

.consent {
  font-size: 0.875rem;
  color: var(--text-gray);
  text-align: center;
  margin-bottom: 24px;
}

.consent a {
  color: var(--teal-mid);
  text-decoration: none;
}

.consent a:hover {
  text-decoration: underline;
}

form .btn-primary {
  width: 100%;
  padding: 16px 32px;
  font-size: 1.0625rem;
}

.success-message {
  display: none;
  background: linear-gradient(135deg, var(--teal-bright) 0%, var(--teal-mid) 100%);
  color: var(--white);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 1.125rem;
}

.success-message.show {
  display: block;
}

/* Bot trap - hidden */
.bot-trap {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* ==================== FOOTER ==================== */
footer {
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 48px 24px;
  text-align: center;
}

footer .affiliate-disclosure {
  background: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 8px;
  padding: 16px 24px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
}

footer .affiliate-disclosure strong {
  color: var(--teal-bright);
}

footer a {
  color: var(--teal-bright);
  text-decoration: none;
  margin: 0 12px;
}

footer a:hover {
  text-decoration: underline;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 1.875rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .form-card {
    padding: 32px 24px;
  }
  
  .nav-links {
    gap: 16px;
  }
  
  .nav-links a {
    font-size: 0.875rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .hero-section {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.875rem;
  }
  
  .nav-container {
    height: 64px;
  }
  
  .nav-logo {
    font-size: 1.125rem;
  }
  
  .deals-cta {
    flex-direction: column;
  }
}
