:root {
    --color-bg-base: #020202;
    --color-bg-surface: #0a0a0a;
    --color-bg-elevated: #111111;
    
    /* Authentic Metallic Gold Gradient Colors */
    --color-gold-light: #e6c587;
    --color-gold: #cca052;
    --color-gold-dark: #8c6931;
    
    --color-text-main: #f5f5f5;
    --color-text-muted: #8c8c8c;
    --color-hairline: rgba(204, 160, 82, 0.15);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--color-bg-base);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle Leather/Noise Texture */
.noise-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 9999;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.04"/%3E%3C/svg%3E');
}

/* Editorial Grid Lines */
.editorial-grid-lines {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 10vw;
}
.v-line {
    width: 1px;
    height: 100vh;
    background-color: rgba(255,255,255,0.03);
}

/* Floating WA Button */
@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes premium-pulse {
    0% { box-shadow: 0 0 0 0 rgba(204, 160, 82, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(204, 160, 82, 0); }
    100% { box-shadow: 0 0 0 0 rgba(204, 160, 82, 0); }
}

.floating-wa, .floating-phone {
    position: fixed;
    bottom: 40px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.floating-wa {
    right: 40px;
    background: #25D366;
    color: white;
    font-size: 38px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    animation: wa-pulse 2.5s infinite;
}
.floating-wa:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    animation: none;
    background: #20b858;
}

.floating-phone {
    left: 40px;
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    color: #000;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(204, 160, 82, 0.3);
    animation: premium-pulse 2.5s infinite;
    animation-delay: 1.25s; /* alternate pulsing */
}
.floating-phone:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(204, 160, 82, 0.5);
    animation: none;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}
.gold-gradient-text {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 100;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    background: rgba(2, 2, 2, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid var(--color-hairline);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 22px;
    letter-spacing: 3px;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}
.logo-light { color: #fff; }

.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    color: var(--color-text-main);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.4s ease;
}
.nav-links a:hover { color: var(--color-gold); }

.hamburger {
    display: none;
    font-size: 24px;
    color: var(--color-gold);
    cursor: pointer;
    z-index: 100;
}

.nav-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-decoration: none;
    transition: opacity 0.4s ease;
}
.nav-contact:hover { opacity: 0.7; }
.contact-text {
    font-size: 11px;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.contact-number {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #1a1510 0%, #020202 70%);
}



.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 5%;
}

.badge-elegant {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}
.badge-dot {
    width: 4px; height: 4px;
    background-color: var(--color-gold);
    border-radius: 50%;
}
.badge-text {
    font-size: 11px;
    letter-spacing: 6px;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.hero-title {
    font-size: 5.5rem;
    letter-spacing: -1px;
    margin-bottom: 35px;
    text-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.hero-description {
    font-size: 1.15rem;
    color: #a0a0a0;
    max-width: 650px;
    margin: 0 auto 50px auto;
    font-weight: 300;
    line-height: 2;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.btn-editorial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: #000;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(204, 160, 82, 0.15);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(204, 160, 82, 0.3);
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(204, 160, 82, 0.05);
}

.btn-large {
    padding: 22px 60px;
    font-size: 16px;
    letter-spacing: 4px;
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 10;
}
.scroll-text {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-text-muted);
}
.scroll-indicator-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}
.scroll-indicator-line::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--color-gold);
    animation: scrollDrop 2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes scrollDrop {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

.section-editorial {
    padding: 150px 0;
    background: var(--color-bg-surface);
    border-top: 1px solid var(--color-hairline);
    border-bottom: 1px solid var(--color-hairline);
}

.editorial-container {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
}

.editorial-header .section-title {
    font-size: 3.5rem;
    margin-bottom: 40px;
    line-height: 1.1;
}

.gold-hairline {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
}

.editorial-body .lead-text {
    font-size: 1.4rem;
    color: var(--color-text-main);
    margin-bottom: 30px;
    font-weight: 300;
}

.editorial-body .body-text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* Features Grid */
.section-features {
    padding: 150px 0;
    background: var(--color-bg-base);
}

.section-features .section-title {
    font-size: 3rem;
    margin-bottom: 20px;
}
.section-features .section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 80px auto;
}
.text-center { text-align: center; }

