/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #181818;
  color: #eaeaea;
  min-height: 100vh;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(rgba(255, 215, 0, 0.18) 3px, transparent 4px),
                    radial-gradient(rgba(255, 215, 0, 0.10) 3px, transparent 4px);
  background-size: 56px 56px, 56px 56px;
  background-position: 0 0, 28px 28px;
  animation: moveDots 10s linear infinite;
  opacity: 0.47;
}

@keyframes moveDots {
  0% { background-position: 0 0, 28px 28px; }
  100% { background-position: 56px 56px, 84px 84px; }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.3;
  color: #FFD700;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}
h1 { 
  font-size: 3.2rem; 
  font-weight: 700;
  letter-spacing: 1px;
}
h2 { 
  font-size: 2.4rem; 
  font-weight: 600;
  letter-spacing: 0.8px;
}
h3 { 
  font-size: 1.5rem; 
  font-weight: 600;
  letter-spacing: 0.3px;
}
p { 
  color: #eaeaea; 
  margin-bottom: 1.2rem; 
  line-height: 1.7;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: transparent;
  z-index: 1000;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
}
.nav-logo h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
  margin: 0;
  padding: 0;
}
.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 20px;
}
.nav-link:hover {
  color: #FFD700;
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.bar {
  width: 25px; height: 3px;
  background: #fff;
  margin: 3px 0;
  border-radius: 2px;
  transition: 0.3s;
}

@keyframes heroGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 90px;
  background: #181818;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.8s ease;
}
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1100px;
  height: 1100px;
  transform: translate(-50%, -50%);
  background: url('IMG_2385.jpg') center center/contain no-repeat;
  opacity: 1.0;
  z-index: 0;
  pointer-events: none;
  /* Enhanced fade with subtle bottom edge fade */
  mask-image: 
    radial-gradient(circle, rgba(0,0,0,1) 10%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0) 70%, rgba(0,0,0,0) 100%),
    linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 85%, rgba(0,0,0,0.9) 90%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: 
    radial-gradient(circle, rgba(0,0,0,1) 10%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0) 70%, rgba(0,0,0,0) 100%),
    linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 85%, rgba(0,0,0,0.9) 90%, rgba(0,0,0,0) 100%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
  box-shadow: 0 8px 64px 0 rgba(0,0,0,0.18), 0 0 0 12px rgba(24,24,24,0.08);
}
.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%) scale(1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(255,255,255,0.32) 0%, rgba(255,215,0,0.22) 50%, rgba(255,215,0,0.0) 100%);
  opacity: 0;
  animation: heroWaterRipple 28s cubic-bezier(0.4,0,0.2,1) infinite;
}
@keyframes heroWaterRipple {
  0% {
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
  }
  2.1% {
    opacity: 0.7;
  }
  15% {
    opacity: 0.35;
  }
  21.4% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
  78.6% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes auroraMove {
  0% {
    transform: scale(1) translateY(0) translateX(0);
  }
  50% {
    transform: scale(1.15) translateY(40px) translateX(60px);
  }
  100% {
    transform: scale(1) translateY(0) translateX(0);
  }
}
.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2.5rem;
  padding-top: 120px;
  min-height: 100vh;
}
.hero-image { display: none; }
.hero-text-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  gap: 2rem;
  margin-bottom: auto;
  margin-top: -5rem;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  gap: 2rem;
  flex: 1;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #FFD700;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
  text-shadow: 0 6px 32px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,215,0,0.1);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite alternate;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-title-bg {
  display: inline;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: #eaeaea;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  position: relative;
  z-index: 10;
  margin-top: auto;
  padding-bottom: 8rem;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 1.5rem;
}
.hero-truck-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border: 6px solid #FFD700;
  box-shadow: 0 0 0 8px rgba(255,215,0,0.10), 0 8px 32px rgba(0,0,0,0.35);
  animation: heroGlow 3s ease-in-out infinite alternate, logoFloat 4s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.hero-truck-img:hover {
  transform: scale(1.05);
}
@keyframes heroGlow {
  0% {
    box-shadow: 0 0 0 8px rgba(255,215,0,0.10), 0 8px 32px rgba(0,0,0,0.35);
    border-color: #FFD700;
  }
  100% {
    box-shadow: 0 0 0 18px rgba(255,215,0,0.18), 0 8px 32px rgba(0,0,0,0.35);
    border-color: #FFA500;
  }
}
@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes titleGlow {
  0% {
    filter: brightness(1) drop-shadow(0 0 20px rgba(255,215,0,0.3));
  }
  100% {
    filter: brightness(1.2) drop-shadow(0 0 30px rgba(255,215,0,0.5));
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.12);
}
.btn-primary {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #181818;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.25);
}
.btn-secondary {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}
.btn-secondary:hover {
  background: #FFD700;
  color: #181818;
  transform: translateY(-2px) scale(1.04);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-top: 100px;
}
.section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  line-height: 1.2;
}
.section-header p {
  color: #eaeaea;
  font-size: 1.15rem;
  line-height: 1.6;
  letter-spacing: 0.3px;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* Cards & Glassmorphism */
.services-grid, .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.services {
  padding-top: 50px;
  position: relative;
  z-index: 1;
}
.service-card, .contact-item, .about-graphic {
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  padding: 2rem;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateY(40px);
}
.service-card.visible, .contact-item.visible, .stat.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(255,215,0,0.10);
  transform: translateY(-8px) scale(1.03);
}
.service-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #181818;
  box-shadow: 0 2px 8px rgba(255,215,0,0.10);
}
.service-card h3 {
  color: #FFD700;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 1.3;
}
.service-card p {
  color: #eaeaea;
  line-height: 1.8;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  opacity: 0.9;
}

