/* ===========================
   Global Styles & Variables
   =========================== */

:root {
    --color-black: #000000;
    --color-gold: #D4AF37;
    --color-white: #FFFFFF;
    --color-gray-light: #F5F5F5;
    --color-gray-medium: #CCCCCC;
    --color-gray-dark: #333333;
    --color-overlay: rgba(0, 0, 0, 0.5);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-gray-dark);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
    -webkit-tap-highlight-color: transparent;
}

button {
    -webkit-tap-highlight-color: transparent;
}

ul {
    list-style: none;
}

/* ===========================
   Typography
   =========================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-black);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.section-subtitle {
    text-align: center;
    color: var(--color-gray-dark);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.section-header {
    margin-bottom: 4rem;
}

/* ===========================
   Buttons
   =========================== */

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 2px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .btn {
        padding: 10px 24px;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
}

.btn-primary {
    background-color: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

.btn-primary:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

.btn-gold:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

.btn-lg {
    padding: 16px 48px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary i {
    font-size: 0.9rem;
}

/* ===========================
   Navigation
   =========================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background-color: var(--color-black);
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
}

.logo-image {
    height: 70px;
    width: auto;
    transition: var(--transition-smooth);
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 3px;
}

.logo-subtext {
    font-size: 0.7rem;
    color: var(--color-white);
    letter-spacing: 4px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .logo-image {
        height: 55px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 50px;
    }
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    color: var(--color-white);
    font-weight: 400;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===========================
   Hero Section
   =========================== */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/skbrb-exterior-0126-hor-wide.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--color-white);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Services Section
   =========================== */

.services {
    padding: 6rem 0;
    background-color: var(--color-gray-light);
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .services {
        padding: 4rem 0;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    margin: -2.5rem -2.5rem 1.5rem -2.5rem;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-gray-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-gold);
    position: relative;
    z-index: 10;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--color-gray-dark);
    line-height: 1.8;
}

/* ===========================
   Fleet Section
   =========================== */

.fleet {
    padding: 6rem 0;
    background-color: var(--color-white);
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .fleet {
        padding: 4rem 0;
    }
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

@media (max-width: 600px) {
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.fleet-card {
    background-color: var(--color-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.fleet-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.1);
}

.fleet-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--color-gold);
    color: var(--color-black);
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fleet-content {
    padding: 2rem;
}

.fleet-content h3 {
    margin-bottom: 0.5rem;
}

.fleet-category {
    color: var(--color-gold);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.fleet-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.fleet-specs li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray-dark);
    font-size: 0.9rem;
}

.fleet-specs i {
    color: var(--color-gold);
}

/* ===========================
   About Section
   =========================== */

.about {
    padding: 6rem 0;
    background-color: var(--color-gray-light);
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 0;
    }
}

.about-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.about-tagline {
    font-size: 1.3rem;
    color: var(--color-gold);
    font-weight: 500;
    font-family: var(--font-heading);
    margin-top: 1rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 5rem;
}

.about-intro-section {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-gray-dark) 100%);
    padding: 2rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.about-intro-section h3 {
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-white) !important;
    margin: 0 !important;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
}

.about-cta-box {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 4px;
    border: 2px solid var(--color-gold);
    text-align: center;
    margin-top: 2rem;
}

.about-cta-box h4 {
    color: var(--color-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.about-cta-box p {
    margin-bottom: 1.5rem;
    color: var(--color-gray-dark);
}

.about-image-section {
    position: relative;
}

.about-main-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
    height: 400px;
}

.about-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
}

.overlay-text {
    color: var(--color-white);
}

.overlay-text i {
    color: var(--color-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.overlay-text p {
    font-style: italic;
    font-size: 1.1rem;
    margin: 0;
    color: var(--color-white) !important;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background-color: var(--color-black);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-item p {
    color: var(--color-white);
    font-size: 0.85rem;
    margin: 0;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-feature-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.about-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-black) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-white);
}

.about-feature-card h4 {
    margin-bottom: 1rem;
    color: var(--color-black);
    font-size: 1.2rem;
}

.about-feature-card p {
    color: var(--color-gray-dark);
    line-height: 1.7;
    margin: 0;
}

.about-promise {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-gray-dark) 100%);
    padding: 3rem;
    border-radius: 4px;
    border-left: 6px solid var(--color-gold);
    text-align: center;
}

