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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: #f5f7fa;
  color: #222;
  line-height: 1.6;
}

p {
  margin: 0 0 16px 0;
  max-width: 65ch;
}

h1, h2, h3 {
  color: #1a1a1a;
  line-height: 1.3;
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
  margin: 0 0 20px 0;
}

h2 {
  font-size: 1.75rem;
  margin: 0 0 20px 0;
}

h3 {
  font-size: 1.25rem;
  margin: 0 0 16px 0;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* NAVIGATION */
header {
  background: #ffffff;
  border-bottom: 2px solid #e8ecf1;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0066cc;
  letter-spacing: -0.5px;
}

.logo-line1,
.logo-line2 {
  display: inline;
}

@media (max-width: 768px) {
  .logo-line1 {
    display: block;
  }
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.2s;
  font-size: 0.95rem;
}

.nav a:hover {
  color: #0066cc;
}

.nav a.active {
  color: #0066cc;
  font-weight: 600;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
  padding: 80px 0;
  border-bottom: 1px solid #e8ecf1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

.hero-buttons {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s;
  font-size: 1rem;
  border: 2px solid transparent;
}

.primary {
  background: #0066cc;
  color: white;
  border-color: #0066cc;
}

.primary:hover {
  background: #0052a3;
  border-color: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,102,204,0.3);
}

.secondary {
  border: 2px solid #0066cc;
  color: #0066cc;
  background: white;
}

.secondary:hover {
  background: #f0f7ff;
  transform: translateY(-2px);
}

.hero-photo {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border: 1px solid #e8ecf1;
}

.hero-photo img {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  padding: 40px 0;
  color: white;
  border-bottom: 4px solid #004999;
}

.page-header h1 {
  color: white;
  font-size: 2rem;
  margin: 0 0 8px 0;
}

.page-header p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 0;
  max-width: none;
}

/* SPLIT LAYOUT (Image + Text) */
.split-section {
  background: white;
  padding: 80px 0;
  border-bottom: 1px solid #e8ecf1;
}

.split {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}

.split-photo {
  background: #f8fafc;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e8ecf1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.split-photo img {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.split-text {
  padding-top: 20px;
}

.split-text h2 {
  color: #0066cc;
}

.split-text p {
  color: #555;
  font-size: 1.05rem;
}

/* CARDS SECTION */
.cards-section {
  background: #f8fafc;
  padding: 80px 0;
  border-bottom: 1px solid #e8ecf1;
}

