 /* ==========================================================================

   Prestige Stjerne Limousine - Master Consolidated Stylesheet

   ========================================================================== */



/* --- 1. Global Reset & CSS Variables --- */

:root {

    --bg-dark: #0B0C10;

    --bg-card: #12141C;

    --bg-card-hover: #1c1c22;

    --primary-gold: #D4AF37;

    --gold: #D4AF37;

    --gold-hover: #f7d665;

    --gold-glow: rgba(212, 175, 55, 0.25);

    --text-light: #FFFFFF;

    --text-muted: #A3A8B3;

    --border: rgba(212, 175, 55, 0.15);

    --font-serif: 'Playfair Display', serif;

    --font-sans: 'Inter', 'Montserrat', sans-serif;

    --transition: all 0.3s ease;

    --max-width: 1200px;

}



*, *::before, *::after {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



html {

    scroll-behavior: smooth;

}



body {

    background-color: var(--bg-dark);

    color: var(--text-light);

    font-family: var(--font-sans);

    line-height: 1.6;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;

}



a {

    color: inherit;

    text-decoration: none;

}



img {

    max-width: 100%;

    height: auto;

    display: block;

}



.container {

    width: 90%;

    max-width: var(--max-width);

    margin: 0 auto;

    padding: 4rem 0;

}



.text-center { 

    text-align: center; 

}



/* --- 2. Typography & Core Button Styles --- */

h1, h2, h3, h4 {

    font-family: var(--font-serif);

    font-weight: 400;

    letter-spacing: 1px;

}



.section-title {

    font-size: 2.5rem;

    margin-bottom: 1rem;

    color: var(--text-light);

}



.section-subtitle {

    font-size: 1.1rem;

    color: var(--text-muted);

    margin-bottom: 3rem;

}



/* Reusable Buttons */

.btn {

    display: inline-block;

    padding: 0.75rem 1.75rem;

    font-family: var(--font-sans);

    font-size: 0.9rem;

    font-weight: 500;

    text-transform: uppercase;

    text-decoration: none;

    letter-spacing: 1.5px;

    border-radius: 0;

    transition: var(--transition);

    cursor: pointer;

    text-align: center;

}



.btn-gold {

    background-color: var(--gold);

    color: var(--bg-dark);

    border: 1px solid var(--gold);

}



.btn-gold:hover {

    background-color: var(--gold-hover);

    border-color: var(--gold-hover);

    color: var(--bg-dark);

    box-shadow: 0 0 15px var(--gold-glow);

}



.btn-outline {

    background-color: transparent;

    color: var(--text-light);

    border: 1px solid var(--text-light);

}



.btn-outline:hover {

    background-color: var(--text-light);

    color: var(--bg-dark);

}



.btn-outline-gold,

.btn-book,

.btn-book-card {

    display: block;

    text-align: center;

    background-color: transparent;

    color: var(--gold);

    border: 1px solid var(--gold);

    padding: 0.75rem 1.75rem;

    font-family: var(--font-sans);

    font-size: 0.9rem;

    font-weight: 600;

    text-transform: uppercase;

    text-decoration: none;

    letter-spacing: 1.5px;

    transition: var(--transition);

    cursor: pointer;

    margin-top: 1rem;

}



.btn-outline-gold:hover,

.btn-book:hover,

.btn-book-card:hover {

    background-color: var(--gold);

    border-color: var(--gold);

    color: var(--bg-dark);

    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);

}



.btn-sm {

    padding: 0.5rem 1.25rem;

    font-size: 0.8rem;

}



/* --- 3. Header & Navigation --- */

.navbar {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    background-color: rgba(11, 12, 16, 0.95);

    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(10px);

    z-index: 1000;

}



