:root {
    --bg-dark: #050814;
    --bg-navy: #0a1128;
    --bg-card: rgba(10, 17, 40, 0.7);
    --primary-yellow: #ffcc00;
    --primary-yellow-hover: #e6b800;
    --text-white: #ffffff;
    --text-gray: #cbd5e1;
    --metallic-gray: #8b939c;
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    
    --font-main: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

p {
    color: var(--text-gray);
    font-weight: 300;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: var(--primary-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--text-white);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-huge {
    padding: 1.2rem 2.5rem;
    font-size: 1.3rem;
    border-radius: 50px;
}

/* Sticky Call Button */
.sticky-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-yellow), #d4aa00);
    color: var(--bg-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 204, 0, 0.6);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 2px solid #fff;
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
}

.sticky-call-btn:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .sticky-call-btn {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        width: 90%;
        justify-content: center;
    }
    .sticky-call-btn:hover {
        transform: translateX(50%) scale(1.02);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 100;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 8, 20, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    display: flex;
    align-items: center;
}

.brand-logo {
    max-height: 140px;
    width: auto;
    object-fit: contain;
    transition: max-height 0.3s ease;
}

.navbar.scrolled .brand-logo {
    max-height: 90px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-yellow);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 992px) {
    .nav-links, .nav-cta {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('assets/hero_tow_truck_1777862393973.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 150px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(5, 8, 20, 0.9) 0%, rgba(5, 8, 20, 0.7) 50%, rgba(5, 8, 20, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-text {
    max-width: 700px;
    animation: fadeInUp 1s ease forwards;
}

.badge {
    display: inline-block;
    background: rgba(255, 204, 0, 0.2);
    color: var(--primary-yellow);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 204, 0, 0.5);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #e2e8f0;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(5, 8, 20, 0.5) 0%, rgba(5, 8, 20, 0.9) 100%);
    }
    .hero-text {
        text-align: center;
        margin-top: 100px;
    }
    .hero-buttons {
        justify-content: center;
    }
}

/* Trust Section */
.trust-section {
    background: var(--bg-navy);
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    z-index: 20;
    margin-top: -50px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 204, 0, 0.3);
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.trust-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    font-size: 1.2rem;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-navy);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-yellow);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 204, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-yellow);
    font-size: 1.8rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-navy) 0%, var(--bg-dark) 100%);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-content {
    flex: 1;
}

.about-list {
    list-style: none;
    margin-top: 2rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-list i {
    color: var(--primary-yellow);
    font-size: 1.2rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--glass-border);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-yellow);
    border-radius: 16px;
    z-index: -1;
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
}

/* Service Area */
.service-area-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.service-area-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-direction: row-reverse;
}

.service-area-image {
    flex: 1;
}

.service-area-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.service-area-content {
    flex: 1;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2rem 0;
}

.area-tags span {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--text-white);
}

.address {
    font-weight: 600;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.address i {
    color: var(--primary-yellow);
}

@media (max-width: 992px) {
    .service-area-container {
        flex-direction: column;
    }
}

/* Reviews */
.reviews-section {
    padding: 6rem 0;
    background: var(--bg-navy);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.stars {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.review-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--metallic-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--bg-dark);
}

.reviewer h4 {
    margin: 0;
    font-size: 1rem;
}

.reviewer p {
    margin: 0;
    font-size: 0.8rem;
    font-style: normal;
}

/* Social Proof */
.social-proof-section {
    padding: 4rem 0;
    background: linear-gradient(90deg, rgba(255, 204, 0, 0.1) 0%, rgba(5, 8, 20, 1) 100%);
    border-top: 1px solid var(--glass-border);
}

.social-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-icons i {
    font-size: 2.5rem;
    color: var(--metallic-gray);
    transition: color 0.3s ease;
}

.social-icons i:hover {
    color: var(--primary-yellow);
}

/* Final CTA */
.final-cta {
    padding: 8rem 0;
    background: linear-gradient(rgba(5, 8, 20, 0.8), rgba(5, 8, 20, 0.8)), url('assets/hero_tow_truck_1777862393973.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(255, 204, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 204, 0, 0); }
}

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

/* Footer */
footer {
    background: #000;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info {
    max-width: 400px;
}

.footer-info .brand-logo {
    max-height: 180px;
    margin-bottom: 1rem;
}

.footer-contact h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-yellow);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-yellow);
}

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

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* Trust Bar */
.trust-bar {
    background: var(--primary-yellow);
    color: var(--bg-dark);
    padding: 1rem 0;
    font-weight: 800;
    border-bottom: 2px solid #fff;
}
.trust-bar-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    .trust-bar-container {
        justify-content: center;
        gap: 0.5rem;
    }
    .trust-bar-container span {
        width: 45%;
        text-align: center;
        font-size: 0.75rem;
    }
}

/* Popular Badge */
.popular-service {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.2);
}
.popular-badge {
    position: absolute;
    top: 0;
    right: 20px;
    background: var(--primary-yellow);
    color: var(--bg-dark);
    padding: 0.3rem 1rem;
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
}

/* Why Choose Us Section */
.why-us-section {
    padding: 6rem 0;
    background: var(--bg-navy);
}
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.why-us-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-dark);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}
.why-us-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 204, 0, 0.3);
}
.why-us-icon {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

/* Payment Section */
.payment-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-navy));
    border-top: 1px solid var(--glass-border);
    text-align: center;
}
.payment-content {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(10, 17, 40, 0.8);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--primary-yellow);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.2);
}
.payment-content h2 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}
.payment-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.premium-btn {
    background: linear-gradient(90deg, #ffcc00, #ffaa00);
    color: #000;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.5);
    transition: all 0.3s ease;
}
.premium-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.7);
}
