@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    background-color: rgba(10, 10, 10, 0.9);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 3px;
    color:#ffffff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap:40px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #4a9eff;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 80px;
    padding-top: 100px;
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #4a9eff;
    margin-bottom: 20px;
    margin-left: 3px;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #a0a0a0;
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: #4a9eff;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.hero-btn:hover {
    background-color: #2980e8;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0 , 0.45);
    z-index: 1;
}

.services {
  padding: 100px 40px;
  background-color: #0d0d0d;
  position: relative;
  border-bottom: 1px solid #1a1a1a;
}

.services-container {
  max-width: 1100px;
  margin: 0 auto;
}

.services-label {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #4a9eff;
  margin-bottom: 16px;
}

.services-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 60px;
}

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

.service-card {
  padding: 40px 30px;
  background-color: #141414;
  border: 1px solid #222222;
  transition: border-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  color: #ffffff;
}

.service-card:hover {
  border-color: #4a9eff;
  transform: translateY(-4px);
  color: #ffffff;
}

.service-icon {
  font-size: 28px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #a0a0a0;
}

.page-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    padding: 0 80px;
    padding-top: 120px;
    padding-bottom: 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #0d1f3c 50%, #0a0a0a 100%);
    border-bottom: 1px solid #222222;
    position: relative;
}

.page-hero-content {
    max-width: 700px;
}

.page-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.1;
}

.page-hero-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #a0a0a0;
    max-width: 550px;
}

.services-detail {
    padding: 80px 40px;
    background-color: #0a0a0a;
}

.services-detail-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 0 40px;
    width: 100%;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding-bottom: 60px;
    border-bottom: 1px solid #1a1a1a;
    border-left: 3px solid #4a9eff;
    padding-left: 24px;
    width: 100%;
}

.service-detail-card:last-child{
    border-bottom: none;
    padding-bottom: 0;
}

.service-detail-icon {
    font-size: 36px;
    min-width: 60px;
    padding-top: 4px;
}

.service-detail-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.service-detail-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #a0a0a0;
}

.services-cta {
    padding: 100px 40px;
    background-color: #0a0a0a;
    text-align: center;
    border-top: 1px solid #222222;
}

.services-cta-content h2{
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.services-cta-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #a0a0a0;
    margin-bottom: 40px;
}

.contact-section {
    padding: 80px 40px;
    background-color: #0a0a0a;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-label {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #4a9eff;
    margin-bottom: 16px;
}

.contact-heading {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.contact-subtext {
    font-size: 16px;
    line-height: 1.8;
    color: #a0a0a0;
    margin-bottom: 40px;
    max-width: 440px;
}

.contact-phone {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #4a9eff;
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.contact-phone:hover {
    color: #ffffff;
}

.contact-hours {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555555;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 20px;
}

.contact-info-card {
    padding: 32px;
    background-color: #141414;
    border: 1px solid #222222;
    border-left: 3px solid #4e9eff;
}

.contact-info-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-info-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #a0a0a0;
}

footer {
    background-color: #050505;
    border-top: 1px solid #1a1a1a;
    padding: 60px 40px 0px 40px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 12px;
}

.footer-dealer {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #4a9eff;
}

.footer-links h4, 
.footer-contact h3 {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li{
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #555555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffffff;
}

.footer-contact p {
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding: 20px 0;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 12px;
    color: #333333;
    text-align: center;
}

.projects-section {
    padding: 80px 40px;
    background-color: #0a0a0a;
}

.projects-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background-color: #141414;
    border: 1px solid #222222;
    transition: border-color 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.project-card:hover {
    border-color: #4a9eff;
    transform: translateY(-4px);
}

.project-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.placeholder-image {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image::after {
    content: "Photo Coming Soon";
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333333;
}

.project-info {
    padding: 24px;
}

.project-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}

.project-location {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #4a9eff;
    margin-bottom: 12px;
}

.project-info p {
    font-size: 14px;
    line-height: 1.7;
    color: #a0a0a0;
}

.about-intro {
    padding: 80px 40px;
    background-color:#0a0a0a;
}

.about-intro-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.about-photo-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border: 1px solid #222222;
}

.about-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    margin-top: 12px;
}

.about-bio {
    font-size: 16px;
    line-height: 1.8;
    color: #a0a0a0;
    margin-bottom: 16px;
}

.about-stats {
    padding: 80px 40px;
    background-color: #0d0d0d;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.about-stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-card {
    padding: 40px 20px;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: #4a9eff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #555555;
}

.about-values {
    padding: 80px 40px;
    background-color: #0a0a0a;
}

.about-values-container {
    max-width: 1100px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    padding: 40px 30px;
    background-color: #141414;
    border: 1px solid #222222;
    border-top: 3px solid #4a9eff;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #a0a0a0;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

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

    .hamburger {
        display: flex;
    }

    header {
        padding: 16px 20px;
    }

    .hero {
        padding: 0 24px;
        padding-top: 100px;
    }

    .hero-title {
        font-size: 36px;
    }

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

    .projects-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

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

    .about-intro-container {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .about-photo-placeholder {
        height: 250px;
        width: 100%;
    }

    .about-photo {
        order: 1;
        width: 100%;
    }

    .about-text {
        order: 2;
        width: 100%;
    }

    .nice-strip-container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-phone {
        font-size: 36px;
    }

    .services-detail-container {
        padding: 0 20px;
    }

    .service-detail-card {
        flex-direction: column;
        gap: 16px;
    }

    .page-hero {
        padding: 0 24px;
        padding-top: 120px;
        padding-bottom: 20px;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(10, 10, 10, 0.95);
        padding: 20px 40px;
        gap: 20px;
        z-index: 999;
    }
}


.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.nice-strip {
    position: relative;
    background-color: #0d0d0d;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    padding: 30px 40px;
    text-align: center;
}

.nice-strip::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4a9eff, transparent);
}

.nice-strip-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.nice-strip-text {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #555555;
}

.nice-logo-text {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #4a9eff;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4a9eff, transparent);
}

.services::after {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.about-company-name {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #4a9eff;
    margin-bottom: 24px;
}