.nav-container {

    width: 92%;

    max-width: 1400px;

    margin: 0 auto;

    height: 85px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.logo {

    font-family: var(--font-serif);

    font-size: 1.35rem;

    color: var(--text-light);

    text-decoration: none;

    letter-spacing: 1.5px;

    line-height: 1.2;

}



.star-icon {

    color: var(--gold);

    font-size: 1.1rem;

    margin-left: 4px;

}



.nav-menu {

    display: flex;

    gap: 2.5rem;

}



.nav-link {

    color: var(--text-muted);

    text-decoration: none;

    font-size: 0.95rem;

    transition: var(--transition);

}



.nav-link:hover, 

.nav-link.active {

    color: var(--gold);

}



.hamburger {

    display: none;

    background: none;

    border: none;

    color: var(--gold);

    font-size: 1.5rem;

    cursor: pointer;

    padding: 10px;

}



.nav-actions {

    display: flex;

    align-items: center;

}



/* --- 4. Hero Section --- */

.hero {

    position: relative;

    min-height: 100vh;

    width: 100%;

    background: url('img/mercedes_eqv.jpg') no-repeat center center/cover;

    display: flex;

    align-items: center;

    padding-top: 100px;

    padding-bottom: 2rem;

}



.hero-overlay {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: linear-gradient(to right, rgba(11, 12, 16, 0.9) 30%, rgba(11, 12, 16, 0.4) 100%);

}



.hero-content {

    position: relative;

    width: 90%;

    max-width: 1200px;

    margin: 0 auto;

    z-index: 10;

}



.hero-title {

    font-size: 4rem;

    line-height: 1.15;

    margin-bottom: 1.5rem;

}



.hero-subtitle {

    font-size: 1.25rem;

    color: var(--text-muted);

    margin-bottom: 1rem;

    max-width: 600px;

}



.hero-cta {

    display: flex;

    gap: 1.5rem;

    margin-top: 2rem;

}



/* --- 5. Pillars & Value Propositions --- */

.pillars,

.about-pillars-section {

    background-color: var(--bg-dark);

    padding: 4rem 0;

}



.pillars-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 2rem;

    margin-top: 2rem;

}



.pillar-card {

    background-color: var(--bg-card);

    padding: 3rem 2rem;

    text-align: center;

    border: 1px solid rgba(255, 255, 255, 0.03);

    transition: var(--transition);

    border-radius: 4px;

}



.pillar-card:hover {

    transform: translateY(-5px);

    background-color: var(--bg-card-hover);

    border-color: rgba(212, 175, 55, 0.3);

}



.pillar-icon,

.pillar-icon-box {

    font-size: 2.5rem;

    color: var(--gold);

    margin-bottom: 1.5rem;

    display: inline-block;

}



.pillar-card h2,

.pillar-card h3 {

    font-size: 1.35rem;

    margin-bottom: 1rem;

}



.pillar-card p {

    color: var(--text-muted);

    font-size: 0.95rem;

}



.pillar-wide {

    grid-column: span 2;

    display: flex;

    flex-direction: row;

    align-items: center;

    gap: 2.5rem;

    text-align: left;

    background: linear-gradient(90deg, var(--bg-card), rgba(212, 175, 55, 0.03));

    border: 1px solid var(--border);

}



.pillar-wide .pillar-icon-box {

    margin-bottom: 0;

    font-size: 3rem;

    background: rgba(212, 175, 55, 0.05);

    width: 90px;

    height: 90px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(212, 175, 55, 0.2);

    flex-shrink: 0;

}



.pillar-wide h2 { 

    font-size: 1.8rem; 

}



/* --- 6. Fleet Section & Table --- */

.fleet-section {

    padding: 100px 0;

    background-color: var(--bg-dark);

}



.table-responsive {

    width: 100%;

    overflow-x: auto;

}



.fleet-table {

    width: 100%;

    border-collapse: collapse;

    background-color: var(--bg-card);

    text-align: left;

    border: 1px solid var(--border);

    border-radius: 4px;

}



.fleet-table th, 

.fleet-table td {

    padding: 1.25rem 1.5rem;

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

}



.fleet-table th {

    text-transform: uppercase;

    font-size: 0.85rem;

    letter-spacing: 1px;

    color: var(--gold);

    background-color: rgba(0, 0, 0, 0.3);

}



.fleet-table td {

    font-size: 0.95rem;

    color: var(--text-light);

}



.fleet-table td i {

    color: var(--gold);

    margin-right: 8px;

    font-size: 0.9rem;

}



.fleet-table .vehicle-name {

    font-family: var(--font-serif);

    font-size: 1.1rem;

}



.fleet-table tbody tr:hover {

    background-color: rgba(212, 175, 55, 0.02);

}



