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

:root {
  --primary: #0F766E;
  --primary-light: #14B8A6;
  --primary-dark: #0F5A54;
  --secondary: #16A34A;
  --accent: #F97316;
  --accent-hover: #EA580C;
  --bg: #F8FAFC;
  --bg-white: #FFFFFF;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --border: #E2E8F0;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-soft: 0 20px 40px -15px rgba(15, 118, 110, 0.1);
  
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Utility */
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: white;
  box-shadow: 0 4px 14px 0 rgba(249, 115, 22, 0.39);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.btn-whatsapp {
  background: var(--secondary);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(22, 163, 74, 0.39);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
  background: #15803d;
}

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

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

/* Sections */
.section {
  padding: 5rem 0;
}

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

/* Sticky Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  padding: 1rem 0;
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
}

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

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
}

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

.nav-cta {
  display: flex;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, rgba(248, 250, 252, 0) 70%);
  border-radius: 50%;
  z-index: -1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

.hero-features {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}

.hero-feature i {
  color: var(--secondary);
  font-size: 1.25rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 2;
}

.glass-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-md);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}

.glass-card.card-1 {
  top: 10%;
  left: -10%;
}
.glass-card.card-2 {
  bottom: 15%;
  right: -5%;
  animation-delay: 2s;
}

.glass-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.glass-card.card-2 .glass-icon {
  background: var(--secondary);
}

.glass-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin-bottom: 2px;
}

.glass-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Trust Badges */
.trust-badges {
  background: var(--primary);
  padding: 2rem 0;
  color: white;
  overflow: hidden;
}

.trust-scroll {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.trust-item i {
  font-size: 1.5rem;
  color: var(--bg);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.about-list {
  margin-bottom: 2rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  font-weight: 500;
}

.about-list i {
  color: var(--secondary);
  font-size: 1.25rem;
  background: rgba(22, 163, 74, 0.1);
  padding: 8px;
  border-radius: 50%;
}

/* Scrap Price Table */
.price-table-container {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th {
  background: var(--primary);
  color: white;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.price-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table tbody tr:nth-child(even) {
  background-color: var(--bg);
}

.price-table tbody tr:hover {
  background-color: rgba(20, 184, 166, 0.05);
}

.price-highlight {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.1rem;
}

.price-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Cities We Serve */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.city-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}

.city-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.city-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.city-icon {
  width: 50px;
  height: 50px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.city-header h3 {
  font-size: 1.25rem;
}

.city-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.city-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.city-features i {
  color: var(--secondary);
}

/* What We Buy */
.buy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.buy-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}

.buy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.buy-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  transition: var(--transition);
}

.buy-card:hover .buy-icon {
  background: var(--primary);
  color: white;
}

.buy-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* How It Works */
.timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin-top: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--border);
  z-index: 1;
}

.timeline-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  min-width: 150px;
  margin-bottom: 2rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: white;
  border: 2px solid var(--primary);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.timeline-step:hover .step-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.timeline-step h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step-number {
  position: absolute;
  top: -10px;
  right: calc(50% - 40px);
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Why Choose Us */
.features-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.features-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--primary);
  background: rgba(15, 118, 110, 0.1);
  padding: 10px;
  border-radius: var(--radius-sm);
}

.feature-item h4 {
  margin-bottom: 0.25rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Recycling Process */
.process-flow {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: center;
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  gap: 2rem;
  position: relative;
  transition: var(--transition);
}

.process-step:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--secondary);
}

.process-icon {
  width: 60px;
  height: 60px;
  background: rgba(22, 163, 74, 0.1);
  color: var(--secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.process-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.process-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Statistics */
.stats {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.stars {
  color: #FBBF24;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.1rem;
}

.author-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  color: rgba(15, 118, 110, 0.1);
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  transition: var(--transition);
}

.faq-header:hover {
  color: var(--primary);
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-body {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-body {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px; /* arbitrary max height for animation */
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  margin: 4rem auto;
  box-shadow: var(--shadow-lg);
}

.final-cta h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-about .logo {
  color: white;
  margin-bottom: 1rem;
}

.footer-about p {
  color: #94A3B8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #94A3B8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--primary-light);
  font-size: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  color: #64748B;
  font-size: 0.9rem;
}

/* Floating Elements */
.floating-elements {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.float-whatsapp {
  background: var(--secondary);
}

.float-whatsapp:hover {
  background: #15803d;
  transform: scale(1.1);
}

.float-call {
  background: var(--primary);
}

.float-call:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.back-to-top {
  width: 45px;
  height: 45px;
  background: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary);
}

.mobile-bottom-cta {
  display: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container, .about-grid, .features-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-buttons, .hero-features {
    justify-content: center;
  }
  
  .timeline::before {
    display: none;
  }
  
  .timeline-step {
    flex: 1 1 50%;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-cta {
    display: none;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 24px;
    box-shadow: var(--shadow-md);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  
  .nav-links a:last-child {
    border-bottom: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline-step {
    flex: 1 1 100%;
  }

  .cta-buttons {
    flex-direction: column;
  }

  /* Mobile bottom sticky CTA */
  .mobile-bottom-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  }

  .mobile-bottom-cta a {
    flex: 1;
    text-align: center;
    padding: 1rem;
    font-weight: 600;
    color: white;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .mobile-cta-call {
    background: var(--primary);
  }

  .mobile-cta-wa {
    background: var(--secondary);
  }

  .floating-elements {
    display: none; /* Hide floating on mobile in favor of bottom bar */
  }
}

/* Page Loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.spinner-icon {
  font-size: 4rem;
  color: var(--secondary);
  animation: eco-spin 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes eco-spin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); color: var(--primary); }
  100% { transform: rotate(360deg) scale(1); color: var(--secondary); }
}

/* Other Pages (Privacy, Terms, Contact) */
.page-content, .contact-section {
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.page-content h1, .contact-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.page-content h2 {
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.page-content p, .page-content ul {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.page-content ul {
  padding-left: 2rem;
  list-style: disc;
}

.page-content li {
  margin-bottom: 0.5rem;
}

/* Contact Page Specifics */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-method i {
  font-size: 1.5rem;
  color: var(--primary);
  background: rgba(15, 118, 110, 0.1);
  padding: 12px;
  border-radius: var(--radius-sm);
}

.contact-method h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.contact-method a, .contact-method p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.contact-form-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
  background: var(--bg);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
  background: white;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Blogs */
.blog-header {
  text-align: center;
  padding: 4rem 1rem 2rem;
  background: var(--bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.blog-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.blog-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.blog-excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-read-more {
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-read-more:hover {
  color: var(--primary-dark);
}

/* Blog Detail */
.blog-detail-header {
  text-align: center;
  padding: 5rem 1rem 4rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
}

.blog-detail-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: white;
}

.blog-detail-meta {
  opacity: 0.9;
  font-size: 1rem;
}

.blog-detail-container {
  max-width: 800px;
  margin: -3rem auto 3rem;
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 10;
}

.blog-detail-thumbnail {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.blog-detail-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.blog-detail-body h2 {
  margin: 2rem 0 1rem;
  font-size: 1.75rem;
}

.blog-detail-body h3 {
  margin: 1.5rem 0 1rem;
  font-size: 1.35rem;
}

.blog-detail-body p {
  margin-bottom: 1.5rem;
}

.blog-detail-body ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.blog-detail-body li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .blog-detail-container {
    padding: 1.5rem;
    margin-top: -1.5rem;
  }
  .blog-detail-header h1 {
    font-size: 1.8rem;
  }
  .blog-detail-thumbnail {
    height: 250px;
  }
}
