/*
 * Timebout Consulting - Corporate Website Styles
 * Construction Bidding & Project Advisory
 * Professional, Modern, Corporate Design
 * Compiled from SCSS
 */

/* ==========================================
   GLOBAL STYLES & RESETS
   ========================================== */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2d3e50;
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a2332;
  margin-bottom: 1.5rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1.5rem;
  color: #6c757d;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

ul, ol {
  list-style: none;
}

.section-padding {
  padding: 6rem 0;
}

.container {
  max-width: 1200px;
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  
  .section-padding {
    padding: 4rem 0;
  }
}


/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
  padding: 1.5rem 0;
  background: transparent;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(26, 35, 50, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
}

.navbar-brand .brand-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
}

.navbar-brand .brand-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: #5a7ba5;
  text-transform: uppercase;
  margin-top: -4px;
}

.navbar-nav .nav-link {
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1.5rem;
  margin: 0 0.5rem;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #4a7ba7;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #4a7ba7;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

.navbar-nav .btn-contact {
  background: #4a7ba7;
  color: #ffffff;
  border-radius: 8px;
  margin-left: 1.5rem;
}

.navbar-nav .btn-contact::after {
  display: none;
}

.navbar-nav .btn-contact:hover {
  background: #3a6a97;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .navbar-nav .nav-link {
    padding: 1rem;
    margin: 0.5rem 0;
  }
  
  .navbar-nav .btn-contact {
    margin-left: 0;
    margin-top: 1rem;
  }
}


/* ==========================================
   HERO SECTION
   ========================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #1a2332 0%, #3a506b 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 100px 100px;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(90, 123, 165, 0.2) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero-title .highlight {
  color: #5a7ba5;
  background: linear-gradient(90deg, #5a7ba5 0%, #8fa7c9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 3rem;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 6rem;
}

.hero-buttons .btn {
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
  background: #4a7ba7;
  border: none;
}

.hero-buttons .btn-primary:hover {
  background: #3a6a97;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(74, 123, 167, 0.4);
}

.hero-buttons .btn-outline-light {
  border: 2px solid #ffffff;
}

.hero-buttons .btn-outline-light:hover {
  background: #ffffff;
  color: #1a2332;
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 4rem;
}

.hero-stats .stat-item .stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-indicator a {
  display: block;
  color: #ffffff;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

.scroll-indicator a:hover {
  color: #5a7ba5;
}

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

@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .hero-stats .stat-item .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .hero-content {
    text-align: center;
  }
}


/* ==========================================
   SECTION HEADERS
   ========================================== */

.section-header {
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  background: rgba(74, 123, 167, 0.1);
  color: #4a7ba7;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section-badge.section-badge-light {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #1a2332;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title.text-white {
  color: #ffffff;
}

.section-description {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.8;
  max-width: 700px;
}

.section-description.text-light {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}


/* ==========================================
   ABOUT SECTION
   ========================================== */

.about-section {
  background: #ffffff;
}

.about-content .lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: #2d3e50;
  line-height: 1.8;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.about-features .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-features .feature-item i {
  color: #27ae60;
  font-size: 1.2rem;
}

.about-features .feature-item span {
  font-weight: 500;
  color: #2d3e50;
}

.about-image-grid {
  position: relative;
  height: 500px;
}