.promise-label {
    display: inline-block;
    background-color: var(--color-gold);
    color: var(--color-black);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.promise-content h3 {
    color: var(--color-white);
    margin: 1.5rem 0;
    font-size: 2rem;
}

.promise-content p {
    color: var(--color-white);
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto;
}

/* ===========================
   Testimonials Section
   =========================== */

.testimonials {
    padding: 6rem 0;
    background-color: var(--color-black);
    color: var(--color-white);
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 0;
    }
}

.testimonials .section-title,
.testimonials .section-subtitle {
    color: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.testimonial-stars {
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-gray-light);
}

.testimonial-author h4 {
    color: var(--color-white);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.testimonial-author p {
    color: var(--color-gold);
    font-size: 0.9rem;
}

/* ===========================
   Contact Section
   =========================== */

.contact {
    padding: 6rem 0;
    background-color: var(--color-white);
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-item p {
    margin: 0;
    color: var(--color-gray-dark);
    line-height: 1.6;
}

.contact-social {
    margin-top: 3rem;
}

.contact-social h4 {
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background-color: var(--color-black);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-3px);
}

.contact-form {
    background-color: var(--color-gray-light);
    padding: 2.5rem;
    border-radius: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-black);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-gray-medium);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.map-container {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ===========================
   Footer
   =========================== */

.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 108px;
    width: 108px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.footer-logo-image:hover {
    transform: scale(1.05);
}

.footer-section h4 {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section p {
    line-height: 1.8;
    color: var(--color-gray-light);
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--color-gray-light);
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-section ul li i {
    color: var(--color-gold);
    margin-right: 0.5rem;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-gray-medium);
}

.footer-bottom a {
    color: var(--color-gold);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ===========================
   WhatsApp Floating Button
   =========================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===========================
   Responsive Design
   =========================== */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--color-black);
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        transition: var(--transition-smooth);
        padding: 2rem;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-cta .btn-secondary {
        display: none !important;
    }

    .hero {
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-main-image {
        height: 300px;
    }

    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Landscape and Small Tablets */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero {
        height: 100vh;
        min-height: 600px;
    }

    .hero-title {
        font-size: 2.5rem;
        padding: 0 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 20px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }

    .btn-lg {
        padding: 14px 32px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2rem;
    }

    .service-image {
        margin: -2rem -2rem 1.5rem -2rem;
        height: 180px;
    }

    .about-tagline {
        font-size: 1.1rem;
    }

    .about-intro-section h3 {
        font-size: 1.3rem;
    }

    .about-lead {
        font-size: 1.1rem;
    }

    .about-main-image {
        height: 250px;
    }

    .overlay-text i {
        font-size: 1.5rem;
    }

    .overlay-text p {
        font-size: 1rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .stat-icon {
        font-size: 1.2rem;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
    }

    .about-feature-card {
        padding: 1.5rem;
    }

    .feature-icon-large {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .about-promise {
        padding: 2.5rem 2rem;
    }

    .promise-content h3 {
        font-size: 1.8rem;
    }

    .promise-content p {
        font-size: 1rem;
    }

    .contact-form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-section ul {
        text-align: center;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.7rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 0.75rem 0;
    }
    
    .hero {
        min-height: 100vh;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .logo-subtext {
        font-size: 0.6rem;
        letter-spacing: 3px;
    }

    .nav-menu {
        width: 85%;
    }

    .nav-cta {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .nav-cta .btn {
        width: 100%;
        font-size: 0.85rem;
        padding: 10px 16px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .services {
        padding: 4rem 0;
    }
    
    .service-card {
        padding: 1.5rem;
    }

    .service-image {
        margin: -1.5rem -1.5rem 1rem -1.5rem;
        height: 160px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .fleet,
    .about,
    .testimonials,
    .contact {
        padding: 4rem 0;
    }

    .about-hero {
        margin-bottom: 3rem;
    }

    .about-tagline {
        font-size: 1rem;
    }

    .about-intro-section {
        padding: 1.5rem;
    }

    .about-intro-section h3 {
        font-size: 1.2rem;
    }

    .about-lead {
        font-size: 1rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .about-cta-box {
        padding: 1.5rem;
    }

    .about-cta-box h4 {
        font-size: 1.1rem;
    }

    .about-main-image {
        height: 200px;
    }

    .image-overlay {
        padding: 1.5rem;
    }

    .overlay-text i {
        font-size: 1.3rem;
    }

    .overlay-text p {
        font-size: 0.9rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .stat-item p {
        font-size: 0.75rem;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-feature-card {
        padding: 1.5rem;
    }

    .feature-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .about-feature-card h4 {
        font-size: 1.1rem;
    }

    .about-feature-card p {
        font-size: 0.9rem;
    }

    .about-promise {
        padding: 2rem 1.5rem;
    }

    .promise-label {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .promise-content h3 {
        font-size: 1.4rem;
    }

    .promise-content p {
        font-size: 0.95rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-item i {
        font-size: 1.3rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9rem;
        padding: 10px;
    }

    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 15px;
        right: 15px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-item h3 {
        font-size: 1.6rem;
    }

    .btn {
        font-size: 0.8rem;
        padding: 10px 20px;
    }
}

/* Landscape Mobile Optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 8rem 0 4rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .scroll-indicator {
        display: none;
    }
}

/* ===========================
   Utility Classes
   =========================== */

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.hidden {
    display: none;
}

/* ===========================
   Booking Page Styles
   =========================== */

.booking-hero {
    background: linear-gradient(135deg, var(--color-black) 0%, #1a1a1a 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 80px;
}

.booking-hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.booking-hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-gray-light);
    max-width: 600px;
    margin: 0 auto;
}

.booking-section {
    padding: 4rem 0;
    background-color: var(--color-gray-light);
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.booking-form-container {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.booking-form {
    width: 100%;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.form-section-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-black);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-section-title i {
    color: var(--color-gold);
    font-size: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--color-white);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="date"]:focus,
.form-group input[type="time"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--color-gold);
}

.checkbox-label span {
    color: var(--color-text);
}

.form-actions {
    text-align: center;
    padding-top: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
    gap: 0.75rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.6;
}

/* Booking Sidebar */
.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-info-card {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.booking-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-black);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-info-card h3 i {
    color: var(--color-gold);
}

.booking-info-card p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.booking-info-card p:last-child {
    margin-bottom: 0;
}

.booking-info-list {
    list-style: none;
}

.booking-info-list li {
    padding: 0.5rem 0;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.booking-info-list li i {
    color: var(--color-gold);
    font-size: 0.9rem;
}

.booking-phone {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gold);
    text-decoration: none;
    margin: 1rem 0;
    transition: color 0.3s ease;
}

.booking-phone:hover {
    color: #c5a647;
}

.booking-hours {
    font-size: 0.9rem;
    color: var(--color-text);
    font-style: italic;
}

.btn-whatsapp {
    width: 100%;
    background-color: #25D366;
    color: var(--color-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
}

/* Booking Page Responsive Design */
@media (max-width: 1024px) {
    .booking-layout {
        grid-template-columns: 1fr 320px;
        gap: 2rem;
    }

    .booking-form-container {
        padding: 2.5rem;
    }
}

@media (max-width: 968px) {
    .booking-hero {
        padding: 6rem 0 3rem;
    }

    .booking-hero-title {
        font-size: 2.5rem;
    }

    .booking-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-sidebar {
        order: -1;
    }

    .booking-form-container {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .booking-hero {
        padding: 5rem 0 2.5rem;
    }

    .booking-hero-title {
        font-size: 2rem;
    }

    .booking-hero-subtitle {
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .booking-info-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .booking-hero {
        padding: 4rem 0 2rem;
    }

    .booking-hero-title {
        font-size: 1.75rem;
    }

    .booking-form-container {
        padding: 1.5rem;
    }

    .form-section {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .form-section-title {
        font-size: 1.2rem;
    }

    .booking-phone {
        font-size: 1.25rem;
    }
}

/* ===========================
   PWA Install Button
   =========================== */

.pwa-install-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-gold) 0%, #c5a647 100%);
    color: var(--color-black);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.pwa-install-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.pwa-install-btn i {
    font-size: 1.1rem;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.6);
    }
}

@media (max-width: 768px) {
    .pwa-install-btn {
        bottom: 80px;
        right: 15px;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
}