/* --- 7. Services Page & Detail Cards --- */

.services-page-section {

    background-color: var(--bg-dark);

    padding-top: 140px;

}



.rates-section {

    background-color: var(--bg-dark);

    color: var(--text-light);

    padding: 4rem 0;

}



.rates-container {

    width: 90%;

    max-width: 1200px;

    margin: 0 auto;

}



.rates-header {

    text-align: center;

    margin-bottom: 3rem;

}



.rates-header h2 {

    font-family: var(--font-serif);

    font-size: 2.5rem;

    margin-bottom: 1rem;

    color: var(--text-light);

}



.rates-header p {

    color: var(--text-muted);

    font-size: 1.1rem;

}



.services-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    gap: 2rem;

    margin-bottom: 4rem;

}



.service-card {

    background-color: var(--bg-card);

    border: 1px solid rgba(255, 255, 255, 0.03);

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    transition: var(--transition);

    overflow: hidden;

    border-radius: 4px;

}



.service-card:hover {

    transform: translateY(-5px);

    border-color: rgba(212, 175, 55, 0.3);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);

}



.card-img-wrapper {

    width: 100%;

    height: 200px;

    overflow: hidden;

}



.card-img-wrapper img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: var(--transition);

}



.service-card:hover .card-img-wrapper img {

    transform: scale(1.05);

}



.card-content-padding {

    padding: 2rem;

    display: flex;

    flex-direction: column;

    height: 100%;

    justify-content: space-between;

}



.card-top h2,

.card-top h3 {

    font-family: var(--font-serif);

    font-size: 1.45rem;

    margin-top: 0;

    margin-bottom: 15px;

    letter-spacing: 1px;

    line-height: 1.3;

}



.meta-info {

    font-size: 0.85rem;

    color: var(--text-muted);

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

    padding-bottom: 1rem;

    margin-bottom: 1.5rem;

    line-height: 1.6;

}



.meta-info strong {

    color: var(--text-light);

    font-weight: 600;

}



.section-title-card {

    font-size: 0.9rem;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: var(--gold);

    margin-top: 1rem;

    margin-bottom: 0.4rem;

    font-family: var(--font-serif);

}



.card-body p {

    color: var(--text-muted);

    font-size: 0.95rem;

    margin-bottom: 1rem;

    line-height: 1.6;

}



.legal-disclaimer {

    font-size: 0.75rem;

    color: var(--text-muted);

    font-style: italic;

    margin-top: 1rem;

    opacity: 0.7;

}



.tagline {

    font-family: var(--font-serif);

    font-style: italic;

    font-size: 0.95rem;

    color: var(--text-light);

    margin: 1.5rem 0 1rem 0;

}



.services-detail-grid {

    display: flex;

    flex-direction: column;

    gap: 4rem;

    margin-top: 2rem;

}



.service-detail-card {

    display: flex;

    background-color: var(--bg-card);

    border: 1px solid var(--border);

    transition: var(--transition);

}



.service-detail-card:hover {

    border-color: rgba(212, 175, 55, 0.3);

    box-shadow: 0 20px 40px rgba(0,0,0,0.4);

}



.service-detail-card:nth-child(even) {

    flex-direction: row-reverse;

}



.service-img-wrapper {

    flex: 1;

    min-height: 350px;

    position: relative;

    overflow: hidden;

}



.service-img-wrapper img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: var(--transition);

    filter: grayscale(20%) brightness(85%);

}



.service-detail-card:hover .service-img-wrapper img {

    transform: scale(1.04);

    filter: grayscale(0%) brightness(100%);

}



.service-info-content {

    flex: 1.2;

    padding: 3.5rem;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

}



.service-badge {

    font-size: 0.75rem;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 2px;

    color: var(--gold);

    margin-bottom: 1rem;

    border: 1px solid rgba(212, 175, 55, 0.3);

    padding: 0.3rem 0.8rem;

    background-color: rgba(212, 175, 55, 0.05);

}



.service-info-content h2 {

    font-size: 2rem;

    margin-bottom: 1.25rem;

    color: var(--text-light);

}



.service-info-content p {

    color: var(--text-muted);

    font-size: 1rem;

    line-height: 1.75;

    margin-bottom: 2rem;

}



