/* ======================================
   HZ WASTE MANAGEMENT - MAIN STYLES
   Professional Waste Management Website
   ====================================== */

:root {
  --color-scheme: dark;
  --bg-primary: #04081c;
  --bg-secondary: #05101f;
  --bg-tertiary: #091020;
  --surface: rgba(18, 32, 74, 0.86);
  --surface-strong: rgba(13, 22, 52, 0.94);
  --text-primary: #edf2ff;
  --text-secondary: #9bb4d7;
  --accent: #f5b942;
  --accent-soft: rgba(245, 185, 66, 0.18);
  --accent-hover: #f7c96f;
  --accent-blue: #0478ff;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET & BASE ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 45%, var(--bg-tertiary) 100%);
  color: var(--text-primary);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('backround.jpg') center/cover no-repeat;
  opacity: 0.12;
  filter: blur(3px);
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(245, 185, 66, 0.15), transparent 35%),
              radial-gradient(circle at 80% 90%, rgba(4, 120, 255, 0.12), transparent 40%);
  pointer-events: none;
  z-index: -1;
}

.page-wrapper {
  position: relative;
  overflow: hidden;
}

/* ===== HEADER/NAVIGATION ===== */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  backdrop-filter: blur(20px);
  background: rgba(4, 8, 28, 0.88);
  border-bottom: 1px solid var(--border);
  z-index: 50;
  transition: var(--transition);
}

header.site-header.scrolled {
  background: rgba(4, 8, 28, 0.95);
  border-bottom-color: var(--border-strong);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  font-size: 1.2rem;
  transition: var(--transition);
}

.brand:hover {
  color: var(--accent);
}

.brand img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(245, 185, 66, 0.2);
  transition: var(--transition);
}

.brand img:hover {
  transform: rotate(-10deg) scale(1.05);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn-complain {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--bg-primary) !important;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
}

.btn-complain:hover::after {
  width: 0 !important;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(4, 120, 255, 0.08), transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  max-width: 1300px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.hero-copy h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  background: linear-gradient(135deg, #edf2ff 0%, #b8d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-copy p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
}

.btn-primary,
.btn-secondary {
  border: none;
  border-radius: 12px;
  padding: 1rem 2.2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--bg-primary);
  box-shadow: 0 20px 50px rgba(245, 185, 66, 0.3);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(245, 185, 66, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 32px;
  background: radial-gradient(circle at top left, rgba(245, 185, 66, 0.25), transparent 40%),
              radial-gradient(circle at bottom right, rgba(4, 120, 255, 0.2), transparent 35%);
  pointer-events: none;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(4, 8, 28, 0.6), rgba(2, 7, 22, 0.9));
  border: 1.5px solid var(--border-strong);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.hero-card:hover {
  transform: translateY(-10px);
  border-color: rgba(245, 185, 66, 0.3);
  box-shadow: 0 40px 100px rgba(245, 185, 66, 0.15);
}

.hero-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 400px;
}

.hero-card-text {
  padding: 2rem;
}

.hero-card-text h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
  font-weight: 700;
}

.hero-card-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ===== MAIN CONTENT ===== */
main {
  padding: 0 2rem 6rem;
  max-width: 1300px;
  margin: 0 auto;
}

.section {
  margin-top: 6rem;
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.section-header {
  margin-bottom: 3.5rem;
  text-align: center;
}

.section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #edf2ff 0%, #b8d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SERVICES GRID ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.card {
  background: linear-gradient(135deg, rgba(18, 32, 74, 0.7), rgba(13, 22, 52, 0.9));
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2.2rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-12px);
  border-color: rgba(245, 185, 66, 0.3);
  box-shadow: 0 40px 90px rgba(245, 185, 66, 0.1);
  background: linear-gradient(135deg, rgba(18, 32, 74, 0.85), rgba(13, 22, 52, 0.95));
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(245, 185, 66, 0.2), rgba(4, 120, 255, 0.15));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, rgba(245, 185, 66, 0.3), rgba(4, 120, 255, 0.25));
}

.card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.service-features i {
  color: var(--accent);
  font-weight: bold;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  margin-top: 8rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  position: relative;
  height: 500px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(245, 185, 66, 0.15);
}

.about-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--bg-primary);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(245, 185, 66, 0.3);
}

