/* Extracted from tomdiesel.html */
:root {
    --primary: #0066cc;
    --primary-dark: #004d99;
    --secondary: #ff6600;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --darker: #0a0a0a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #0a6ed1 0%, #003b6e 100%);
    min-height: 100vh;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #222;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.btn-secondary {
    background: var(--secondary);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-secondary:hover {
    background: #e65c00;
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary);
}

.logo-icon {
    font-size: 32px;
    margin-right: 10px;
    color: var(--secondary);
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
}

.logo-text span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.9) 0%, rgba(0, 66, 128, 0.9) 100%), url('https://images.unsplash.com/photo-1593111774240-d529f12c76c8?ixlib=rb-4.0.3') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    background: transparent;
}

.hero .container,
.hero-content {
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.15;
}

.hero-content {
    max-width: 700px;
    color: rgb(0, 26, 255);
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Hero Section Social Icons */
.hero .social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.hero .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero .social-icons a:hover {
    background: #4CAF50;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(to bottom, #003b6e, #ffffff);
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    position: relative;
    display: inline-block;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a6ed1;
    margin-bottom: 1.5rem;
    text-align: left;
}

.section-title.center {
    display: block;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

.section-title .section-underline {
    display: block;
    width: 100px;
    height: 5px;
    background: #ff7a00;
    border-radius: 2px;
    margin-top: 0.5rem;
    margin-left: 0;
}

.section-title.center .section-underline {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 700px) {
    .section-title {
        font-size: 1.5rem;
    }

    .section-title .section-underline {
        width: 60px;
        height: 3px;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgb(255, 255, 255);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(7, 36, 181, 0.245);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.service-card p {
    font-size: 1rem;
    color: #000000;
}

.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.service-link:focus,
.service-link:active,
.service-link:hover {
    outline: none;
    box-shadow: none;
    color: inherit;
    text-decoration: none;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f0f8ff, #ffffff);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--dark);
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    height: 450px;
}

/* Slideshow styles for About section */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    overflow: hidden;
}
.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s;
}
.slide-img.active {
    opacity: 1;
    position: relative;
    z-index: 1;
}
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}
.slide-btn:hover {
    background: var(--primary);
}
.slide-btn.prev { left: 10px; }
.slide-btn.next { right: 10px; }

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-text {
    font-weight: 500;
    color: var(--dark);
}

/* Modern Contact Us Section Styles with Gravity/Fall Effect */
.modern-contact {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.contact-info {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-item {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  transition: transform 0.4s cubic-bezier(.17,.67,.83,.67), box-shadow 0.4s;
  will-change: transform;
}
.contact-item.gravity-hover:hover {
  transform: translateY(18px) scale(1.04) rotateZ(-2deg);
  box-shadow: 0 24px 48px rgba(0,0,0,0.18);
}
.contact-icon {
  font-size: 2.5rem;
  color: #1e90ff;
  margin-right: 1.5rem;
  flex-shrink: 0;
}
.contact-text h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  font-weight: 600;
}
.contact-form {
  flex: 1 1 350px;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 2rem 2.5rem;
  transition: transform 0.4s cubic-bezier(.17,.67,.83,.67), box-shadow 0.4s;
  will-change: transform;
}
.contact-form.gravity-hover:hover {
  transform: translateY(18px) scale(1.04) rotateZ(2deg);
  box-shadow: 0 24px 48px rgba(0,0,0,0.18);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #e0e0e0;
  font-size: 1rem;
  background: #f9f9f9;
  transition: box-shadow 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
  box-shadow: 0 0 0 2px #1e90ff33;
  outline: none;
}
.btn.gravity-hover:hover {
  transform: translateY(8px) scale(1.05);
  box-shadow: 0 8px 24px rgba(30,144,255,0.18);
}
.map-container.gravity-hover {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transition: transform 0.4s cubic-bezier(.17,.67,.83,.67), box-shadow 0.4s;
  will-change: transform;
}
.map-container.gravity-hover:hover {
  transform: translateY(12px) scale(1.02);
  box-shadow: 0 24px 48px rgba(0,0,0,0.18);
}
@media (max-width: 900px) {
  .modern-contact {
    flex-direction: column;
    gap: 2rem;
  }
  .contact-form, .contact-info {
    flex: 1 1 100%;
  }
}

/* Contact Us Page Unique Styling - Professional, Modern, and Color-Matched to Main Site */
.contact-header {
    background: #ffffff;
    border-bottom: 2px solid #0056b3;
    box-shadow: 0 2px 8px rgba(0,102,204,0.08);
    position: relative;
    z-index: 10;
}
.contact-header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0;
}
.contact-header .logo-img {
    height: 48px;
    margin-right: 1.5rem;
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    color: #0056b3;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1.08rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.01em;
}
.nav-links a:hover {
    color: #ff6600;
}
.contact-spacer {
    height: 32px;
}
.contact-page-container {
    background: #ffffffae;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,102,204,0.10);
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
}
.contact-title h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}
.contact-title p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.contact-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: space-between;
}
.contact-info {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: var(--light);
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,102,204,0.07);
    padding: 1.2rem 1rem;
    transition: box-shadow 0.2s;
}
.contact-item.contact-fall.fall-effect-page {
    box-shadow: 0 8px 32px rgba(0,102,204,0.18);
    transform: translateY(6px) scale(1.03);
}
.contact-svg-icon {
    width: 36px;
    height: 36px;
    filter: invert(34%) sepia(99%) saturate(749%) hue-rotate(190deg) brightness(102%) contrast(101%);
}
.contact-text h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-family: 'Montserrat', sans-serif;
}
.contact-text p, .contact-text a {
    color: var(--dark);
    font-size: 1rem;
    margin: 0;
    text-decoration: none;
}
.contact-text a:hover {
    color: var(--primary);
    text-decoration: underline;
}
.contact-form {
    flex: 1 1 340px;
    background: var(--light);
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,102,204,0.07);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.contact-form.contact-fall.fall-effect-page {
    box-shadow: 0 8px 32px rgba(0,102,204,0.18);
    transform: translateY(6px) scale(1.03);
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.form-group label {
    color: var(--primary-dark);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}
.form-group input, .form-group textarea {
    border: 1.5px solid var(--primary);
    border-radius: 6px;
    padding: 0.7rem;
    font-size: 1rem;
    background: var(--white);
    color: var(--dark);
    transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--secondary);
    outline: none;
}
.contact-btn {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,102,204,0.10);
    transition: background 0.2s, box-shadow 0.2s;
}
.contact-btn:hover {
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    box-shadow: 0 4px 16px rgba(0,102,204,0.18);
}
.form-success-page {
    display: none;
    background: linear-gradient(90deg, #e3f2fd 0%, #fffde7 100%);
    color: var(--primary-dark);
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,102,204,0.08);
    margin-top: 1rem;
    text-align: center;
    transition: opacity 0.4s;
}
.map-section-contact {
    margin: 2rem 0 0 0;
}
.map-container-contact {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,102,204,0.10);
}
.contact-footer {
    background: #111315;
    border-top: none;
    color: #fff;
    font-size: 1.08rem;
    padding: 2.2rem 0 1.2rem 0;
    text-align: center;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.12);
    letter-spacing: 0.01em;
}
.contact-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-footer p {
    margin: 0;
    color: #fff;
    font-size: 1.08rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.whatsapp-float-contact {
    position: relative;
    bottom: 32px;
    right: 32px;
    z-index: 100;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.18);
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
    width: 60px;
    height: 60px;
    animation: whatsapp-float-in 0.7s cubic-bezier(.17,.67,.83,.67);
}
.whatsapp-float-contact:hover {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.28);
    transform: scale(1.08);
}
.whatsapp-float-contact .contact-fa-icon {
    font-size: 2.4rem;
    color: #fff;
    margin: 0;
    transition: color 0.2s;
}
@keyframes whatsapp-float-in {
    0% { opacity: 0; transform: translateY(40px) scale(0.7); }
    80% { opacity: 1; transform: translateY(-8px) scale(1.05); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 900px) {
    .contact-flex {
        flex-direction: column;
        gap: 2rem;
    }
    .contact-info, .contact-form {
        flex: 1 1 100%;
    }
    .contact-page-container {
        padding: 1.2rem 0.5rem;
    }
}

/* Blurry, colored dynamic background */
.contact-bg-splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 60% 30%, rgba(0,102,204,0.22) 0%, rgba(0,66,128,0.18) 40%, rgba(0,26,255,0.14) 70%, rgba(0,102,204,0.10) 100%),
        linear-gradient(120deg, rgba(0,102,204,0.18) 0%, rgba(0,66,128,0.12) 100%);
    filter: blur(32px) brightness(1.08) opacity(0.85);
    animation: splashMove 8s infinite linear alternate;
    transition: opacity 0.5s;
}
@keyframes splashMove {
    0% { transform: scale(1) translateY(0px) rotateZ(0deg); }
    50% { transform: scale(1.05) translateY(18px) rotateZ(-2deg); }
    100% { transform: scale(1.02) translateY(-12px) rotateZ(2deg); }
}
#dieselSplashCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: lighten;
}
.contact-page, .contact-header, .contact-footer, .map-section-contact {
    position: relative;
    z-index: 1;
}