.custom-itinerary-box {

    background: linear-gradient(90deg, var(--bg-card), rgba(212, 175, 55, 0.03));

    border: 1px dashed var(--gold);

    padding: 3rem;

    text-align: center;

    margin-top: 3rem;

    border-radius: 4px;

}



.custom-itinerary-box h3 {

    font-family: var(--font-serif);

    font-size: 1.75rem;

    margin-bottom: 1rem;

    color: var(--gold);

}



.custom-itinerary-box p {

    color: var(--text-muted);

    max-width: 700px;

    margin: 0 auto 2rem auto;

    font-weight: 300;

}



.custom-itinerary-box .btn-outline-gold {

    display: inline-block;

    width: auto;

    padding: 0.75rem 2.5rem;

}



/* --- 8. Terms, Privacy & Policy Layouts --- */

.terms-section,

.privacy-section {

    padding-top: 140px;

    padding-bottom: 80px;

    background-color: var(--bg-dark);

}



.terms-wrapper,

.privacy-wrapper {

    max-width: 900px;

    margin: 0 auto;

    padding: 0 20px;

}



.terms-content-box,

.privacy-content-box {

    background-color: var(--bg-card);

    border: 1px solid var(--border);

    padding: 40px;

    border-radius: 8px;

    margin-top: 30px;

}



.terms-intro,

.privacy-intro {

    font-size: 1.05rem;

    color: var(--text-light);

    margin-bottom: 30px;

    line-height: 1.8;

}



.terms-list,

.privacy-list {

    padding-left: 20px;

}



.terms-list li,

.privacy-list li {

    margin-bottom: 25px;

    color: var(--text-muted);

}



.terms-list h3,

.privacy-list h3 {

    color: var(--gold);

    font-size: 1.25rem;

    margin-bottom: 10px;

}



.privacy-sublist {

    list-style: disc;

    padding-left: 20px;

    margin-top: 10px;

}



.privacy-sublist li {

    margin-bottom: 8px;

}



.privacy-contact-note {

    margin-top: 15px;

    font-weight: 500;

    color: var(--gold);

}



.terms-date,

.privacy-date {

    border-top: 1px solid rgba(255, 255, 255, 0.05);

    padding-top: 20px;

    margin-top: 30px;

    color: var(--text-muted);

    font-size: 0.85rem;

}



/* --- 9. Reference ID Cards & Modal Components --- */

.id-container-wrapper {

    margin-top: 15px;

    display: flex;

    flex-direction: column;

    gap: 12px;

}



.id-block-title {

    font-size: 0.8rem;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: var(--text-muted);

    margin-bottom: 4px;

    display: block;

    font-weight: 600;

}



.id-box-light {

    background-color: #ffffff;

    color: #000000;

    padding: 10px;

    border-radius: 4px;

    font-family: var(--font-sans);

    font-weight: 700;

    font-size: 1.1rem;

    letter-spacing: 1.5px;

    text-align: center;

    border: 1px solid #ffffff;

}



.id-box-dark {

    background-color: #000000;

    color: #ffffff;

    padding: 10px;

    border-radius: 4px;

    font-family: var(--font-sans);

    font-weight: 700;

    font-size: 1.1rem;

    letter-spacing: 1.5px;

    text-align: center;

    border: 1px solid rgba(255, 255, 255, 0.2);

}



/* --- 10. Footers --- */

.global-footer,

.footer {

    background-color: var(--bg-card);

    border-top: 1px solid rgba(212, 175, 55, 0.1);

    color: var(--text-light);

    padding: 4rem 0 2rem 0;

}



.footer-container,

.footer-grid {

    width: 90%;

    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 3rem;

}



.footer-brand h3 {

    font-family: var(--font-serif);

    font-size: 1.2rem;

    color: var(--text-light);

    letter-spacing: 1px;

    margin-bottom: 1rem;

}



.footer-brand p {

    color: var(--text-muted);

    font-size: 0.9rem;

    line-height: 1.6;

    margin-bottom: 1.5rem;

}



.footer-socials a {

    color: var(--text-muted);

    font-size: 1.2rem;

    margin-right: 1.2rem;

    transition: var(--transition);

}