.about-image-grid .image-card {
  position: absolute;
  background: linear-gradient(135deg, #3a506b, #5a7ba5);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.about-image-grid .image-card .image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 4rem;
}

.about-image-grid .image-card-1 {
  width: 70%;
  height: 60%;
  top: 0;
  left: 0;
  z-index: 2;
}

.about-image-grid .image-card-2 {
  width: 60%;
  height: 50%;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.about-image-grid .experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #4a7ba7;
  color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.about-image-grid .experience-badge .experience-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-image-grid .experience-badge .experience-text {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .about-image-grid {
    height: 400px;
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  .about-features {
    grid-template-columns: 1fr;
  }
}


/* ==========================================
   SERVICES SECTION
   ========================================== */

.services-section {
  background: #f8f9fa;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 3rem;
  height: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #4a7ba7;
}

.service-card:hover .service-icon {
  background: #4a7ba7;
  color: #ffffff;
  transform: scale(1.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(74, 123, 167, 0.1);
  color: #4a7ba7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 1.5rem;
}

.service-description {
  font-size: 1.05rem;
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-list li {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #2d3e50;
}

.service-list li i {
  color: #4a7ba7;
  margin-top: 4px;
  font-size: 0.8rem;
}


/* ==========================================
   INDUSTRIES SECTION
   ========================================== */

.industries-section {
  background: #ffffff;
}

.industry-card {
  background: #ffffff;
  border: 2px solid #e8ecef;
  border-radius: 12px;
  padding: 3rem;
  height: 100%;
  transition: all 0.3s ease;
}

.industry-card:hover {
  border-color: #4a7ba7;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.industry-card:hover .industry-icon {
  background: #4a7ba7;
  color: #ffffff;
}

.industry-icon {
  width: 70px;
  height: 70px;
  background: rgba(74, 123, 167, 0.1);
  color: #4a7ba7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.industry-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 1.5rem;
}

.industry-description {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.industry-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.industry-examples .badge {
  background: rgba(74, 123, 167, 0.1);
  color: #4a7ba7;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}


/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */

.why-us-section {
  background: #1a2332;
  position: relative;
  overflow: hidden;
}

.why-us-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 80px 80px;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 3rem;
  height: 100%;
  transition: all 0.3s ease;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #4a7ba7;
  transform: translateY(-8px);
}

.why-card:hover .why-icon {
  background: #4a7ba7;
  color: #ffffff;
  transform: scale(1.1);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: rgba(74, 123, 167, 0.2);
  color: #4a7ba7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.why-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.why-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.cta-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 3rem;
}

.cta-box .cta-title {
  font-size: 1.75rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-box .cta-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.cta-box .btn-light:hover {
  background: #4a7ba7;
  color: #ffffff;
  border-color: #4a7ba7;
}


/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-section {
  background: #ffffff;
}

.contact-info .contact-info-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 1.5rem;
}

.contact-info .contact-info-text {
  font-size: 1.05rem;
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact-details {
  margin-bottom: 3rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-detail-item .contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(74, 123, 167, 0.1);
  color: #4a7ba7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-item .contact-detail-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a2332;
  margin-bottom: 0.5rem;
}

.contact-detail-item .contact-detail-content p {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links .social-link {
  width: 45px;
  height: 45px;
  background: rgba(74, 123, 167, 0.1);
  color: #4a7ba7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links .social-link:hover {
  background: #4a7ba7;
  color: #ffffff;
  transform: translateY(-3px);
}

.contact-form-wrapper {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 3rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form .form-group label {
  font-weight: 500;
  color: #1a2332;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.contact-form .form-group .form-control {
  border: 2px solid #e8ecef;
  border-radius: 8px;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-group .form-control:focus {
  border-color: #4a7ba7;
  box-shadow: 0 0 0 3px rgba(74, 123, 167, 0.1);
  outline: none;
}

.contact-form .form-group select.form-control {
  cursor: pointer;
}

.contact-form .form-group textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-primary {
  background: #4a7ba7;
  border: none;
  transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
  background: #3a6a97;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-message {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 8px;
  font-weight: 500;
}

.form-message.success {
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  border: 1px solid rgba(39, 174, 96, 0.3);
}

.form-message.error {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}


/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: #1a2332;
  color: rgba(255, 255, 255, 0.8);
  padding: 6rem 0 2rem;
}

.footer-brand .footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.footer-brand .footer-logo .brand-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
}

.footer-brand .footer-logo .brand-subtitle {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: #5a7ba5;
  text-transform: uppercase;
  margin-top: -2px;
}

.footer-brand .footer-description {
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-newsletter-text {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  color: #ffffff;
  font-size: 0.95rem;
}

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

.newsletter-form input:focus {
  outline: none;
  border-color: #4a7ba7;
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
  background: #4a7ba7;
  border: none;
  color: #ffffff;
  width: 50px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #3a6a97;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
}

.footer-bottom .copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

.footer-bottom .footer-legal {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
}

.footer-bottom .footer-legal a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom .footer-legal a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer-bottom .footer-legal {
    justify-content: flex-start;
    margin-top: 1.5rem;
  }
}


/* ==========================================
   UTILITY CLASSES
   ========================================== */

.text-gradient {
  background: linear-gradient(90deg, #4a7ba7 0%, #5a7ba5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.bg-dark {
  background-color: #1a2332 !important;
}

.fade-in {
  animation: fadeIn 0.6s ease-in;
}

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

.slide-up {
  animation: slideUp 0.8s ease-out;
}

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


/* ==========================================
   RESPONSIVE UTILITIES
   ========================================== */

@media (max-width: 992px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
