/* ================= RESET & BASE ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0D0D0D;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
}

/* ================= DASHBOARD STYLES ================= */
.dashboard-section {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    padding: 60px 0;
}

.dashboard-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Scroll reveal */
.reveal-ready {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-in {
    opacity: 1;
    transform: translateY(0);
}

/* Hero uvek vidljiv */
.hero {
    display: flex !important;
    min-height: 70vh;
}

/* Dugme za nazad */
.back-to-home {
    display: none;
    position: fixed;
    top: 80px;
    left: 20px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.back-to-home.show {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Aktivan link u navigaciji */
.nav-links a.active-nav {
    background: rgba(76, 175, 80, 0.2) !important;
    color: #4CAF50 !important;
}

/* ================= TYPOGRAPHY ================= */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #4CAF50;
    text-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
}

p {
    color: #CCCCCC;
    font-size: 1.05rem;
}

/* TELEFON BROJEVI */
.phone-number {
    color: #FFFFFF !important;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.phone-number:hover {
    color: #4CAF50 !important;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2E7D32, #4CAF50);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #4CAF50;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* ================= CONTAINER ================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= BUTTONS ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
    white-space: nowrap;
}

.btn-rent {
    background: linear-gradient(45deg, #2E7D32, #4CAF50);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
}

.btn-rent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.6);
    background: linear-gradient(45deg, #4CAF50, #2E7D32);
}

.btn-call {
    background: #1A1A1A;
    color: #FFFFFF;
    border: 2px solid #4CAF50;
}

.btn-call:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-3px);
}

.btn:focus-visible,
.nav-links a:focus-visible,
.menu-toggle:focus-visible,
.floating-btn:focus-visible,
.modal-close:focus-visible {
    outline: 3px solid #4CAF50;
    outline-offset: 2px;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
    display: flex;
}

/* FORM BUTTONS */
.form-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .form-buttons {
        grid-template-columns: 1fr 1fr;
    }
}

/* ================= LOADER ================= */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0D0D0D;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(76, 175, 80, 0.2);
    border-top-color: #4CAF50;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 2px solid #2E7D32;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    cursor: pointer;
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #4CAF50;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.8rem;
    color: #CCCCCC;
    letter-spacing: 2px;
}

.menu-toggle {
    display: block;
    font-size: 1.8rem;
    cursor: pointer;
    color: #4CAF50;
    background: none;
    border: none;
    font-family: inherit;
    line-height: 1;
}

.nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(15px);
    list-style: none;
    padding: 40px 20px;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-links.active {
    transform: translateX(0);
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s;
}

.nav-links a:hover {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    transform: translateX(10px);
}

/* Desktop Navigation */
@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
    
    .nav-links {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        backdrop-filter: none;
        display: flex;
        flex-direction: row;
        padding: 0;
        transform: none;
        gap: 10px;
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    .nav-links a:hover {
        transform: translateY(-3px);
    }
}

/* ================= HERO ================= */
.hero {
    min-height: 70vh;
    background: linear-gradient(rgba(13, 13, 13, 0.9), rgba(13, 13, 13, 0.7)),
                url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1600') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(46, 125, 50, 0.2), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-logo {
    margin-bottom: 40px;
}

.main-title {
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.4rem !important;
    color: #CCCCCC !important;
    margin-bottom: 10px !important;
}

.hero-location {
    color: #4CAF50 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 50px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-card {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid #2E7D32;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s;
    cursor: pointer;
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: #4CAF50;
}

.highlight-card i {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 15px;
}

.highlight-card i.fa-whatsapp {
    color: #25D366;
}

.highlight-card h3 {
    margin-bottom: 10px;
    color: #FFFFFF;
}

.highlight-card p {
    color: #CCCCCC;
    font-size: 0.95rem;
}

.highlight-card small {
    color: #4CAF50;
    font-size: 0.85rem;
    display: block;
    margin-top: 10px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* ================= RENT SECTION ================= */
.rent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.rent-card {
    background: #0D0D0D;
    border: 2px solid #2E7D32;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.rent-card:hover {
    transform: translateY(-10px);
    border-color: #4CAF50;
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.2);
}