.footer-socials a:hover {

    color: var(--gold);

}



.footer-column h4,

.footer h4 {

    font-family: var(--font-serif);

    font-size: 1.1rem;

    color: var(--gold);

    margin-bottom: 1.5rem;

    font-weight: 500;

}



.footer-links,

.footer-contact {

    list-style: none;

    padding: 0;

    margin: 0;

}



.footer-links li,

.footer-contact li {

    margin-bottom: 0.75rem;

    color: var(--text-muted);

    font-size: 0.9rem;

}



.footer-links a {

    color: var(--text-muted);

    text-decoration: none;

    transition: var(--transition);

}



.footer-links a:hover {

    color: var(--text-light);

    padding-left: 4px;

}



.footer-contact li {

    display: flex;

    align-items: center;

    gap: 0.7rem;

}



.footer-contact i {

    color: var(--gold);

    width: 16px;

}



.footer-bottom {

    width: 90%;

    max-width: 1200px;

    margin: 3rem auto 0 auto;

    padding-top: 1.5rem;

    border-top: 1px solid rgba(255, 255, 255, 0.05);

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 1rem;

    font-size: 0.8rem;

    color: var(--text-muted);

}



.footer-bottom-links a {

    color: var(--text-muted);

    text-decoration: none;

    margin-left: 1.5rem;

    transition: var(--transition);

}



.footer-bottom-links a:hover {

    color: var(--gold);

}



/* --- 11. Media Queries & Responsive Design --- */

@media (max-width: 1100px) {

    .services-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 25px;

    }

}



@media (max-width: 992px) {

    .hero {

        padding-top: 120px;

    }

    .hero-title { font-size: 3rem; }

    .service-info-content { padding: 2.5rem; }

    .service-info-content h2 { font-size: 1.75rem; }

    .pillars-grid { gap: 1.5rem; }

    .pillar-card { padding: 2.5rem 2rem; }

    .pillar-wide { flex-direction: column; align-items: flex-start; gap: 1rem; }

    .pillar-wide .pillar-icon-box { width: 65px; height: 65px; font-size: 2rem; }

}



@media (max-width: 768px) {

    .nav-container {

        height: 85px;

        padding: 0 12px;

        gap: 8px;

    }



    .logo {

        font-size: 1.05rem; 

        line-height: 1.15;

        letter-spacing: 0.5px;

        white-space: normal;

        max-width: 170px;

        flex-shrink: 0;

    }



    .star-icon {

        font-size: 0.85rem;

    }



    .nav-actions {

        display: flex !important;

        align-items: center;

        order: 2;

        margin-left: auto;

    }



    .nav-actions .btn {

        padding: 0.5rem 0.9rem;

        font-size: 0.75rem;

        letter-spacing: 0.5px;

        white-space: nowrap;

    }



    .hamburger {

        display: block !important;

        order: 3;

        padding: 8px;

        font-size: 1.4rem;

    }



    .nav-menu {

        display: none;

        flex-direction: column;

        position: absolute;

        top: 85px;

        left: 0;

        width: 100%;

        background-color: var(--bg-dark);

        padding: 2rem;

        border-bottom: 1px solid var(--gold);

        text-align: center;

        gap: 1.5rem;

        z-index: 999;

    }



    .nav-menu.show,

    .nav-menu.active { 

        display: flex !important; 

    }



    .hero {

        padding-top: 110px;

    }



    .services-page-section,

    .terms-section,

    .privacy-section {

        padding-top: 110px;

    }



    .hero-title { 

        font-size: 2.2rem; 

        line-height: 1.25;

    }

    

    .hero-subtitle {

        font-size: 1rem;

        margin-bottom: 1.5rem;

    }



    .hero-cta { flex-direction: column; gap: 1rem; }

    .section-title { font-size: 1.85rem; }



    .service-detail-card {

        flex-direction: column;

    }



    .service-img-wrapper { min-height: 220px; }

    .service-info-content { padding: 2rem 1.25rem; }



    .pillars-grid { grid-template-columns: 1fr; }

    .pillar-wide { grid-column: span 1; }



    .fleet-table thead { 

        display: none; 

    }



    .fleet-table, 

    .fleet-table tbody, 

    .fleet-table tr, 

    .fleet-table td {

        display: block;

        width: 100%;

    }



    .fleet-table tr {

        margin-bottom: 1.5rem;

        border: 1px solid var(--border);

        background-color: var(--bg-card);

        padding: 1rem 1.25rem;

        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);

    }



    .fleet-table td {

        display: flex;

        justify-content: space-between;

        align-items: center;

        padding: 0.75rem 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.05);

        text-align: right;

        font-size: 0.9rem;

    }



    .fleet-table td:last-child {

        border-bottom: none;

        padding-top: 1rem;

    }



    .fleet-table td::before {

        content: attr(data-label);

        font-weight: 600;

        text-transform: uppercase;

        font-size: 0.75rem;

        letter-spacing: 1px;

        color: var(--gold);

        text-align: left;

    }



    .fleet-table .vehicle-name {

        font-size: 1.1rem;

        border-bottom: 1px solid var(--border);

        padding-bottom: 0.75rem;

        margin-bottom: 0.25rem;

    }



    .fleet-table td[data-label="Action"] {

        display: block;

    }



    .fleet-table td[data-label="Action"]::before {

        display: none;

    }



    .fleet-table td[data-label="Action"] .btn {

        width: 100%;

        display: block;

        text-align: center;

    }



    .footer-bottom {

        flex-direction: column;

        text-align: center;

    }



    .footer-bottom-links a {

        margin: 0 0.75rem;

    }



    .terms-content-box,

    .privacy-content-box {

        padding: 20px;

    }

}



