/* CSS Reset & Variables */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --background: hsl(220, 10%, 65%);
  --foreground: hsl(220, 20%, 15%);
  --card: hsl(220, 10%, 70%);
  --primary: hsl(43, 74%, 49%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(220, 10%, 60%);
  --muted: hsl(220, 10%, 60%);
  --muted-foreground: hsl(220, 10%, 30%);
  --border: hsl(220, 10%, 55%);
  --radius: 0.5rem;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
}

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

/* Typography */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }

.text-gold { color: var(--primary); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-secondary {
  background: var(--secondary);
  color: var(--foreground);
}
.btn-secondary:hover { opacity: 0.9; }

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

.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-full { width: 100%; margin-top: 1rem; }

/* Header - New Layout */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--foreground);
  border-bottom: 1px solid var(--border);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.company-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.025em;
}

.nav {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.nav-link:hover, .nav-link.active { 
  background: rgba(255,255,255,0.1);
  color: var(--primary); 
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background-color: rgba(255,255,255,0.9);
  transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
  pointer-events: none;
}

.mobile-nav.active {
  pointer-events: auto;
}
/*.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: var(--foreground);
  padding: 1rem;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 99;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
  display: flex;
}*/

.mobile-nav .nav-link {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Logo Banner */
.logo-banner {
  width: 100%;
  height: 450px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-banner img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--background) 0%, var(--secondary) 50%, var(--background) 100%);
  padding: 5rem 0 6rem;
  text-align: center;
}

.hero-content { max-width: 800px; margin: 0 auto; }
.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin: 1.5rem 0 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats */
.stats {
  background: var(--foreground);
  color: var(--background);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.stat-icon { width: 2.5rem; height: 2.5rem; color: var(--primary); }
.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--primary); }
.stat-label { opacity: 0.8; }

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header p {
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 1rem auto 0;
}