/* About Section */
.about {
  padding-top: 80px;
  position: relative;
  z-index: 1;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}
.about-graphic {
  width: 200px; height: 200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  border: 2px solid rgba(255,215,0,0.10);
  order: -1;
}
.about-graphic i {
  font-size: 4rem;
  color: #FFD700;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  justify-items: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.stat {
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0,0,0.2,1);
}
.stat.visible {
  opacity: 1;
  transform: translateY(0);
}
.stat h3 {
  font-size: 2.2rem;
  color: #FFD700;
  margin-bottom: 0.5rem;
}
.stat p {
  color: #eaeaea;
  margin: 0;
}

/* Contact Section */
.contact {
  padding-top: 50px;
  position: relative;
  z-index: 1;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4,0,0.2,1);
  min-height: 80px;
}
.contact-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.16);
  border-color: rgba(255,215,0,0.2);
}
.contact-icon {
  width: 56px; 
  height: 56px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #181818;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255,215,0,0.25);
}
.contact-item h4 {
  color: #FFD700;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-align: center;
}
.contact-item p {
  color: #eaeaea;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 400;
}

/* Phone contact item specific styling */
.contact-phone {
  position: relative;
}

.contact-phone .contact-text {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  padding-left: 80px; /* Account for icon space */
  padding-right: 20px;
}

.contact-phone .contact-text h4,
.contact-phone .contact-text p {
  text-align: center;
}

/* Address contact item specific styling */
.contact-address {
  position: relative;
}

.contact-address .contact-text {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  padding-left: 80px; /* Account for icon space */
  padding-right: 20px;
}

.contact-address .contact-text h4,
.contact-address .contact-text p {
  text-align: center;
}

/* Email contact item specific styling */
.contact-email {
  position: relative;
}

.contact-email .contact-text {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  padding-left: 80px; /* Account for icon space */
  padding-right: 20px;
}

.contact-email .contact-text h4,
.contact-email .contact-text p {
  text-align: center;
}
.contact-form {
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #FFD700;
  opacity: 0.7;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FFD700;
  background: rgba(255,255,255,0.18);
}

/* Footer */
.footer {
  background: rgba(24,24,24,0.98);
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(255,215,0,0.12);
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-section h3, .footer-section h4 {
  color: #FFD700;
  margin-bottom: 1rem;
}
.footer-section p {
  color: #eaeaea;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 0.5rem;
}
.footer-section ul li a {
  color: #eaeaea;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-section ul li a:hover {
  color: #FFD700;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #181818;
  font-size: 1.3rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.social-links a:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 24px rgba(255,215,0,0.18);
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p {
  color: #eaeaea;
  margin: 0;
}

/* Animations for fade-in */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    justify-items: center;
  }
  .hero-content {
    align-items: center;
    text-align: center;
  }
  .hero-image {
    margin: 0 auto;
  }
  .stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .services-grid, .footer-content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .nav-container {
    flex-direction: column;
    height: auto;
    padding: 0 10px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .section-header h2 {
    font-size: 1.5rem;
  }
  .hero-truck-img {
    width: 120px; height: 120px;
  }
  .hero-container {
    gap: 1.2rem;
  }
  .btn {
    padding: 10px 18px;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.3rem;
  }
  .section-header h2 {
    font-size: 1.1rem;
  }
} 

/* Custom link color for contact info */
.contact-text a {
  color: #b0b3b8; /* Modern light/medium grey */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.contact-text a:hover, .contact-text a:focus {
  color: #FFD700; /* Gold on hover */
  text-decoration: underline;
} 