:root {
  --primary-color: #0d1b2a;
  --secondary-color: #1b263b;
  --accent-color: #415a77;
  --text-light: #e0e1dd;
  --text-dark: #333333;
  --white: #ffffff;
  --transition-speed: 0.3s;
  --font-main: 'Helvetica Neue', Arial, sans-serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Scroll Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

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

/* Header / Hero Section */
header {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url('images/hero-bg.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 27, 42, 0.7);
  /* Dark overlay */
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 20px;
}

.logo-area {
  margin-bottom: 2rem;
}

.company-name {
  font-size: 1.5rem;
  letter-spacing: 2px;
  /* text-transform: uppercase; Removed to respect proper casing */
  margin-top: 10px;
}

.catchphrase {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Unified Section Padding */
section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Business Icons Section */
.business-section {
  text-align: center;
  background-color: var(--white);
}

.business-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.business-item {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background: var(--white);
  transition: transform var(--transition-speed);
}

.business-item:hover {
  transform: translateY(-5px);
}

.icon-placeholder {
  width: 80px;
  height: 80px;
  background-color: var(--accent-color);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
}

/* Consultation Section */
.consultation-section {
  background-color: #f8f9fa;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

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

.consult-card {
  background: var(--white);
  padding: 30px;
  border-left: 5px solid var(--accent-color);
  text-align: left;
}

.consult-card h3 {
  margin-bottom: 15px;
  color: var(--secondary-color);
}

/* Why Choose Us Section */
.reason-section {
  text-align: center;
}

.reason-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.reason-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--primary-color);
  color: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
}

.reason-number {
  font-size: 3rem;
  font-weight: bold;
  opacity: 0.3;
}

.reason-text h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

/* Footer & Contact */
footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 60px 20px;
  text-align: center;
}

.footer-content h2 {
  margin-bottom: 2rem;
}

.address {
  margin-bottom: 2rem;
  font-style: normal;
}

.contact-btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1.2rem;
  transition: background-color var(--transition-speed);
}

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

/* Sub Page Styling */
.sub-header {
  height: 400px;
  /* Shorter than main hero */
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.sub-nav {
  position: absolute;
  top: 20px;
  left: 30px;
}

.logo-text {
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.sub-header-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.launch-badge {
  display: inline-block;
  background-color: #e76f51;
  color: var(--white);
  font-weight: bold;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.page-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: left;
}

.feature-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
}

.feature-item h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    background-attachment: scroll;
    /* Better support for mobile */
    min-height: 100dvh;
    /* Dynamic viewport height for clearer mobile view */
    background-position: center center;
  }

  .catchphrase {
    font-size: 2rem;
  }

  .reason-item {
    flex-direction: column;
    text-align: center;
  }

  .business-grid {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 610px) {
  header {
    background-image: url('images/hero-bg-mobile.png');
  }
}

.business-icon-img {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
}