/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  --primary-color: #0a192f; /* Deep Navy Blue */
  --secondary-color: #d4af37; /* Premium Gold */
  --secondary-gradient: linear-gradient(135deg, #d4af37 0%, #b5952f 100%);
  --text-dark: #1a1a1a;
  --text-light: #555555;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 30px 60px rgba(10, 25, 47, 0.12);
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

/* Wider Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 25px;
}

/* Increased Section Padding */
.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 60px;
  position: relative;
  font-weight: 700;
}

.section-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: var(--secondary-gradient);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Button Upgrades */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--secondary-gradient);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

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

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

/* Glassmorphism Header */
header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  transition: var(--transition);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

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

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

.nav-links a {
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--primary-color);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background: var(--secondary-gradient);
  transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.8rem;
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  height: calc(100vh - 90px);
  min-height: 650px;
  background: linear-gradient(rgba(5, 13, 26, 0.85), rgba(5, 13, 26, 0.85)), url('assets/images/hero_bg.jpg') center/cover;
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

/* Services Overview */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.service-card {
  background-color: var(--white);
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary-gradient);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
  z-index: -1;
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 3.5rem;
  color: var(--secondary-color);
  margin-bottom: 25px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

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

/* Split Section (About / Why Us) */
.split-section {
  display: flex;
  align-items: center;
  gap: 80px;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
}

.split-image {
  flex: 1;
  position: relative;
}

.split-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--secondary-color);
  border-radius: 12px;
  z-index: -1;
}

.split-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-hover);
  display: block;
}

.feature-list {
  margin-top: 30px;
}

.feature-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  font-weight: 500;
}

.feature-list li i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

/* Statistics */
.stats {
  background: linear-gradient(rgba(10, 25, 47, 0.95), rgba(10, 25, 47, 0.95)), url('assets/images/business_consulting.jpg') center/cover fixed;
  color: var(--white);
  padding: 80px 0;
}

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

.stat-item h3 {
  color: var(--secondary-color);
  font-size: 4rem;
  margin-bottom: 5px;
  font-weight: 800;
}

.stat-item p {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Industries Section */
.industries {
  background-color: var(--bg-light);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.industry-item {
  background-color: var(--white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.03);
}

.industry-item:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* Testimonials */
.testimonials {
  background-color: var(--bg-light);
  text-align: center;
}

.testimonial-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 60px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonial-text {
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 30px;
  color: var(--text-dark);
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--secondary-gradient);
  transform: scale(1.2);
}

/* Contact Form Section */
.contact-section {
  background-color: var(--white);
}

.contact-wrapper {
  display: flex;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-hover);
  overflow: hidden;
}

.contact-wrapper.center-form {
  max-width: 800px;
  margin: 0 auto;
}

.contact-info {
  flex: 1;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 60px;
}

.contact-info h3 {
  color: var(--white);
  font-size: 2rem;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.info-item i {
  color: var(--secondary-color);
  font-size: 1.8rem;
  margin-top: 5px;
}

.info-item h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-form {
  flex: 1.5;
  padding: 60px;
  background-color: var(--bg-light);
}

.form-group {
  margin-bottom: 25px;
}

.form-row {
  display: flex;
  gap: 25px;
}

.form-row .form-group {
  flex: 1;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  background-color: var(--white);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

textarea.form-control {
  height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.checkbox-group input {
  margin-top: 5px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.error-message {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 8px;
  display: none;
}

.form-group.error .form-control {
  border-color: #e74c3c;
}
.form-group.error .error-message {
  display: block;
}

.success-message {
  color: #27ae60;
  background-color: rgba(39, 174, 96, 0.1);
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 25px;
  display: none;
  font-weight: 500;
  border: 1px solid rgba(39, 174, 96, 0.2);
}

/* Footer */
footer {
  background-color: #030a14;
  color: #a0aabf;
  padding: 80px 0 20px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary-gradient);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-widget h3 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.footer-widget p {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.footer-widget p i {
  color: var(--secondary-color);
  margin-top: 6px;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  display: inline-block;
  transition: var(--transition);
}

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

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.05);
  color: var(--white);
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--secondary-gradient);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.95rem;
}

/* Internal Page Headers */
.page-header {
  background: linear-gradient(rgba(5, 13, 26, 0.85), rgba(5, 13, 26, 0.85)), url('assets/images/business_consulting.jpg') center/cover;
  padding: 140px 0 80px;
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  color: var(--white);
  font-size: 3.5rem;
}

/* Content Pages */
.content-section {
  padding: 80px 0;
}
.content-section p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.content-section ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 25px;
  font-size: 1.1rem;
}
.content-section h2, .content-section h3 {
  margin-top: 40px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}


/* Responsive Design */
@media (max-width: 992px) {
  .split-section, .split-section.reverse {
    flex-direction: column;
    gap: 50px;
  }
  .split-image::after {
    display: none;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-wrapper {
    flex-direction: column;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  .nav-links.active {
    left: 0;
  }
  .hamburger {
    display: block;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .section {
    padding: 60px 0;
  }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