@media (max-width: 600px) {

    .services-grid { 

        grid-template-columns: 1fr; 

        gap: 25px; 

    }

    .custom-itinerary-box .btn-outline-gold { 

        width: 100%; 

    }

} 

CSS
/* ==========================================================================
   Prestige Stjerne Limousine - Master Consolidated Stylesheet
   ========================================================================== */

/* --- 1. Global Reset & CSS Variables --- */
:root {
    --bg-dark: #0B0C10;
    --bg-card: #12141C;
    --bg-card-hover: #1c1c22;
    --primary-gold: #c5a059;
    --gold: #c5a059;
    --gold-hover: #f7d665;
    --gold-glow: rgba(197, 160, 89, 0.25);
    --text-light: #FFFFFF;
    --text-muted: #A3A8B3;
    --border: rgba(197, 160, 89, 0.15);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
    --max-width: 1200px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 0;
}

.text-center { 
    text-align: center; 
}

/* --- 2. Typography & Core Button Styles --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* Reusable Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1.5px;
    border-radius: 0;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--bg-dark);
    border: 1px solid var(--gold);
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--gold-glow);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

.btn-outline-gold,
.btn-book,
.btn-book-card {
    display: block;
    text-align: center;
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.75rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1.5px;
    transition: var(--transition);
    cursor: pointer;
    margin-top: 1rem;
}

.btn-outline-gold:hover,
.btn-book:hover,
.btn-book-card:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.3);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
}

/* --- 3. Header & Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(11, 12, 16, 0.95);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    height: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Prestige Stjerne Limousine Horizontal Header Logo Styles */
.psl-logo {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    background: #0a0a0a;
    user-select: none;
    text-decoration: none;
}

.psl-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5a059;
    flex-shrink: 0;
}

.psl-icon svg {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 0 4px rgba(197, 160, 89, 0.35));
}

.psl-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.psl-title {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #f5f5f7;
    line-height: 1.2;
}

.psl-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #c5a059;
    margin-top: 3px;
    margin-right: -0.28em;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover, 
