:root {
    --primary: #FFD23F;
    --primary-glow: rgba(255, 210, 63, 0.25);
    --secondary: #F4FF9C;
    --bg-deep: #07160F;
    --bg-forest: #0B1F14;
    --bg-card: rgba(13, 36, 24, 0.62);
    --text-main: #F3F1E6;
    --text-muted: #B8C2B4;
    --border: #1F3A2A;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-blur: blur(12px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    background-image:
        /* Sunlight bloom */
        radial-gradient(circle at 0% 0%, rgba(255, 210, 63, 0.08) 0%, transparent 40%),
        /* Topographic pattern mimic (very subtle) */
        url("data:image/svg+xml,%3Csvg width='400' height='400' viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 100 Q 100 80 200 100 T 400 100 M0 200 Q 150 180 250 200 T 400 200 M0 300 Q 50 280 150 300 T 400 300' fill='none' stroke='%231F3A2A' stroke-width='1' opacity='0.1'/%3E%3C/svg%3E"),
        /* Grain texture overlay */
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 22, 15, 0.85);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border);
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    color: white;
}

.logo span {
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

nav ul a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.6rem 1rem;
    transition: var(--transition);
    border-radius: 4px;
    border: 1px solid transparent;
}

nav ul a:hover {
    color: var(--primary);
    background: rgba(255, 210, 63, 0.05);
    border-color: rgba(255, 210, 63, 0.2);
}

/* Language Switcher */
.lang-switch {
    display: flex;
    gap: 0.5rem;
}

.lang-switch button {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    transition: var(--transition);
}

.lang-switch button.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.lang-switch button:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary);
    color: #000;
    box-shadow: 0 4px 15px var(--primary-glow), inset 0 1px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow), 0 0 10px var(--primary-glow);
    background-color: #ffda62;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(35deg);
    pointer-events: none;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-main);
    backdrop-filter: var(--glass-blur);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 210, 63, 0.05);
}

.hero-whatsapp {
    display: inline-flex !important;
    align-items: center;
    gap: 0.75rem;
}

.wa-icon {
    filter: drop-shadow(0 0 5px rgba(37, 211, 102, 0.4));
    transition: var(--transition);
}

.hero-whatsapp:hover .wa-icon {
    transform: scale(1.1) rotate(5deg);
}

.full-width {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url('../assets/relax.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* This makes the image "slabije vidljivo" */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
}

/* GPS Support Section */
.gps-support-section {
    background-color: var(--bg-dark);
    padding: 120px 0;
}

.gps-support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gps-text-column h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: white;
}

.gps-text-column h2 span {
    color: var(--primary);
    font-weight: 700;
}

.gps-text-column p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.gps-image-column {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    background: var(--bg-card);
    /* Fallback background */
}

.gps-image-placeholder {
    width: 100%;
    height: 100%;
    display: block;
    max-height: 500px;
    /* Limits height while staying responsive */
    object-fit: contain;
    /* Ensures the whole phone/GPS is visible if it's not square */
    background-color: #000;
    transition: var(--transition);
}

.gps-image-column:hover .gps-image-placeholder {
    filter: brightness(1);
}

/* Section Common */
section {
    padding: 100px 0;
}

section:nth-child(even) {
    background-color: var(--bg-forest);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    color: var(--text-main);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
}

.section-subtitle {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: -3rem;
    margin-bottom: 5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: -3rem auto 4rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 500;
}

/* Equipment Showcase */
.equipment-showcase {
    padding: 60px 0 100px;
    text-align: center;
}

.show-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6rem;
    /* Povećan razmak između slika */
}

.equipment-img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Fleet Section */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 400px));
    justify-content: center;
    gap: 4rem;
}

.fleet-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: var(--glass-blur);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.fleet-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 210, 63, 0.1);
}

.fleet-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: grayscale(0.5);
    transition: var(--transition);
}

.fleet-card:hover img {
    filter: grayscale(0);
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
}

