/* Consolidated CSS */
:root {
    /* Color Palette - Corporate Power */
    --color-primary: #1A1A1A;
    --color-secondary: #FFFFFF;
    --color-accent: #000000;
    --color-surface: #F8F9FA;
    --color-text-dark: #1A1A1A;
    --color-text-light: #FFFFFF;
    --color-background: #FFFFFF;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container-width: 1400px;
    --header-height: 100px;
    --border-radius: 4px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.2, 0, 0, 1);
    --transition-slow: 0.5s cubic-bezier(0.2, 0, 0, 1);
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: #FFFFFF;
}

body {
    font-family: var(--font-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--color-background);
    color: var(--color-text-dark);
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
    border-radius: 0;
    outline: none;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Global Styles */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--color-primary);
    letter-spacing: -0.5px;
    margin-bottom: 30px;
    /* Increased spacing */
}

p {
    line-height: 1.6;
    /* Better readability */
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.container-fluid {
    width: 100%;
    padding: 0 60px;
}

/* Typography Utilities */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--color-primary);
}

.text-accent {
    color: var(--color-accent);
}

.text-light {
    color: var(--color-text-light);
}

.display-text {
    font-size: 6rem;
    /* Even larger */
    line-height: 1.1;
    color: var(--color-primary);
    margin-bottom: 60px;
    /* More space below headline */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 20px 50px;
    background-color: var(--color-accent);
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    min-width: 200px;
    text-align: center;
}

.btn:hover {
    background-color: #333;
    color: #FFF;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-secondary);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #FFFFFF;
    border-bottom: 1px solid #E5E5E5;
    height: var(--header-height);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    /* Added slight shadow */
}

/* Navigation Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* Ensure full width */
    height: 100%;
}

.logo a {
    font-family: var(--font-heading);
    /* Enforce heading font for logo */
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--color-primary);
    /* Changed to primary color (black) as header is white */
    z-index: 100;
    position: relative;
    text-shadow: none;
    /* Removed text shadow for cleaner look */
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    /* Reduces gap slightly */
    align-items: center;
}

.nav-links li {
    position: relative;
    height: 100%;
    /* For full height hover areas if needed */
}

.nav-links a {
    color: var(--color-primary);
    /* Changed to black for white header */
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 10px 0;
    position: relative;
    opacity: 1;
    transition: all 0.2s ease;
    text-shadow: none;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: #555;
    opacity: 0.8;
    text-shadow: none;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    min-width: 250px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.dropdown-menu li {
    display: block;
    margin-bottom: 5px;
}

.dropdown-menu li:last-child {
    margin-bottom: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    border-radius: 4px;
    white-space: nowrap;
    text-align: left;
    text-shadow: none;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(5px);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* Section Padding */
/* Section Padding */
section {
    padding: 120px 0;
    /* Normalized padding */
}

/* Footer */
/* Footer Redesign */
footer {
    background-color: #050505;
    color: #ffffff;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-body);
    /* Enforce body font */
}

.footer-logo {
    font-family: var(--font-heading);
    /* Enforce heading font */
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    text-align: left;
    align-items: start;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: -0.5px;
}

.footer-column p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-logo {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links a:hover {
        transform: none;
    }
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000;
    padding-top: var(--header-height);
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

/* Force spacing after hero */
.hero+section,
.hero+div+section {
    margin-top: 100px !important;
    padding-top: 100px !important;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    /* Darken for text readability */
    filter: grayscale(100%);
    /* Corporate Black & White */
    z-index: 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: var(--font-heading);
    color: #FFFFFF;
    /* White text on dark hero */
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.8);
}

/* Stats Section */
.stats-section {
    background: var(--color-primary);
    color: var(--color-secondary);
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h4 {
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

/* Fleet Showcase */
.fleet-section {
    padding: 120px 0;
    background: #FFFFFF;
}

.fleet-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid #E5E5E5;
}

.fleet-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.fleet-image:hover {
    filter: grayscale(0%);
}

.fleet-info {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    border-right: 1px solid #eee;
}

/* News Section */
.news-section {
    background: #F8F9FA;
    padding: 120px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    /* Increased gap */
}

.news-card {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.news-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: grayscale(100%);
}

.news-content {
    padding: 50px;
    /* Increased padding */
}

.news-date {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 15px;
    /* Increased spacing */
    display: block;
}

.news-card h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    /* Increased spacing */
}

/* Power Cards (Home) */
.power-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    /* Increased gap */
    background: transparent;
    border: none;
    margin: 80px 0;
    /* Vertical spacing */
}

.power-card {
    background: #F8F9FA;
    padding: 100px 50px;
    /* Increased padding */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 600px;
    transition: all var(--transition-fast);
    position: relative;
    border: 1px solid #E5E5E5;
    /* Light border */
}

.power-card:hover {
    background: #FAFAFA;
}

.power-card h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.power-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 300px;
    line-height: 1.6;
    font-weight: 500;
}