.cards-section h2 {
  color: #0066cc;
  margin-bottom: 48px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.card {
  background: white;
  padding: 36px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 2px solid #e8ecf1;
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: #0066cc;
}

a .card {
  cursor: pointer;
}

a .card:hover {
  border-color: #0066cc;
}

.card h2, .card h3 {
  color: #0066cc;
}

.card p {
  color: #555;
  line-height: 1.7;
  font-size: 0.98rem;
}

.card ul {
  padding-left: 22px;
  margin: 20px 0 0 0;
}

.card li {
  margin-bottom: 10px;
  color: #555;
  line-height: 1.6;
}

/* PRICING */
.pricing-section {
  background: white;
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid #e8ecf1;
}

.pricing-section h2 {
  font-size: 2.2rem;
  margin-bottom: 48px;
  color: #0066cc;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 800px;
  margin: 0 auto 48px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #0066cc;
  margin: 24px 0;
}

/* TESTIMONIALS */
.quote {
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #444;
  font-size: 1.05rem;
  border-left: 4px solid #0066cc;
  padding-left: 20px;
}

.quote-name {
  font-weight: 600;
  color: #0066cc;
  margin-top: 0;
  font-style: normal;
  padding-left: 24px;
}

/* ABOUT PAGE SPECIFIC */
.about-photo {
  background: #f8fafc;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e8ecf1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.about-photo img {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

/* FOOTER */
footer {
  background: #1a1a1a;
  padding: 32px 0;
  margin-top: 0;
  border-top: 4px solid #0066cc;
}

footer .container {
  color: #e0e0e0;
  text-align: center;
  font-size: 0.95rem;
}

/* UTILITIES */
.center {
  text-align: center;
}

/* CONTENT BOXES - Light modern containers */
.content-box {
  background: white;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #e8ecf1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* HAMBURGER MENU BUTTON - Hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 200;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #0066cc;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ========================================
   MOBILE RESPONSIVE - Tablet (768px)
   ======================================== */
@media (max-width: 768px) {
  
  /* LOGO - Better wrapping */
  .logo {
    font-size: 1.1rem;
    line-height: 1.3;
  }
  
  /* HAMBURGER MENU */
  .nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    flex-direction: column;
    padding: 100px 40px 40px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    z-index: 150;
    display: flex;
    align-items: center;
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-menu li {
    margin: 0 0 28px 0;
    text-align: center;
    width: 100%;
  }
  
  .nav-menu a {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    display: block;
    padding: 12px 20px;
    border-radius: 8px;
    transition: background 0.2s;
  }
  
  .nav-menu a:hover,
  .nav-menu a.active {
    background: rgba(255,255,255,0.15);
    color: white;
  }
  
  /* Overlay when menu is open */
  .nav-menu.open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    z-index: -1;
  }

  /* HERO SECTION */
  .hero {
    padding: 40px 0;
  }
  
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .hero-text.content-box {
    padding: 30px 24px;
    order: 1;
  }

  .hero-text h1 {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }

  .hero-text p {
    max-width: none;
    font-size: 1rem;
  }
  
  .hero-photo {
    order: 2;
    padding: 12px;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  /* PAGE HEADERS */
  .page-header {
    padding: 30px 0;
  }
  
  .page-header h1 {
    font-size: 1.75rem;
  }

  .page-header p {
    font-size: 1rem;
  }

  /* SPLIT SECTIONS */
  .split-section {
    padding: 40px 0;
  }
  
  .split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .split-text.content-box {
    padding: 28px 24px;
    order: 1;
  }

  .split-text {
    padding-top: 0;
  }
  
  .split-text h2 {
    font-size: 1.5rem;
  }
  
  .split-photo {
    order: 2;
    padding: 12px;
    max-width: 300px;
    margin: 0 auto;
  }

  /* CARDS SECTION */
  .cards-section {
    padding: 40px 0;
  }
  
  .cards-section h2 {
    margin-bottom: 24px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }
  
  .card {
    padding: 24px 20px;
  }

  /* PRICING */
  .pricing-section {
    padding: 40px 0;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* CONTENT BOXES */
  .content-box {
    padding: 28px 24px;
  }

  /* BUTTONS */
  .btn {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    font-size: 1rem;
  }

  /* FORM */
  form input,
  form textarea {
    font-size: 16px !important; /* Prevents iOS zoom */
  }
  
  /* Reduce form container padding */
  .pricing-section > .container > div[style*="padding: 40px"] {
    padding: 28px 20px !important;
  }

  /* FOOTER */
  footer {
    padding: 24px 0;
  }
}

/* ========================================
   MOBILE RESPONSIVE - Small phones (480px)
   ======================================== */
@media (max-width: 480px) {
  .container {
    width: 92%;
  }
  
  /* Logo - shorter version on small screens */
  .logo {
    font-size: 1rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.35rem;
  }
  
  h3 {
    font-size: 1.15rem;
  }
  
  .hero-text.content-box,
  .split-text.content-box,
  .content-box {
    padding: 24px 20px;
  }
  
  .hero-photo,
  .split-photo {
    max-width: 240px;
  }
  
  .card {
    padding: 20px 16px;
  }
  
  .price {
    font-size: 1.5rem;
  }
  
  .nav-menu {
    width: 100%;
    right: -100%;
  }
}