.price-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.card-features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.card-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-left: 1.5rem;
    position: relative;
}

.card-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Featured Fleet Card */
.fleet-featured {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: var(--glass-blur);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.fleet-featured:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 210, 63, 0.1);
}

.featured-image {
    position: relative;
    flex: 0 0 45%;
    min-width: 300px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.premium-tag {
    position: absolute;
    top: 20px;
    left: -10px;
    z-index: 10;
    background: var(--primary);
    color: #000;
    padding: 0.5rem 1.5rem;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    transform: skewX(-15deg);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.premium-tag span {
    display: block;
    transform: skewX(15deg);
    /* Counter-skew text to keep it straight */
}

.premium-tag::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    border-left: 10px solid transparent;
    border-top: 10px solid #b38b00;
    /* Darker yellow for the fold effect */
}

.featured-image img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    object-position: center;
    filter: grayscale(0.1);
    transition: var(--transition);
}

.fleet-featured:hover .featured-image img {
    filter: grayscale(0);
    transform: scale(1.02);
}

.featured-content {
    flex: 1;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-price {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.02em;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.featured-price br {
    display: block;
    margin-bottom: 0.5rem;
    content: "";
}

.price-label {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-value {
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(255, 210, 63, 0.3);
}

.featured-description {
    margin-bottom: 2rem;
}

.featured-description p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.featured-description p span {
    font-size: 1.3rem;
    min-width: 25px;
}

.featured-description strong {
    color: var(--primary);
}

@media (max-width: 850px) {
    .fleet-featured {
        flex-direction: column;
    }

    .featured-image {
        min-width: 100%;
        height: 400px;
    }

    .featured-content {
        padding: 2rem;
    }
}

/* Private Tours Section */
.private-tours {
    padding-top: 150px;
    /* Account for fixed header */
}

.private-tours .container {
    max-width: 1400px;
}

.private-tours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.tour-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: var(--glass-blur);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 210, 63, 0.05);
}

.tour-card img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
}

.tour-card:nth-child(2) img {
    object-position: 80% center;
}

.tour-card h3 {
    padding: 2rem 2.5rem;
    font-size: 1.8rem;
    color: var(--primary);
    border-bottom: 1px solid var(--border);
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 220px;
}

.tour-pricing {
    margin-top: 1.25rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.pricing-header {
    background: rgba(255, 210, 63, 0.1);
    padding: 0.8rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.pricing-header .duration {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}

.pricing-header .exclusivity {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.02em;
}

.pricing-body {
    padding: 0.25rem 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 1.25rem;
    transition: var(--transition);
}

.price-row:not(:last-child) {
    border-bottom: 1px solid rgba(31, 58, 42, 0.6);
}

.price-row:hover {
    background: rgba(255, 210, 63, 0.05);
}

.price-row .people {
    font-size: 0.95rem;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-row .price {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 800;
    text-shadow: 0 0 10px var(--primary-glow);
}

.tour-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-content p {
    color: var(--text-main);
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0.01em;
    margin-bottom: 1.5rem;
}

.tour-content .hero-whatsapp {
    margin-top: 0 !important;
}

.privacy-badge {
    margin-top: auto;
    width: 100%;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    position: relative;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
}

.privacy-badge::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: 0 0 10px var(--primary-glow);
}

/* Driving Note */
.driving-note {
    margin-top: 5rem;
    background: rgba(255, 210, 63, 0.03);
    border: 1px solid rgba(255, 210, 63, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    backdrop-filter: var(--glass-blur);
    position: relative;
    overflow: hidden;
}

.driving-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
}

.note-icon {
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.note-content h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.note-content p {
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.8;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .driving-note {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
        margin-top: 3rem;
    }

    .note-icon {
        font-size: 2rem;
    }
}

/* Trust Section */
.trust {
    background: var(--industrial-grey);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.trust-item .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.trust-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.trust-item p {
    color: var(--text-muted);
}

/* Experience Section Styles */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

/* Removed .experience-content as it's no longer needed in the new grid */

.exp-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3.5rem 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    height: 100%;
    transition: var(--transition);
    backdrop-filter: var(--glass-blur);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.exp-item:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 210, 63, 0.05);
}

.exp-icon {
    font-size: 2.5rem;
    background: rgba(255, 210, 63, 0.08);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 210, 63, 0.2);
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(255, 210, 63, 0.1));
}