.rent-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4CAF50;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.rent-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    border-bottom: 2px solid #2E7D32;
}

.rent-card:hover img {
    transform: scale(1.05);
}

.rent-info {
    padding: 25px;
}

.rent-info h3 {
    margin-bottom: 15px;
    color: #FFFFFF;
}

.rent-specs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #4CAF50;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 10px;
}

.rent-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

/* RENT DESCRIPTION */
.rent-description {
    margin: 15px 0;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #4CAF50;
}

.rent-description p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #CCCCCC;
    font-size: 0.9rem;
}

.rent-description i {
    color: #4CAF50;
    font-size: 0.9rem;
    min-width: 20px;
}

.rent-price {
    font-size: 2rem;
    font-weight: 700;
    color: #4CAF50;
    margin: 20px 0;
}

.rent-price span {
    font-size: 1rem;
    color: #CCCCCC;
    margin-left: 5px;
}

/* ================= RESERVATIONS ================= */
.reservation-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
}

@media (min-width: 992px) {
    .reservation-wrapper {
        grid-template-columns: 2fr 1fr;
    }
}

.selected-car-display {
    background: rgba(76, 175, 80, 0.1);
    border: 2px dashed #4CAF50;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    color: #4CAF50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.selected-car-display i {
    font-size: 1.5rem;
}

/* ANIMACIJA ZA ODABIR VOZILA */
.selected-car-display.highlight {
    animation: pulseGreen 1.5s ease-in-out;
    border: 2px solid #4CAF50 !important;
}

@keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.reservation-form {
    background: #1A1A1A;
    border: 2px solid #2E7D32;
    border-radius: 20px;
    padding: 40px;
}

.reservation-form h3 {
    margin-bottom: 30px;
    color: #4CAF50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid #2E7D32;
    border-radius: 10px;
    background: rgba(76, 175, 80, 0.1);
    font-size: 0.88rem;
    color: #FFFFFF;
    text-align: center;
}

