/* ==================== VARIABLES ==================== */
:root {
  --bg: #f4f5f8;
  --bg-soft: #ffffff;
  --bg-dark: #121212;
  --panel: #171717;
  --panel-2: #222222;
  --text: #1b1b1b;
  --text-soft: #666666;
  --text-light: #dddddd;
  --line: #d9d9d9;
  --accent: #b32025;
  --accent-dark: #8e171b;
  --accent-soft: rgba(179, 32, 37, 0.10);
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.15);
  --container: 1280px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

/* ==================== HEADER ==================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-wrap {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: var(--transition);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}

.brand-sub {
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 600;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  transition: var(--transition);
  position: relative;
  padding: 8px 0;
}

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

.nav a:hover,
.nav a.active {
  color: var(--accent);
}

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

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: var(--transition);
}

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

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

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

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 20px;
  flex-direction: column;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.mobile-nav a {
  padding: 16px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.mobile-nav a:hover {
  background: var(--accent-soft);
  color: var(--accent);
  padding-left: 28px;
}

/* ==================== BUTTONS ==================== */
.btn {
  min-height: 52px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  border: 2px solid transparent;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(179, 32, 37, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.15);
}

.btn-outline:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
}

.btn-view-more {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--accent);
  font-size: 1.1rem;
  padding: 16px 36px;
}

.btn-view-more:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(179, 32, 37, 0.4);
}

.btn-view-more i {
  transition: var(--transition);
}

.btn-view-more:hover i {
  transform: translateX(5px);
}

.btn-large {
  min-height: 58px;
  padding: 0 36px;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(179, 32, 37, 0.2);
  border: 1px solid rgba(179, 32, 37, 0.4);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ff8a8a;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  font-weight: 800;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent) 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: inline;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-15px); }
  60% { transform: translateX(-50%) translateY(-8px); }
}

/* ==================== SECTIONS ==================== */
.section {
  padding: 100px 0;
}

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

.section-dark {
  background: linear-gradient(180deg, #121212 0%, #1a1a1a 100%);
}

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

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

.section-tag {
  display: inline-block;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
}

.section-tag.light {
  color: #ff8a8a;
}

.section h2,
.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: 800;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 500px;
  margin: 0 auto;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

/* ==================== ABOUT SECTION ==================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-img-secondary img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 20px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--accent);
  color: var(--white);
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(179, 32, 37, 0.3);
}

.about-badge i {
  font-size: 1.3rem;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content .lead {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 500;
}

.about-content p {
  color: var(--text-soft);
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

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

/* ==================== SERVICES SECTION ==================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(179, 32, 37, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-image {
  height: 220px;
  overflow: hidden;
}

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

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

.service-content {
  padding: 30px;
}

.service-number {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(179, 32, 37, 0.4);
  line-height: 1;
  margin-bottom: 12px;
}

.service-content h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.service-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.view-more-container {
  text-align: center;
}

/* ==================== PROJECTS SECTION ==================== */
.projects-section {
  background: linear-gradient(180deg, #f8f9fc 0%, #eef1f6 100%);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 20px;
}

.project-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.project-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

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

.project-card:hover img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition);
}

.project-card:hover .project-overlay {
  background: linear-gradient(180deg, rgba(179, 32, 37, 0.3) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.project-category {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.project-overlay h3 {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
}

/* ==================== CAREERS SECTION ==================== */
.section-careers {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

.section-careers::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(179, 32, 37, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.careers-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.careers-text h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.careers-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.careers-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.careers-icon {
  width: 150px;
  height: 150px;
  background: rgba(179, 32, 37, 0.2);
  border: 2px solid rgba(179, 32, 37, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.careers-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.careers-badge {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.contact-lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item i {
  width: 50px;
  height: 50px;
  background: rgba(179, 32, 37, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item span {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
  color: var(--white);
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-item a:hover {
  color: var(--accent);
}

/* Contact Form */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.contact-form h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
}

.form-group-inline {
  display: flex;
  gap: 12px;
}

.form-group-inline input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
}

.form-group-inline input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: #0a0a0a;
  padding: 80px 0 30px;
}

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

.footer-brand .brand {
  margin-bottom: 20px;
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

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

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--white);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left-color: var(--white);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* ==================== PAGE HERO ==================== */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 140px 0 60px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: center;
}

.page-hero-tag {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(179, 32, 37, 0.2);
  border: 1px solid rgba(179, 32, 37, 0.4);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ff8a8a;
  margin-bottom: 20px;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.page-hero-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ==================== SERVICES DETAIL PAGE ==================== */
.services-detail {
  padding: 80px 0;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 80px;
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-detail-card.reverse {
  direction: rtl;
}

.service-detail-card.reverse > * {
  direction: ltr;
}

.service-detail-image {
  position: relative;
  min-height: 400px;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-number-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 70px;
  height: 70px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(179, 32, 37, 0.4);
}

.service-detail-content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--accent-soft);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 24px;
}

.service-detail-content h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.service-intro {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin-bottom: 30px;
  line-height: 1.7;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 35px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text);
}

.service-feature i {
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* CTA Section */
.section-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  margin-bottom: 35px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.section-cta .btn-primary {
  background: var(--white);
  color: var(--accent);
}

.section-cta .btn-primary:hover {
  background: var(--bg);
}

.section-cta .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.section-cta .btn-outline:hover {
  background: var(--white);
  color: var(--accent);
}

/* ==================== CAREERS PAGE ==================== */
.careers-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  overflow: hidden;
}

.careers-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.floating-shapes {
  position: absolute;
  inset: 0;
}

.shape {
  position: absolute;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.08);
  animation: float 6s ease-in-out infinite;
}

.shape-1 { top: 10%; left: 10%; animation-delay: 0s; }
.shape-2 { top: 20%; right: 15%; animation-delay: 1s; }
.shape-3 { top: 50%; left: 5%; animation-delay: 2s; }
.shape-4 { bottom: 20%; right: 10%; animation-delay: 3s; }
.shape-5 { bottom: 30%; left: 20%; animation-delay: 4s; }
.shape-6 { top: 40%; right: 25%; animation-delay: 5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(10deg); }
}

.careers-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 193, 7, 0.2);
  border: 1px solid rgba(255, 193, 7, 0.4);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 30px;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(255, 193, 7, 0); }
}

.careers-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffc107 50%, #4ecdc4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.careers-hero-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  line-height: 1.7;
}