/* Services Overview */
.services-overview { padding: 5rem 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover { border-color: var(--primary); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.service-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(200, 150, 50, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.service-icon svg { width: 2rem; height: 2rem; stroke: var(--primary); }

.service-card h3 { text-align: center; margin-bottom: 0.5rem; font-size: 1.5rem; }
.service-desc { text-align: center; color: var(--muted-foreground); margin-bottom: 1.5rem; }

.service-feature {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.service-feature svg { width: 1.25rem; height: 1.25rem; stroke: var(--primary); flex-shrink: 0; margin-top: 0.25rem; }
.service-feature strong { display: block; }
.service-feature span { font-size: 0.875rem; color: var(--muted-foreground); }

/* Why Us */
.why-us {
  background: var(--secondary);
  padding: 5rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-item {
  background: var(--background);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  transition: box-shadow 0.2s;
}
.feature-item:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.feature-icon { width: 3rem; height: 3rem; stroke: var(--primary); margin: 0 auto 1rem; display: block; }
.feature-item h3 { margin-bottom: 0.5rem; }
.feature-item p { font-size: 0.875rem; color: var(--muted-foreground); }

/* CTA */
.cta {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 5rem 0;
  text-align: center;
}
.cta h2 { margin-bottom: 1rem; }
.cta p { opacity: 0.9; max-width: 600px; margin: 0 auto 2rem; font-size: 1.125rem; }

/* Footer */
.footer {
  background: var(--foreground);
  color: var(--background);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-col h4 { color: var(--primary); margin-bottom: 1rem; font-size: 1.125rem; }
.footer-logo { font-size: 1.25rem !important; }
.footer-col p { opacity: 0.8; font-size: 0.875rem; line-height: 1.7; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; font-size: 0.875rem; opacity: 0.8; }
.footer-col ul a { color: inherit; text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--primary); }

.contact-info li { display: flex; gap: 0.75rem; align-items: flex-start; }
.contact-info svg { width: 1.25rem; height: 1.25rem; stroke: var(--primary); flex-shrink: 0; margin-top: 0.125rem; }

.social-links { display: flex; gap: 1rem; margin-top: 1rem; }
.social-links a {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
}
.social-links a:hover { opacity: 1; color: var(--primary); }
.social-links svg { width: 1.25rem; height: 1.25rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  opacity: 0.6;
  font-size: 0.875rem;
}

/* About Page Specific */
.about-hero { background: linear-gradient(135deg, var(--background) 0%, var(--secondary) 50%, var(--background) 100%); padding: 4rem 0; text-align: center; }
.about-hero h1 { margin-bottom: 1rem; }
.about-hero p { color: var(--muted-foreground); max-width: 700px; margin: 0 auto; font-size: 1.125rem; }

/* Story Section with Image */
.story-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; max-width: 1000px; margin: 0 auto; }
.story-text h2 { margin-bottom: 1.5rem; color: var(--primary); }
.story-text p { color: var(--muted-foreground); margin-bottom: 1rem; }
.story-image { border-radius: 1rem; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.story-image img { width: 100%; height: 320px; object-fit: cover; }

/* Mission Cards with Images */
.mission-card.with-image { overflow: hidden; padding: 0; }
.mission-image { height: 12rem; overflow: hidden; }
.mission-image img { width: 100%; height: 100%; object-fit: cover; }
.mission-content { padding: 2rem; }
.mission-content h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.mission-content p { color: var(--muted-foreground); }

/* Team Box with Image */
.team-box.with-image { padding: 2rem; }
.team-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.team-image { border-radius: var(--radius); overflow: hidden; }
.team-image img { width: 100%; height: 16rem; object-fit: cover; }
.team-content h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.team-content p { color: var(--muted-foreground); margin-bottom: 1.5rem; }
.team-box > svg { width: 4rem; height: 4rem; stroke: var(--primary); margin-bottom: 1.5rem; }
.team-box h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.team-box > p { color: var(--muted-foreground); margin-bottom: 1.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.team-roles { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 1rem; }
.team-role { background: var(--background); border-radius: var(--radius); padding: 1rem; font-weight: 600; font-size: 0.875rem; }

.values-section { background: var(--foreground); color: var(--background); padding: 4rem 0; }
.values-section .section-header h2 { color: var(--background); }
.values-section .section-header p { color: rgba(255,255,255,0.8); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto; text-align: center; }
.value-item.with-photo .value-photo { width: 5rem; height: 5rem; margin: 0 auto 1rem; border-radius: 50%; overflow: hidden; border: 4px solid var(--primary); }
.value-item.with-photo .value-photo img { width: 100%; height: 100%; object-fit: cover; }
.value-item h3 { margin-bottom: 0.5rem; }
.value-item p { font-size: 0.875rem; opacity: 0.7; }

/* Services Page with Images */
.services-hero { background: linear-gradient(135deg, var(--background) 0%, var(--secondary) 50%, var(--background) 100%); padding: 4rem 0; text-align: center; }
.services-hero h1 { margin-bottom: 1rem; }
.services-hero p { color: var(--muted-foreground); max-width: 700px; margin: 0 auto; font-size: 1.125rem; }
.nfc-section, .digital-section { padding: 4rem 0; }
.digital-section { background: var(--secondary); }
.service-intro-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; margin-bottom: 3rem; }
.service-intro-image { border-radius: 1rem; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.service-intro-image img { width: 100%; height: 18rem; object-fit: cover; }
.section-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(200,150,50,0.1); color: var(--primary); padding: 0.5rem 1rem; border-radius: 2rem; font-size: 0.875rem; font-weight: 500; margin-bottom: 1rem; }
.section-badge svg { width: 1rem; height: 1rem; }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.info-card { background: var(--card); border: 2px solid var(--border); border-radius: var(--radius); padding: 1.5rem; transition: border-color 0.2s; }
.digital-section .info-card { background: var(--background); }
.info-card:hover { border-color: var(--primary); }
.info-card .card-icon { width: 3.5rem; height: 3.5rem; background: rgba(200,150,50,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.info-card .card-icon svg { width: 1.75rem; height: 1.75rem; stroke: var(--primary); }
.info-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.info-card > p { color: var(--muted-foreground); font-size: 0.875rem; margin-bottom: 1rem; }
.info-card ul { list-style: none; }
.info-card li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 0.5rem; }
.info-card li svg { width: 1rem; height: 1rem; stroke: var(--primary); flex-shrink: 0; }

/* Contact Page with Images */
.contact-hero.with-image { padding: 4rem 0; }
.contact-hero-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; max-width: 1000px; margin: 0 auto; }
.contact-hero-image { border-radius: 1rem; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.contact-hero-image img { width: 100%; height: 16rem; object-fit: cover; }
.contact-card.with-image { padding: 0; }
.contact-card-image { height: 8rem; overflow: hidden; }
.contact-card-image img { width: 100%; height: 100%; object-fit: cover; }
.contact-card.with-image .contact-card-header { padding: 1rem 1.5rem 0; }
.contact-card.with-image p { padding: 0 1.5rem 1.5rem; }
.contact-hero h1 { margin-bottom: 1rem; }
.contact-hero p { color: var(--muted-foreground); max-width: 700px; font-size: 1.125rem; }

.contact-section { padding: 4rem 0; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.contact-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card { background: var(--card); border: 2px solid var(--border); border-radius: var(--radius); padding: 1.5rem; transition: border-color 0.2s; }
.contact-card:hover { border-color: var(--primary); }
.contact-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.contact-card-header .icon-box { width: 3rem; height: 3rem; background: rgba(200,150,50,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.contact-card-header .icon-box svg { width: 1.5rem; height: 1.5rem; stroke: var(--primary); }
.contact-card-header h3 { font-size: 1.125rem; }
.contact-card p { color: var(--muted-foreground); font-size: 0.875rem; }
.contact-card .small { font-size: 0.75rem; opacity: 0.7; margin-top: 0.25rem; }

.social-card { background: rgba(200,150,50,0.05); border: 2px solid rgba(200,150,50,0.3); }
.social-card h3 { margin-bottom: 1rem; }
.social-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.social-btn { width: 3rem; height: 3rem; background: var(--background); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; text-decoration: none; color: inherit; }
.social-btn:hover { background: var(--primary); color: var(--primary-foreground); }
.social-btn svg { width: 1.5rem; height: 1.5rem; }

.map-container { border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; min-height: 400px; }
.map-container iframe { width: 100%; height: 100%; min-height: 400px; border: none; }

.contact-cta { background: var(--foreground); color: var(--background); padding: 4rem 0; text-align: center; }
.contact-cta h2 { margin-bottom: 1rem; }
.contact-cta p { opacity: 0.8; max-width: 600px; margin: 0 auto; font-size: 1.125rem; }

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

/* Responsive */
@media (min-width: 768px) {
  .nav { display: flex; }
  .mobile-menu-btn { display: none; }
  .mobile-nav { display: none !important; }
  .whatsapp-float { width: 4rem; height: 4rem; }
  .whatsapp-float svg { width: 2rem; height: 2rem; }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .service-intro-grid { grid-template-columns: 1fr 1fr; }
  .service-intro-grid.reverse { direction: rtl; }
  .service-intro-grid.reverse > * { direction: ltr; }
  .contact-hero-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .hero { padding: 3rem 0 4rem; }
  .logo-banner { height: 300px; }
}
    height: 4rem;
  }
  
  .whatsapp-float svg {
    width: 2rem;
    height: 2rem;
  }
}

@media (max-width: 767px) {
  .hero { padding: 3rem 0 4rem; }
  .story-grid, .mission-grid { grid-template-columns: 1fr; }
  
  .logo-banner {
    height: 300px;
  }
}