.exp-text h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.exp-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Obsolete placeholder styles removed */

/* Pricing Table */
.pricing-table {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row.highlight {
    background: rgba(255, 87, 51, 0.1);
    border-left: 4px solid var(--primary);
}

.price {
    color: var(--primary);
    font-weight: 700;
}

/* Booking Form */
/* Booking Section Layout */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Booking WhatsApp */
.whatsapp-booking {
    text-align: center;
    background: var(--bg-card);
    padding: 3rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: var(--transition);
    backdrop-filter: var(--glass-blur);
}

.whatsapp-booking:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 210, 63, 0.1);
}

.whatsapp-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-main);
    gap: 1.5rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.whatsapp-icon-wrapper {
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    box-shadow: 0 0 20px var(--primary-glow);
    transition: var(--transition);
}

.whatsapp-link:hover .whatsapp-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.booking-notice {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.booking-notice strong {
    color: var(--primary);
}

/* Start Point Section Styles */
.start-point {
    background-color: var(--bg-forest);
}

.start-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.start-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.start-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.start-icon {
    font-size: 2rem;
    background: rgba(255, 210, 63, 0.08);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 210, 63, 0.2);
    flex-shrink: 0;
}

.start-text h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.start-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.start-note {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--glass-blur);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.start-note:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.start-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
}

.note-inner h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 1rem;
}

.note-inner p {
    color: var(--text-main);
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

@media (max-width: 968px) {
    .start-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .start-note {
        padding: 2rem;
    }
}

/* Footer */
footer {
    padding: 80px 0 20px;
    background: #04100b;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 50px;
}

.footer-links h4,
.footer-map h4 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.socials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.socials a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.socials a:hover {
    color: white;
}



.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .gps-support-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .gps-text-column h2 {
        font-size: 2.2rem;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .private-tours-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tour-card img {
        height: 400px;
    }

    .tour-card h3 {
        padding: 1.5rem;
        font-size: 1.5rem;
        min-height: auto;
    }

    .tour-details-badge {
        width: 100%;
        justify-content: center;
        padding: 0.6rem 1rem;
        gap: 0.75rem;
    }

    .tour-details-badge .price-label {
        font-size: 0.9rem;
    }

    .tour-details-badge .price-value {
        font-size: 1.4rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    nav {
        justify-content: center;
    }

    nav ul {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }

    section {
        padding: 60px 0;
    }

    .tour-details-badge {
        gap: 0.5rem;
        padding: 0.5rem 0.8rem;
    }

    .tour-details-badge .price-label {
        font-size: 0.8rem;
    }

    .tour-details-badge .price-value {
        font-size: 1.2rem;
    }

    .tour-details-badge .max-people {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
        margin-left: 0;
    }
}

/* WhatsApp Vertical Button */
.whatsapp-vertical {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: #000;
    padding: 1.5rem 0.6rem;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    z-index: 9999;
    border-radius: 8px 0 0 8px;
    box-shadow: -5px 0 20px var(--primary-glow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 2px solid rgba(0, 0, 0, 0.1);
}

.whatsapp-vertical:hover {
    padding-right: 1.2rem;
    background: #ffda62;
    box-shadow: -8px 0 30px var(--primary-glow);
}

.whatsapp-vertical span {
    transform: rotate(180deg);
    /* Adjust rotation if needed for readability */
}

@media (max-width: 480px) {
    .whatsapp-vertical {
        padding: 1rem 0.4rem;
        font-size: 0.7rem;
    }
}