.construction-illustration {
  margin-bottom: 40px;
}

.worker-animation {
  font-size: 5rem;
  color: var(--accent);
  margin-bottom: 20px;
  animation: worker-bounce 1.5s ease-in-out infinite;
}

@keyframes worker-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.progress-bar {
  max-width: 400px;
  margin: 0 auto;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, var(--accent) 0%, #ff6b6b 100%);
  border-radius: 999px;
  animation: progress-animation 2s ease-in-out infinite;
}

@keyframes progress-animation {
  0%, 100% { width: 55%; }
  50% { width: 75%; }
}

.progress-text {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.check-back-message {
  background: rgba(255, 255, 255, 0.08);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 40px;
}

.check-back-message i {
  font-size: 3rem;
  color: #ffc107;
  margin-bottom: 15px;
}

.check-back-message p:first-of-type {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.check-back-message p:last-of-type {
  color: rgba(255, 255, 255, 0.7);
}

.careers-cta {
  margin-top: 20px;
}

.careers-cta > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.notify-form {
  max-width: 450px;
  margin: 0 auto;
}

/* Future Roles */
.future-roles {
  background: var(--bg);
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.role-card {
  background: var(--white);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}

.role-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

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

.role-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.role-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.role-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Why Join Us */
.why-join {
  background: linear-gradient(180deg, #121212 0%, #1a1a1a 100%);
}

.why-join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-join-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.why-join-lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-weight: 600;
}

.benefit i {
  color: #4ecdc4;
  font-size: 1.3rem;
}

.why-join-visual {
  display: flex;
  justify-content: center;
}

.team-illustration {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(179, 32, 37, 0.2) 0%, rgba(78, 205, 196, 0.2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.3);
  animation: team-pulse 3s ease-in-out infinite;
}

@keyframes team-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.05); opacity: 1; }
}

/* ==================== NOTIFICATION ==================== */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  padding: 16px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  transform: translateX(150%);
  transition: transform 0.4s ease;
}

.notification-success {
  background: #25d366;
  color: white;
}

.notification-error {
  background: #e74c3c;
  color: white;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .about-grid,
  .careers-content,
  .contact-grid,
  .why-join-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-images {
    order: -1;
  }

  .about-img-secondary {
    right: 0;
    width: 220px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-card,
  .service-detail-card.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .service-detail-card.reverse > * {
    direction: ltr;
  }

  .service-detail-image {
    min-height: 280px;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 220px);
  }

  .project-card.large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-wrap {
    min-height: 80px;
  }

  .brand-logo {
    width: 55px;
    height: 55px;
  }

  .brand-name {
    font-size: 1.3rem;
  }

  .brand-sub {
    font-size: 0.85rem;
  }

  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .section {
    padding: 70px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .project-card,
  .project-card.large {
    grid-column: span 1;
    grid-row: span 1;
    height: 250px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .roles-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 1.7rem;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .service-features {
    grid-template-columns: 1fr;
  }

  .service-detail-content {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .about-badge {
    left: 10px;
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .about-img-secondary {
    display: none;
  }

  .careers-icon {
    width: 120px;
    height: 120px;
    font-size: 3rem;
  }

  .team-illustration {
    width: 180px;
    height: 180px;
    font-size: 5rem;
  }

  .service-number-badge {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
    top: 15px;
    left: 15px;
  }
}