.nav-link.active {
    color: var(--gold);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

.nav-actions {
    display: flex;
    align-items: center;
}

/* --- 4. Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: url('img/mercedes_eqv.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 12, 16, 0.9) 30%, rgba(11, 12, 16, 0.4) 100%);
}

.hero-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 10;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* --- 5. Pillars & Value Propositions --- */
.pillars,
.about-pillars-section {
    background-color: var(--bg-dark);
    padding: 4rem 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pillar-card {
    background-color: var(--bg-card);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
    border-radius: 4px;
}

.pillar-card:hover {
    transform: translateY(-5px);
    background-color: var(--bg-card-hover);
    border-color: rgba(197, 160, 89, 0.3);
}

.pillar-icon,
.pillar-icon-box {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.pillar-card h2,
.pillar-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.pillar-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pillar-wide {
    grid-column: span 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
    text-align: left;
    background: linear-gradient(90deg, var(--bg-card), rgba(197, 160, 89, 0.03));
    border: 1px solid var(--border);
}

.pillar-wide .pillar-icon-box {
    margin-bottom: 0;
    font-size: 3rem;
    background: rgba(197, 160, 89, 0.05);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.2);
    flex-shrink: 0;
}

.pillar-wide h2 { 
    font-size: 1.8rem; 
}

/* --- 6. Fleet Section & Table --- */
.fleet-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.fleet-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-card);
    text-align: left;
    border: 1px solid var(--border);
    border-radius: 4px;
}

.fleet-table th, 
.fleet-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fleet-table th {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--gold);
    background-color: rgba(0, 0, 0, 0.3);
}

.fleet-table td {
    font-size: 0.95rem;
    color: var(--text-light);
}

.fleet-table td i {
    color: var(--gold);
    margin-right: 8px;
    font-size: 0.9rem;
}

.fleet-table .vehicle-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.fleet-table tbody tr:hover {
    background-color: rgba(197, 160, 89, 0.02);
}

/* --- 7. Services Page & Detail Cards --- */
.services-page-section {
    background-color: var(--bg-dark);
    padding-top: 140px;
}

.rates-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem 0;
}

.rates-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.rates-header {
    text-align: center;
    margin-bottom: 3rem;
}

.rates-header h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.rates-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    overflow: hidden;
    border-radius: 4px;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.card-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.card-content-padding {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.card-top h2,
.card-top h3 {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    margin-top: 0;
    margin-bottom: 15px;
    letter-spacing: 1px;
    line-height: 1.3;
}

.meta-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.meta-info strong {
    color: var(--text-light);
    font-weight: 600;
}

.section-title-card {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-top: 1rem;
    margin-bottom: 0.4rem;
    font-family: var(--font-serif);
}

.card-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legal-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1rem;
    opacity: 0.7;
}

.tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 1.5rem 0 1rem 0;
}

.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 2rem;
}

.service-detail-card {
    display: flex;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.service-detail-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-img-wrapper {
    flex: 1;
    min-height: 350px;
    position: relative;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(20%) brightness(85%);
}

.service-detail-card:hover .service-img-wrapper img {
    transform: scale(1.04);
    filter: grayscale(0%) brightness(100%);
}

.service-info-content {
    flex: 1.2;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.service-badge {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 1rem;
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 0.3rem 0.8rem;
    background-color: rgba(197, 160, 89, 0.05);
}

.service-info-content h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

.service-info-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.custom-itinerary-box {
    background: linear-gradient(90deg, var(--bg-card), rgba(197, 160, 89, 0.03));
    border: 1px dashed var(--gold);
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
    border-radius: 4px;
}

.custom-itinerary-box h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.custom-itinerary-box p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2rem auto;
    font-weight: 300;
}

.custom-itinerary-box .btn-outline-gold {
    display: inline-block;
    width: auto;
    padding: 0.75rem 2.5rem;
}

/* --- 8. Terms, Privacy & Policy Layouts --- */
.terms-section,
.privacy-section {
    padding-top: 140px;
    padding-bottom: 80px;
    background-color: var(--bg-dark);
}

.terms-wrapper,
.privacy-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.terms-content-box,
.privacy-content-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 8px;
    margin-top: 30px;
}

.terms-intro,
.privacy-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.terms-list,
.privacy-list {
    padding-left: 20px;
}

.terms-list li,
.privacy-list li {
    margin-bottom: 25px;
    color: var(--text-muted);
}