.badge-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
}

.badge-text {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.about-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.highlight-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: var(--transition);
}

.highlight-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 185, 66, 0.2);
  transform: translateY(-5px);
}

.highlight-item h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.highlight-item h4 i {
  color: var(--accent);
}

.highlight-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== STATISTICS SECTION ===== */
.stats-section {
  margin-top: 8rem;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(18, 32, 74, 0.4), rgba(4, 120, 255, 0.1));
  border: 1px solid var(--border);
  border-radius: 24px;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1.5px solid rgba(245, 185, 66, 0.15);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(245, 185, 66, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(245, 185, 66, 0.1);
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  margin-top: 8rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
  text-align: center;
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 185, 66, 0.2);
  transform: translateY(-8px);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(245, 185, 66, 0.2), rgba(4, 120, 255, 0.15));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  margin: 0 auto 1rem;
  transition: var(--transition);
}

.info-card:hover .info-icon {
  transform: scale(1.1) rotate(-5deg);
}

.info-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

.info-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

.info-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.info-card a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.subtext {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(155, 180, 215, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(245, 185, 66, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* ===== FOOTER ===== */
.site-footer {
  margin-top: 6rem;
  background: linear-gradient(180deg, rgba(4, 8, 28, 0.6), rgba(2, 7, 22, 0.95));
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.footer-section h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

/* Facebook */
.social-links a:nth-child(1) {
  color: #1877F2;
  border-color: rgba(24, 119, 242, 0.3);
}

.social-links a:nth-child(1):hover {
  background: #1877F2;
  color: white;
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

/* Twitter */
.social-links a:nth-child(2) {
  color: #1DA1F2;
  border-color: rgba(29, 161, 242, 0.3);
}

.social-links a:nth-child(2):hover {
  background: #1DA1F2;
  color: white;
  box-shadow: 0 8px 20px rgba(29, 161, 242, 0.4);
}

/* WhatsApp */
.social-links a:nth-child(3) {
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.3);
}

.social-links a:nth-child(3):hover {
  background: #25D366;
  color: white;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Instagram */
.social-links a:nth-child(4) {
  color: #E1306C;
  border-color: rgba(225, 48, 108, 0.3);
}

.social-links a:nth-child(4):hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
}

/* LinkedIn */
.social-links a:nth-child(5) {
  color: #0A66C2;
  border-color: rgba(10, 102, 194, 0.3);
}

.social-links a:nth-child(5):hover {
  background: #0A66C2;
  color: white;
  box-shadow: 0 8px 20px rgba(10, 102, 194, 0.4);
}

.social-links a:hover {
  transform: translateY(-5px);
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-visual {
    min-height: 400px;
  }

  .owner-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .owner-image {
    max-width: 350px;
    margin: 0 auto;
  }

  .owner-achievements {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 400px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header.site-header {
    padding: 1rem;
  }

  .brand {
    font-size: 1rem;
    gap: 0.5rem;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

  .owner-section {
    padding: 3rem 1.5rem;
  }

  .owner-header h1 {
    font-size: 2rem;
  }

  .owner-achievements {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .achievement-item {
    padding: 1rem;
  }

  .hero {
    padding: 7rem 1.5rem 3rem;
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .hero-copy p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    gap: 0.8rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  main {
    padding: 0 1.5rem 4rem;
  }

  .section {
    margin-top: 4rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .info-card {
    text-align: left;
  }

  .info-icon {
    margin: 0 0 1rem 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
    padding: 12px;
  }

  header.site-header {
    padding: 0.8rem;
  }

  .brand {
    font-size: 0.9rem;
  }

  .brand img {
    width: 35px;
    height: 35px;
  }

  .owner-section {
    padding: 2rem 1rem;
  }

  .owner-header h1 {
    font-size: 1.6rem;
  }

  .owner-header h2 {
    font-size: 0.8rem;
  }

  .owner-title {
    font-size: 1rem;
  }

  .owner-bio {
    font-size: 0.95rem;
  }

  .owner-achievements {
    grid-template-columns: 1fr;
  }

  .social-contact {
    flex-direction: column;
  }

  .social-contact a {
    width: 100%;
    justify-content: center;
  }

  .owner-badge {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }

  .hero {
    padding: 6rem 1rem 2rem;
  }

  .hero-copy h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero-copy p {
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  main {
    padding: 0 1rem 3rem;
  }

  .about-badge {
    bottom: 20px;
    left: 20px;
    padding: 1rem 1.5rem;
  }

  .badge-number {
    font-size: 2rem;
  }

  .badge-text {
    font-size: 0.75rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stats-section {
    padding: 2rem 1rem;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .team-image {
    height: 220px;
  }

  .team-card h3 {
    font-size: 1.1rem;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus visible for keyboard navigation */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  padding: 15px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: var(--transition);
  animation: float-whatsapp 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: #1DA851;
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
  transform: scale(1.1);
}

@keyframes float-whatsapp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== OWNER SECTION ===== */
.owner-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(18, 32, 74, 0.5), rgba(4, 120, 255, 0.08));
  border: 1px solid var(--border);
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.owner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(245, 185, 66, 0.05), transparent 70%);
  pointer-events: none;
}

.owner-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.owner-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(245, 185, 66, 0.15);
  border: 2px solid rgba(245, 185, 66, 0.2);
}

.owner-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: var(--transition);
}

.owner-image:hover img {
  transform: scale(1.05);
}

.owner-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent), #f7c96f);
  color: var(--bg-primary);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(245, 185, 66, 0.3);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.owner-badge i {
  font-size: 1.2rem;
}

.owner-header {
  margin-bottom: 2rem;
}

.owner-header h2 {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.owner-header h2::before {
  content: "✦";
  color: var(--accent);
}

.owner-header h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}

.owner-title {
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.owner-bio {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 2rem 0 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(245, 185, 66, 0.1);
}

.owner-achievements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.achievement-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(245, 185, 66, 0.1);
  border-radius: 12px;
  transition: var(--transition);
}

.achievement-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(245, 185, 66, 0.2);
  transform: translateY(-5px);
}

.achievement-item i {
  font-size: 1.8rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.achievement-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.achievement-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.owner-quote {
  background: linear-gradient(135deg, rgba(245, 185, 66, 0.08), rgba(4, 120, 255, 0.08));
  border-left: 4px solid var(--accent);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  font-style: italic;
  line-height: 1.8;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.owner-quote i {
  color: var(--accent);
  opacity: 0.5;
  margin: 0 0.5rem;
}

.owner-contact {
  margin-top: 2rem;
}

.owner-contact p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.social-contact {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

/* WhatsApp Button */
.social-contact a:nth-child(1) {
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.3);
}

.social-contact a:nth-child(1):hover {
  background: #25D366;
  color: white;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Call Button */
.social-contact a:nth-child(2) {
  color: #FF6B6B;
  border-color: rgba(255, 107, 107, 0.3);
}

.social-contact a:nth-child(2):hover {
  background: #FF6B6B;
  color: white;
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

/* Email Button */
.social-contact a:nth-child(3) {
  color: #EA4335;
  border-color: rgba(234, 67, 53, 0.3);
}

.social-contact a:nth-child(3):hover {
  background: #EA4335;
  color: white;
  box-shadow: 0 10px 25px rgba(234, 67, 53, 0.3);
}

/* LinkedIn Button */
.social-contact a:nth-child(4) {
  color: #0A66C2;
  border-color: rgba(10, 102, 194, 0.3);
}

.social-contact a:nth-child(4):hover {
  background: #0A66C2;
  color: white;
  box-shadow: 0 10px 25px rgba(10, 102, 194, 0.3);
  transform: translateY(-3px);
}
}

/* ===== TEAM SECTION ===== */
.team-section {
  margin-top: 8rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.team-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 185, 66, 0.2);
  transform: translateY(-12px);
  box-shadow: var(--shadow-sm);
}

.team-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(245, 185, 66, 0.1), rgba(4, 120, 255, 0.1));
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  padding: 1.5rem 1.5rem 0.5rem;
}

.team-card .role {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0 1.5rem;
  margin-bottom: 0.5rem;
}

.team-card .bio {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 0 1.5rem 1.5rem;
  line-height: 1.6;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  margin-top: 8rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 185, 66, 0.3), rgba(4, 120, 255, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Print styles */
@media print {
  header.site-header,
  .site-footer {
    display: none;
  }
}