.trust-item i {
    color: #4CAF50;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #4CAF50;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 10px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

/* STILIZACIJA DROPDOWNA ZA VOZILA */
.car-select-wrapper {
    position: relative;
}

.car-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 50px;
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #4CAF50;
    pointer-events: none;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

/* Desktop/browser dropdown list visibility fix */
.form-group select option {
    background: #ffffff;
    color: #111111;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.reservation-info {
    background: #1A1A1A;
    border: 2px solid #333;
    border-radius: 20px;
    padding: 30px;
}

.rental-calculator {
    margin-bottom: 20px;
    padding: 18px;
    border: 2px solid #2E7D32;
    border-radius: 12px;
    background: rgba(76, 175, 80, 0.1);
}

.rental-calculator.calc-updated {
    animation: calcPulse 0.45s ease;
}

@keyframes calcPulse {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
    100% { box-shadow: 0 0 0 16px rgba(76, 175, 80, 0); }
}

.rental-calculator h4 {
    color: #4CAF50;
    margin-bottom: 10px;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.calculator-grid p {
    margin: 0;
    color: #FFFFFF;
    font-size: 0.95rem;
}

.calculator-final {
    grid-column: 1 / -1;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cancellation-policy {
    margin-bottom: 20px;
    padding: 16px;
    border: 1px solid #555;
    border-left: 4px solid #ff9800;
    border-radius: 10px;
    background: rgba(255, 152, 0, 0.08);
}

.cancellation-policy h4 {
    color: #ffb74d;
    margin-bottom: 8px;
}

.cancellation-policy p {
    margin: 4px 0;
    font-size: 0.92rem;
}

.reservation-info h3 {
    margin-bottom: 25px;
    color: #4CAF50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #4CAF50;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.info-card i {
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 10px;
}

.info-card i.fa-whatsapp {
    color: #25D366;
}

.info-card h4 {
    margin-bottom: 15px;
    color: #FFFFFF;
}

.info-card p {
    color: #CCCCCC;
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* EMERGENCY CARD */
.info-card.emergency {
    border-left-color: #ff9800;
    background: rgba(255, 152, 0, 0.1);
}

.info-card.emergency i {
    color: #ff9800;
}

.emergency-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff9800;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.3s;
}

.emergency-phone:hover {
    background: #f57c00;
    transform: translateY(-2px);
}

/* ================= PRICING ================= */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333;
    color: #CCCCCC;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.pricing-content {
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 40px;
}

.price-table {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.price-table.active {
    display: grid;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.price-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #2E7D32;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
    transition: left 0.6s;
}

.price-card:hover::before {
    left: 100%;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: #4CAF50;
}

.price-card h3 {
    margin-bottom: 15px;
    color: #FFFFFF;
    font-size: 1.2rem;
}

.price-desc {
    font-size: 0.8rem !important;
    color: #888 !important;
    margin-top: 5px;
    font-style: italic;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #4CAF50;
    margin: 15px 0;
}

.price span {
    font-size: 1rem;
    color: #CCCCCC;
    margin-left: 5px;
}

.contact-callout {
    margin-top: 50px;
    text-align: center;
    padding: 30px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 15px;
    border: 2px solid #4CAF50;
}

.contact-callout h3 {
    color: #4CAF50;
    margin-bottom: 15px;
}

.contact-callout .phone-number {
    font-size: 2rem;
    margin: 15px 0;
    display: block;
}

.phone-number-large {
    font-size: 2rem;
    margin: 15px 0;
}

.phone-number-medium {
    font-size: 1.8rem;
    margin: 10px 0;
}

.callout-btn {
    margin-top: 10px;
}

/* ================= CONTACT ================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
}

@media (min-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.contact-card {
    background: #1A1A1A;
    border: 2px solid #333;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #4CAF50;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4CAF50;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-icon.fa-whatsapp {
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

.contact-details h3 {
    margin-bottom: 10px;
    color: #FFFFFF;
}

.contact-details p {
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 5px;
}

.location-note {
    background: rgba(76, 175, 80, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #4CAF50 !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-details small {
    color: #888;
    font-size: 0.85rem;
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.whatsapp-link:hover {
    color: #128C7E;
    transform: translateY(-2px);
}

.contact-map {
    background: #1A1A1A;
    border: 2px solid #333;
    border-radius: 20px;
    padding: 30px;
}

.contact-map h3 {
    margin-bottom: 20px;
    color: #4CAF50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
}

.map-container iframe {
    border-radius: 8px;
    width: 100%;
    min-height: 360px;
}

.map-note {
    margin-top: 15px;
    padding: 12px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    color: #4CAF50;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.map-note i {
    font-size: 1.2rem;
    margin-right: 10px;
}

/* EMAIL CONTACT FORM */
.email-contact-form {
    margin-top: 50px;
    padding: 40px;
    background: #1A1A1A;
    border: 2px solid #2E7D32;
    border-radius: 20px;
}

.email-contact-form h3 {
    color: #4CAF50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.email-support {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 2px solid #2E7D32;
    text-align: center;
}

.email-support h3 {
    color: #4CAF50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.email-address {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 20px 0;
    font-size: 1.1rem;
    color: #4CAF50;
}

.email-note {
    color: #888;
    font-size: 0.9rem;
}

.extra-content {
    padding: 50px 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid #333;
    border-radius: 12px;
    background: #1A1A1A;
    padding: 14px 16px;
}

.faq-item summary {
    cursor: pointer;
    color: #FFFFFF;
    font-weight: 600;
}

.faq-item p {
    margin-top: 10px;
    color: #CCCCCC;
}

.reviews-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    align-items: start;
}

.google-widget {
    background: #1A1A1A;
    border: 2px solid #2E7D32;
    border-radius: 16px;
    padding: 16px;
}

.google-widget iframe {
    width: 100%;
    min-height: 320px;
    border: 0;
    border-radius: 10px;
    margin-bottom: 14px;
}

.featured-reviews {
    display: grid;
    gap: 14px;
}

.review-card {
    background: #1A1A1A;
    border: 1px solid #333;
    border-left: 4px solid #4CAF50;
    border-radius: 12px;
    padding: 16px;
}

.review-card h4 {
    margin-bottom: 8px;
    color: #4CAF50;
}

.review-meta {
    color: #9e9e9e;
    font-size: 0.85rem;
    margin-bottom: 8px !important;
}

.review-stars {
    color: #ffca28;
    letter-spacing: 2px;
    margin-bottom: 10px !important;
}

.review-card p {
    margin: 0;
}

@media (max-width: 992px) {
    .reviews-wrapper {
        grid-template-columns: 1fr;
    }

    .calculator-grid {
        grid-template-columns: 1fr;
    }

    .trust-bar {
        grid-template-columns: 1fr;
    }
}

/* ================= FLOATING BUTTONS ================= */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.mobile-action-bar {
    display: none;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.floating-btn.tap-feedback {
    transform: scale(0.94);
    opacity: 0.92;
}

/* Hover efekat SAMO na desktopu sa mišem */
@media (hover: hover) and (pointer: fine) {
    .floating-btn:hover {
        transform: translateY(-5px);
        width: 200px;
        justify-content: flex-start;
        padding-left: 20px;
    }
    
    .floating-btn:hover .floating-text {
        display: block;
        animation: fadeInText 0.3s ease;
    }
}

.floating-text {
    display: none;
    margin-left: 15px;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
}

@keyframes fadeInText {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

/* WhatsApp dugme */
.whatsapp-btn {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

/* Phone dugme */
.phone-btn {
    background: linear-gradient(45deg, #4CAF50, #2E7D32);
}

/* Quick rent dugme */
.quick-rent-btn {
    background: linear-gradient(45deg, #ff9800, #ff5722);
}

/* AKTIVAN DODIR NA TELEFONU */
@media (max-width: 768px) {
    .floating-btn:active {
        transform: scale(0.92);
        opacity: 0.9;
        transition: transform 0.1s, opacity 0.1s;
    }
    
    /* Sprečava hover da ostane zaglavljen */
    .floating-btn {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    /* Uklanja hover efekat potpuno na mobilnim */
    .floating-btn:hover,
    .floating-btn:focus,
    .floating-btn:focus-within {
        transform: none !important;
        width: 60px !important;
        justify-content: center !important;
        padding-left: 0 !important;
    }
    
    .floating-btn:hover .floating-text,
    .floating-btn:focus .floating-text,
    .floating-btn:focus-within .floating-text {
        display: none !important;
    }
}

/* Fix za iOS/Safari */
@supports (-webkit-touch-callout: none) {
    .floating-btn {
        cursor: pointer;
    }
}

/* ================= FOOTER ================= */
.footer {
    background: #0D0D0D;
    padding: 80px 0 30px;
    border-top: 2px solid #2E7D32;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: #4CAF50;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem !important;
    font-weight: 900 !important;
    color: #4CAF50 !important;
}

.footer-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #CCCCCC;
}

.footer-phone, .footer-location, .footer-whatsapp {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    color: #FFFFFF;
}

.footer-phone i, .footer-location i {
    color: #4CAF50;
}

.footer-whatsapp i {
    color: #25D366;
}

.footer-whatsapp a {
    color: #25D366;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-whatsapp a:hover {
    color: #4CAF50;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
    color: #CCCCCC;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #4CAF50;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-bottom strong {
    color: #4CAF50;
}

.seo-text {
    max-width: 800px;
    margin: 20px auto 0;
    color: #888 !important;
    font-size: 0.85rem !important;
    line-height: 1.5;
}

/* ================= SUCCESS MODAL ================= */
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2001;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.success-content {
    background: #1A1A1A;
    border: 2px solid #4CAF50;
    border-radius: 20px;
    padding: 50px 40px;
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    margin-bottom: 15px;
    color: #4CAF50;
}

.success-content p {
    margin-bottom: 30px;
    color: #CCCCCC;
}

/* ================= WHATSAPP MODAL ================= */
.whatsapp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2002;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.whatsapp-content {
    background: #1A1A1A;
    border: 2px solid #25D366;
    border-radius: 20px;
    padding: 50px 40px;
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.whatsapp-icon {
    font-size: 4rem;
    color: #25D366;
    margin-bottom: 20px;
}

.whatsapp-content h3 {
    margin-bottom: 15px;
    color: #25D366;
}

.whatsapp-content p {
    margin-bottom: 30px;
    color: #CCCCCC;
}

.whatsapp-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.whatsapp-buttons .btn {
    min-width: 150px;
}

/* ================= NOTIFIKACIJA ================= */
.car-selected-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
    align-items: center;
    gap: 10px;
    animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ================= MAP STYLES ================= */
.static-map {
    background: #1a1a1a;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 2px solid #2E7D32;
}

.static-map img {
    border-radius: 8px;
    display: block;
}

.map-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 20px 0;
}

@media (min-width: 768px) {
    .map-buttons {
        grid-template-columns: repeat(3, 1fr);
    }
}

.map-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    padding: 12px 15px;
    font-size: 0.9rem;
}

.map-btn.apple-maps {
    background: #000000;
    color: white;
}

.map-btn.apple-maps:hover {
    background: #333333;
}

.map-note {
    text-align: center;
    padding: 15px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
    margin-top: 20px;
    color: #4CAF50;
    border-left: 4px solid #4CAF50;
}

.map-note i {
    font-size: 1.2rem;
    margin-right: 10px;
}

/* ================= MAP PLACEHOLDER ================= */
.map-placeholder {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 2px solid #4CAF50;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    color: white;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4CAF50, #2E7D32);
}

.map-placeholder i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.map-placeholder h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #4CAF50;
}

.map-placeholder p {
    color: #CCCCCC;
    margin: 5px 0;
    font-size: 1.1rem;
}

.map-coordinates {
    margin-top: 20px;
    padding: 10px 20px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4CAF50;
    font-weight: 600;
}

.map-coordinates i {
    font-size: 1.2rem;
    animation: none;
    margin: 0;
}

/* ================= RESPONSIVE FIX ZA TELEFON ================= */
@media (max-width: 768px) {
    /* FIX ZA PRAZNINU SA DESNE STRANE */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        position: relative;
    }
    
    .container {
        width: 100%;
        padding: 0 15px;
        margin: 0 auto;
    }
    
    /* FIX ZA HERO SEKCIJU */
    .hero {
        min-height: 60vh;
        padding: 80px 0 30px;
    }
    
    .hero-content {
        padding: 0 15px;
        width: 100%;
    }
    
    .hero-highlights {
        width: 100%;
        padding: 0 10px;
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* FIX ZA RENT GRID */
    .rent-grid {
        width: 100%;
        padding: 0 5px;
        grid-template-columns: 1fr;
    }
    
    .rent-card {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .rent-card img {
        height: 200px;
        object-fit: cover;
        background: #1a1a1a;
        padding: 0;
    }
    
    /* FIX ZA FORMU - REZERVACIJE */
    .reservation-wrapper {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        padding: 0 5px !important;
        box-sizing: border-box !important;
    }
    
    .reservation-form {
        padding: 25px 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .reservation-info {
        padding: 25px 15px !important;
        width: 100% !important;
        margin-top: 20px !important;
        box-sizing: border-box !important;
    }
    
    /* FIX ZA CONTACT */
    .contact-wrapper {
        width: 100%;
        padding: 0 10px;
        grid-template-columns: 1fr !important;
    }
    
    .contact-card {
        padding: 20px 15px;
        width: 100% !important;
    }
    
    /* FIX ZA MAPU */
    .map-container {
        padding: 10px;
        width: 100%;
    }
    
    .map-container iframe {
        height: 300px;
        width: 100%;
    }
    
    /* FIX ZA EMAIL SUPPORT */
    .email-support {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 25px 15px !important;
        box-sizing: border-box !important;
    }
    
    .email-address {
        word-break: break-all !important;
        font-size: 1rem !important;
        padding: 10px 15px !important;
    }
    
    /* FIX ZA FLOATING BUTTONS */
    .floating-buttons {
        right: 15px;
        bottom: 16px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .floating-btn:active {
        transform: scale(0.92);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-buttons {
        grid-template-columns: 1fr !important;
    }
    
    /* FIX ZA DASHBOARD SEKCJIE */
    .dashboard-section {
        padding: 40px 0 !important;
    }
    
    /* NOTIFIKACIJA NA TELEFONU */
    .car-selected-notification {
        top: 80px;
        right: 10px;
        left: 10px;
        text-align: center;
    }
    
    /* MODALI NA TELEFONU */
    .success-content,
    .whatsapp-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .whatsapp-buttons {
        flex-direction: column;
    }
    
    .whatsapp-buttons .btn {
        width: 100%;
    }
    
    /* MAP BUTTONS */
    .map-buttons {
        grid-template-columns: 1fr !important;
    }
    
    .map-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* PRICING TABLES */
    .price-table {
        grid-template-columns: 1fr;
    }

    body {
        padding-bottom: 0;
    }
}

/* DODATNI FIX ZA VEOMA MALE EKRANE */
@media (max-width: 480px) {
    .hero-logo {
        padding: 0 10px;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .section-title {
        font-size: 1.6rem;
        padding: 0 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .price-table {
        grid-template-columns: 1fr;
    }
    
    .floating-buttons {
        right: 10px;
        bottom: 10px;
    }
    
    .contact-callout .phone-number {
        font-size: 1.5rem;
    }

    .phone-number-large {
        font-size: 1.5rem;
    }

    .phone-number-medium {
        font-size: 1.4rem;
    }
    
    .email-contact-form {
        padding: 25px 15px;
    }
}

/* iOS specific fixes */
@supports (-webkit-touch-callout: none) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px !important;
    }
    
    .hero {
        min-height: -webkit-fill-available;
    }
}

/* FIX ZA PLAVE TELEFON BROJEVE NA TELEFONU */
a[href^="tel:"] {
    color: #FFFFFF !important;
    text-decoration: none;
}

a[href^="tel:"]:hover {
    color: #4CAF50 !important;
}

/* ================= ANIMATIONS ================= */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ================= VEHICLE DETAILS MODAL ================= */
.vehicle-details-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2003;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.modal-content {
    background: #1A1A1A;
    border: 2px solid #4CAF50;
    border-radius: 20px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: #1A1A1A;
    z-index: 1;
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    color: #4CAF50;
    margin: 0;
    font-size: 1.8rem;
}

.modal-close {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.vehicle-details-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 992px) {
    .vehicle-details-container {
        grid-template-columns: 1fr 1fr;
    }
}

.vehicle-main-image {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #2E7D32;
    align-self: start;
}

.vehicle-main-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.vehicle-main-image:hover img {
    transform: scale(1.02);
}

.vehicle-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.vehicle-specs-details h3 {
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.price-box {
    font-size: 2.2rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
}

.price-box span {
    font-size: 1.2rem;
    color: #CCCCCC;
    margin-left: 5px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid #333;
}

.spec-item i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.spec-item span {
    color: #FFFFFF;
    font-weight: 500;
}

.vehicle-description {
    margin-bottom: 30px;
}

.vehicle-description h4 {
    color: #4CAF50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.vehicle-description p {
    color: #CCCCCC;
    line-height: 1.8;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid #4CAF50;
}

.vehicle-features {
    margin-bottom: 30px;
}

.vehicle-features h4 {
    color: #4CAF50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.features-grid span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 0.9rem;
}

.features-grid span i {
    color: #4CAF50;
}

.rental-conditions {
    margin-bottom: 30px;
}

.rental-conditions h4 {
    color: #4CAF50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.rental-conditions ul {
    list-style: none;
    padding-left: 0;
}

.rental-conditions li {
    color: #CCCCCC;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.rental-conditions li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .modal-buttons {
        flex-direction: row;
    }
}

.modal-buttons .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* VIEW DETAILS BUTTON STYLING */
.view-details {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 1px solid #4CAF50;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    margin-top: 10px;
    width: 100%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.view-details:hover {
    background: rgba(76, 175, 80, 0.2);
    transform: translateY(-2px);
}

/* SECONDARY PHONE FLOATING BUTTON */
.floating-btn.secondary-phone {
    background: linear-gradient(45deg, #2E7D32, #388E3C);
}

.floating-btn.secondary-phone:hover {
    background: linear-gradient(45deg, #388E3C, #2E7D32);
}

/* RESPONSIVE MODAL FIXES */
@media (max-width: 768px) {
    .modal-content {
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .vehicle-details-container {
        gap: 25px;
    }
    
    .price-box {
        font-size: 1.8rem;
        padding: 12px;
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
