/* css/style.css */
:root {
  --primary: #f7b731;     /* Vibrant Amber Accent */
  --primary-dark: #d39e00;
  --dark: #1a1b1e;        /* Deep Charcoal */
  --dark-light: #2d3035;
  --text: #4a5568;
  --text-light: #718096;
  --light: #f8f9fa;
  --white: #ffffff;
  --border: #e2e8f0;
  --glass-bg: rgba(26, 27, 30, 0.85);
  --transition: all 0.3s ease;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--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;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

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

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

.text-white {
  color: var(--white) !important;
}

.text-light-muted {
  color: rgba(255, 255, 255, 0.6);
}

/* Typography elements */
.section-tag {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
}

.tag-light {
  color: var(--primary);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.section-title span {
  color: var(--primary);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 50px;
}

.section-header {
  margin-bottom: 60px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--dark);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--dark);
  transform: translateY(-3px);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: var(--shadow-md);
}

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

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}

.navbar.scrolled .logo-text {
  color: var(--white);
}

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

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

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

.navbar.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

.navbar.scrolled .nav-link:hover {
  color: var(--primary);
}

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

.navbar.scrolled .mobile-menu-btn {
  color: var(--white);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(26, 27, 30, 0.9) 0%, rgba(26, 27, 30, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.hero-subtitle {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeUp 1s ease 0.2s both;
}

.hero-title {
  color: var(--white);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  animation: fadeUp 1s ease 0.4s both;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 1s ease 0.6s both;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.8s both;
}

.hero-features span {
  color: var(--white);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
}

.hero-features i {
  color: var(--primary);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: fadeUp 1s ease 1s both;
}

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

.about-image-wrapper {
  position: relative;
}

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

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--primary);
  color: var(--dark);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.experience-badge .years {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.experience-badge .text {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.about-text {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.mv-card {
  background: var(--light);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.mv-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.mv-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.mv-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-img-container {
  position: relative;
  height: 240px;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-icon {
  position: absolute;
  bottom: -25px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 4px solid var(--white);
  z-index: 2;
}

.service-content {
  padding: 40px 30px 30px;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-desc {
  color: var(--text-light);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.service-list li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list i {
  color: var(--primary);
}

/* Why Choose Us */
.wcu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.wcu-desc {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.feature-item {
  display: flex;
  gap: 15px;
}

.f-icon {
  width: 50px;
  height: 50px;
  background: rgba(247, 183, 49, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.f-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.f-text p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.rounded-img {
  border-radius: 12px;
}

/* Contact */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.c-card {
  background: var(--dark-light);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.c-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  background: #23252a;
}

.c-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.c-card:hover .c-icon {
  background: var(--primary);
  color: var(--dark);
}

.c-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.c-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.c-card a {
  color: rgba(255, 255, 255, 0.7);
}
.c-card a:hover {
  color: var(--primary);
}

/* Footer */
.footer {
  background: #111214;
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 30px;
  margin-bottom: 60px;
}

.footer-about p {
  max-width: 400px;
  margin-top: 20px;
  line-height: 1.8;
}

.footer h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--white);
}

.footer ul li {
  margin-bottom: 15px;
}

.footer ul a {
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer ul a i {
  font-size: 0.8rem;
  color: var(--primary);
}

.footer ul a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-bottom {
  background: #0a0a0b;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Floating Buttons */
.floating-box {
  position: fixed;
  right: 25px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.fab-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: var(--transition);
  text-decoration: none;
}

.fab-btn.call {
  background: #3498db;
  animation: pulseBlue 2s infinite;
}

.fab-btn.whatsapp {
  background: #25D366;
  animation: pulseGreen 2s infinite;
}

.fab-btn:hover {
  transform: scale(1.1);
}

@keyframes pulseBlue {
  0% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(52, 152, 219, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0); }
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title { font-size: 3.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--dark);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    text-align: center;
  }
  
  .nav-links.active { display: flex; }
  .mobile-menu-btn { display: block; }
  
  .hero-title { font-size: 2.8rem; }
  .hero-features { flex-direction: column; align-items: center; }
  
  .about-grid, .wcu-grid { grid-template-columns: 1fr; gap: 40px; }
  .experience-badge { right: 20px; bottom: -20px; }
  .services-grid { grid-template-columns: 1fr; }
  .features-list { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  
  .section-title { font-size: 2rem; }
  .section-padding { padding: 60px 0; }
}