.terms-list h3,
.privacy-list h3 {
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.privacy-sublist {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.privacy-sublist li {
    margin-bottom: 8px;
}

.privacy-contact-note {
    margin-top: 15px;
    font-weight: 500;
    color: var(--gold);
}

.terms-date,
.privacy-date {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* --- 9. Reference ID Cards & Modal Components --- */
.id-container-wrapper {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.id-block-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
    display: block;
    font-weight: 600;
}

.id-box-light {
    background-color: #ffffff;
    color: #000000;
    padding: 10px;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    text-align: center;
    border: 1px solid #ffffff;
}

.id-box-dark {
    background-color: #000000;
    color: #ffffff;
    padding: 10px;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- 10. Footers --- */
.global-footer,
.footer {
    background-color: var(--bg-card);
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    color: var(--text-light);
    padding: 4rem 0 2rem 0;
}

.footer-container,
.footer-grid {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
}

.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-socials a {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-right: 1.2rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    color: var(--gold);
}

.footer-column h4,
.footer h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-light);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.footer-contact i {
    color: var(--gold);
    width: 16px;
}

.footer-bottom {
    width: 90%;
    max-width: 1200px;
    margin: 3rem auto 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* --- 11. Media Queries & Responsive Design --- */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .hero {
        padding-top: 120px;
    }
    .hero-title { font-size: 3rem; }
    .service-info-content { padding: 2.5rem; }
    .service-info-content h2 { font-size: 1.75rem; }
    .pillars-grid { gap: 1.5rem; }
    .pillar-card { padding: 2.5rem 2rem; }
    .pillar-wide { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .pillar-wide .pillar-icon-box { width: 65px; height: 65px; font-size: 2rem; }
}

@media (max-width: 768px) {
    .nav-container {
        height: 85px;
        padding: 0 12px;
        gap: 8px;
    }

    .psl-logo {
        padding: 8px 12px;
        gap: 10px;
    }

    .psl-icon svg {
        width: 28px;
        height: 28px;
    }

    .psl-title {
        font-size: 0.95rem;
    }

    .psl-sub {
        font-size: 0.6rem;
    }

    .nav-actions {
        display: flex !important;
        align-items: center;
        order: 2;
        margin-left: auto;
    }

    .nav-actions .btn {
        padding: 0.5rem 0.9rem;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    .hamburger {
        display: block !important;
        order: 3;
        padding: 8px;
        font-size: 1.4rem;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background-color: var(--bg-dark);
        padding: 2rem;
        border-bottom: 1px solid var(--gold);
        text-align: center;
        gap: 1.5rem;
        z-index: 999;
    }

    .nav-menu.show,
    .nav-menu.active { 
        display: flex !important; 
    }

    .hero {
        padding-top: 110px;
    }

    .services-page-section,
    .terms-section,
    .privacy-section {
        padding-top: 110px;
    }

    .hero-title { 
        font-size: 2.2rem; 
        line-height: 1.25;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta { flex-direction: column; gap: 1rem; }
    .section-title { font-size: 1.85rem; }

    .service-detail-card {
        flex-direction: column;
    }

    .service-img-wrapper { min-height: 220px; }
    .service-info-content { padding: 2rem 1.25rem; }

    .pillars-grid { grid-template-columns: 1fr; }
    .pillar-wide { grid-column: span 1; }

    .fleet-table thead { 
        display: none; 
    }

    .fleet-table, 
    .fleet-table tbody, 
    .fleet-table tr, 
    .fleet-table td {
        display: block;
        width: 100%;
    }

    .fleet-table tr {
        margin-bottom: 1.5rem;
        border: 1px solid var(--border);
        background-color: var(--bg-card);
        padding: 1rem 1.25rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    .fleet-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-align: right;
        font-size: 0.9rem;
    }

    .fleet-table td:last-child {
        border-bottom: none;
        padding-top: 1rem;
    }

    .fleet-table td::before {
        content: attr(data-label);
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.75rem;
        letter-spacing: 1px;
        color: var(--gold);
        text-align: left;
    }

    .fleet-table .vehicle-name {
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border);
        padding-bottom: 0.75rem;
        margin-bottom: 0.25rem;
    }

    .fleet-table td[data-label="Action"] {
        display: block;
    }

    .fleet-table td[data-label="Action"]::before {
        display: none;
    }

    .fleet-table td[data-label="Action"] .btn {
        width: 100%;
        display: block;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links a {
        margin: 0 0.75rem;
    }

    .terms-content-box,
    .privacy-content-box {
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .services-grid { 
        grid-template-columns: 1fr; 
        gap: 25px; 
    }
    .custom-itinerary-box .btn-outline-gold { 
        width: 100%; 
    }
}