.features-editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px; /* Creates hairline borders between items */
    background: var(--color-hairline);
    border: 1px solid var(--color-hairline);
}

.feature-box {
    background: var(--color-bg-base);
    padding: 80px 50px;
    text-align: center;
    transition: background 0.5s ease;
}
.feature-box:hover {
    background: var(--color-bg-surface);
}

.feature-icon {
    font-size: 32px;
    color: var(--color-gold);
    margin-bottom: 30px;
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 1px;
}

.feature-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* Fleet Section */
.section-fleet {
    padding: 150px 0;
    background: radial-gradient(circle at center, var(--color-bg-surface) 0%, var(--color-bg-base) 100%);
    border-bottom: 1px solid var(--color-hairline);
}
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.fleet-card {
    background: var(--color-bg-base);
    border: 1px solid var(--color-hairline);
    padding: 50px 40px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-color: rgba(204, 160, 82, 0.4);
}
.fleet-icon {
    font-size: 40px;
    color: var(--color-gold);
    margin-bottom: 25px;
}
.fleet-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}
.fleet-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    min-height: 70px;
}
.fleet-specs {
    list-style: none;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}
.fleet-specs li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 12px;
}
.fleet-specs li i {
    color: var(--color-gold);
    width: 20px;
}

/* Services Section */
.services-list {
    list-style: none;
}
.services-list li {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    align-items: flex-start;
}
.service-icon {
    font-size: 24px;
    color: var(--color-gold);
    background: rgba(204, 160, 82, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}
.service-content h5 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}
.service-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Testimonials Section */
.section-testimonials {
    padding: 150px 0;
    background: var(--color-bg-base);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.testimonial-card {
    background: var(--color-bg-surface);
    padding: 50px;
    border-radius: 4px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.03);
}
.quote-mark {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 60px;
    color: rgba(204, 160, 82, 0.05);
}
.quote-text {
    font-size: 1.1rem;
    color: #ddd;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}
.quote-author {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
}

/* CTA */
.section-cta {
    padding: 150px 0;
    background: radial-gradient(circle at center, var(--color-bg-surface) 0%, var(--color-bg-base) 100%);
    text-align: center;
    border-top: 1px solid var(--color-hairline);
}
.cta-inner h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}
.cta-inner p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 50px;
}

/* Footer */
.editorial-footer {
    background: var(--color-bg-base);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 30px;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 10px;
}

.footer-contact-details {
    display: flex;
    gap: 40px;
}
.footer-contact-details a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}
.footer-contact-details a:hover { color: var(--color-gold); }

.footer-bottom {
    text-align: center;
    color: #444;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Animations */
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), 
                transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 1024px) {
    .editorial-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: 4rem; }
    .fleet-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .reverse-mobile { display: flex; flex-direction: column-reverse; }
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    
    .nav-links { 
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100vh;
        background: rgba(2, 2, 2, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transform: translateY(-100%);
        transition: transform 0.5s ease;
        z-index: 99;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links a {
        font-size: 20px;
    }
    
    .nav-contact { display: none; }
    
    .hero-title { font-size: 3rem; }
    .features-editorial-grid { grid-template-columns: 1fr; }
    .footer-grid { flex-direction: column; gap: 40px; text-align: center; }
    .hero-actions { flex-direction: column; }
    
    .floating-wa, .floating-phone { bottom: 20px; width: 60px; height: 60px; }
    .floating-wa { right: 20px; font-size: 32px; }
    .floating-phone { left: 20px; font-size: 26px; }
}

/* Subpage Styles */
.page-header {
    padding: 180px 0 80px 0;
    text-align: center;
    background: radial-gradient(ellipse at center, #1a1510 0%, #020202 70%);
    border-bottom: 1px solid var(--color-hairline);
}
.page-content {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}
.page-content h2 {
    color: #fff;
    margin: 40px 0 20px 0;
    font-family: var(--font-heading);
    font-size: 1.8rem;
}