/* Forms */
.booking-wrapper {
    background: var(--color-surface);
}

.booking-section {
    background: #FFFFFF;
    padding: 60px;
    border: 1px solid #E5E5E5;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: end;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--color-primary);
}

input,
select,
textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E5E5E5;
    background: #FFFFFF;
    color: var(--color-primary);
    font-weight: 600;
    font-family: var(--font-body);
    transition: border-color var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--color-primary);
}

/* Service Detail Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    padding: 60px;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #555;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .display-text {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .power-grid {
        grid-template-columns: 1fr;
    }

    .booking-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nav-links {
        display: none;
    }

    .container,
    .container-fluid {
        padding: 0 20px !important;
    }

    .power-card {
        padding: 60px 20px;
        min-height: auto;
    }

    .hero {
        padding-top: 120px;
        min-height: auto;
    }

    .booking-section {
        padding: 30px;
    }
}

.news-card {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.news-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: grayscale(100%);
}

.news-content {
    padding: 50px;
    /* Increased padding */
}

.news-date {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 15px;
    /* Increased spacing */
    display: block;
}

.news-card h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    /* Increased spacing */
}

/* Power Cards (Home) */
.power-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    /* Increased gap */
    background: transparent;
    border: none;
    margin: 80px 0;
    /* Vertical spacing */
}

.power-card {
    background: #F8F9FA;
    padding: 100px 50px;
    /* Increased padding */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 600px;
    transition: all var(--transition-fast);
    position: relative;
    border: 1px solid #E5E5E5;
    /* Light border */
}

.power-card:hover {
    background: #FAFAFA;
}

.power-card h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.power-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 300px;
    line-height: 1.6;
    font-weight: 500;
}

/* Forms */
.booking-wrapper {
    background: var(--color-surface);
}

.booking-section {
    background: #FFFFFF;
    padding: 60px;
    border: 1px solid #E5E5E5;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: end;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--color-primary);
}

input,
select,
textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E5E5E5;
    background: #FFFFFF;
    color: var(--color-primary);
    font-weight: 600;
    font-family: var(--font-body);
    transition: border-color var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--color-primary);
}

/* Service Detail Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    padding: 60px;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #555;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .display-text {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .power-grid {
        grid-template-columns: 1fr;
    }

    .booking-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nav-links {
        display: none;
    }

    .container,
    .container-fluid {
        padding: 0 20px !important;
    }

    .power-card {
        padding: 60px 20px;
        min-height: auto;
    }

    .hero {
        padding-top: 120px;
        min-height: auto;
    }

    .booking-section {
        padding: 30px;
    }

    /* Stack grid items on mobile detail pages */
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.marquee-section {
    background: #FFFFFF;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-bottom: 1px solid #eee;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
    width: max-content;
}

.marquee-content {
    display: flex;
    align-items: center;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: #000000;
    margin: 0 40px;
    letter-spacing: -1px;
    user-select: none;
    text-transform: uppercase;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

    /* Navigation adjustments */
    .logo a {
        font-size: 1.5rem;
    }

    /* Hero Text */
    .display-text {
        font-size: 2rem;
        /* Smaller font for mobile */
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 0.9rem !important;
        letter-spacing: 1px !important;
    }

    /* Marquee mobile adjustments */
    .marquee-section {
        padding: 10px 0;
    }

    .marquee-item {
        font-size: 1.5rem;
        /* Smaller scrolling text */
        margin: 0 15px;
    }

    /* Stats Grid Stacking */
    .stats-grid {
        grid-template-columns: 1fr;
        /* Stack stats vertically */
        gap: 30px;
    }

    /* Footer Stacking */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-column {
        width: 100%;
        min-width: auto;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center links */
    }

    /* Adjust padding for containers */
    .container {
        padding: 0 20px;
    }

    .power-grid {
        grid-template-columns: 1fr;
    }

    .power-card {
        min-height: auto;
        padding: 40px 20px;
    }

    /* News Grid Horizontal Scroll - REMOVED for this version as user requested to hide it */
    .news-section {
        display: none !important;
    }

    .news-grid {
        display: none;
    }
}

/* Global Fix for Horizontal Overflow */
html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}