:root {
    /* Colors */
    --primary: #2d5a27;
    --primary-light: #4a7c44;
    --primary-dark: #1e3d1a;
    --accent: #d4a373;
    --accent-light: #e9edc9;
    --text: #333533;
    --text-muted: #666;
    --bg: #ffffff;
    --bg-secondary: #f8f9fa;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
}

h1, h2, h3, .logo-text {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: var(--section-padding);
}

.secondary-bg {
    background-color: var(--bg-secondary);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition);
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
}

header.scrolled {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

header.scrolled .logo-text {
    color: var(--primary);
}

.logo-text span {
    color: var(--accent-light);
    transition: var(--transition);
}

header.scrolled .logo-text span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
}

header.scrolled .nav-links a {
    color: var(--text);
}

header.scrolled .nav-links a.btn {
    color: var(--white);
}

.nav-links a:hover {
    color: var(--accent-light);
}

header.scrolled .nav-links a:hover {
    color: var(--primary);
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    cursor: pointer;
    padding: 5px 0;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
    transition: var(--transition);
}

header.scrolled .lang-current {
    color: var(--text);
}

.lang-current img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.lang-current i {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.lang-switcher.active .lang-current i {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    min-width: 150px;
    list-style: none;
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
}

.lang-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.lang-dropdown li {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.lang-dropdown li:hover {
    background: var(--bg-secondary);
    color: var(--primary);
}

.lang-dropdown li img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(45, 90, 39, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('../Pictures/aqualuna_hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid #eee;
    text-align: center;
}

.feature-card.highlight {
    background: var(--primary-light);
    color: var(--white);
    border: none;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(45, 90, 39, 0.2);
}

.feature-card.highlight i {
    color: var(--accent-light);
}

.features-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.thermal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.thermal-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.thermal-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.thermal-item .img-wrapper {
    height: 250px;
    overflow: hidden;
}

.thermal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.thermal-item:hover img {
    transform: scale(1.1);
}

.thermal-item .content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.thermal-item h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.thermal-benefit {
    margin-top: 20px;
    padding: 20px;
    background: var(--primary-light);
    color: var(--white);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thermal-benefit i {
    color: var(--accent-light);
    width: 24px;
    height: 24px;
}

.thermal-benefit strong {
    font-size: 1rem;
    line-height: 1.4;
}

.thermal-benefit small {
    font-size: 0.8rem;
    opacity: 0.9;
}

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

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Surroundings Grid */
.surroundings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.surroundings-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.surroundings-item:hover {
    transform: scale(1.02);
}

.surroundings-item .img-wrapper {
    height: 250px;
    overflow: hidden;
}

.surroundings-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.surroundings-item:hover img {
    transform: scale(1.1);
}

.surroundings-item .content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.surroundings-item p {
    margin-bottom: 20px;
    flex-grow: 1;
}

.experience-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.experience-link:hover {
    color: var(--accent);
    gap: 12px;
}

.experience-link i {
    width: 16px;
    height: 16px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
    cursor: pointer;
}

/* Booking Layout */
.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.calendar-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* FullCalendar Customization */
.fc {
    font-family: inherit;
}

.fc .fc-toolbar-title {
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
}

.fc .fc-button-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.fc .fc-button-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.fc .fc-daygrid-day.fc-day-today {
    background-color: rgba(45, 90, 39, 0.05);
}

.fc .fc-highlight {
    background-color: rgba(212, 163, 115, 0.3);
}

#calendar {
    min-height: 400px;
    margin-bottom: 16px;
    background: #fff;
    border-radius: 12px;
}

/* Legenda */
.calendar-legend {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    display: inline-block;
    flex-shrink: 0;
}

.legend-busy     { background: #c0392b; }
.legend-selected { background: #2d5a27; }

/* Namig za klik */
.calendar-hint {
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-style: italic;
}

/* Ozadje ne sme "pojesti" kliков – dateClick mora priti do celice */
.fc-bg-event {
    pointer-events: none !important;
}

/* Kazalec na prihodnje celice */
.fc .fc-daygrid-day:not(.fc-day-past) {
    cursor: pointer;
}

/* Zelena selekcija gosta – diagonala na prvi/zadnji dan */
.selection-event.fc-event-start:not(.fc-event-end) {
    clip-path: inset(1px 0px 1px 50%) !important;
}
.selection-event.fc-event-end:not(.fc-event-start) {
    clip-path: inset(1px 50% 1px 0px) !important;
}

.calendar-wrapper h3 {
    margin-bottom: 30px;
    text-align: center;
}

.calendar-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}

.booking-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.booking-form-wrapper h3 {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

input, select, textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}

/* Datumski input (readonly, izpolni ga klik na koledar) */
.date-display {
    background: #f9f9f9;
    cursor: default;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: 0.02em;
}
.date-display:focus {
    border-color: #ddd;
    box-shadow: none;
}
.date-display::placeholder {
    color: #bbb;
    font-weight: 400;
    letter-spacing: 0;
}

/* Cenovni okvirček */
.price-box {
    background: linear-gradient(135deg, #f0f7ee, #e8f4e5);
    border: 1px solid rgba(45, 90, 39, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    animation: fadeIn 0.4s ease;
}
@keyframes fadeIn { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:none; } }

.price-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}
.price-nights {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.75;
}
.price-box-total {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}
.price-breakdown {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3px 12px;
    font-size: 0.82rem;
    color: #555;
    border-top: 1px dashed rgba(45,90,39,0.2);
    padding-top: 10px;
    margin-bottom: 8px;
    max-height: 120px;
    overflow-y: auto;
}
.price-breakdown .bd-date { color: #444; }
.price-breakdown .bd-price { text-align: right; font-weight: 600; color: var(--primary-dark); }
.price-note {
    font-size: 0.78rem;
    color: #888;
    margin: 0;
    font-style: italic;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    color: var(--white);
    margin-bottom: 20px;
    display: block;
}

.footer-brand p {
    opacity: 0.7;
}

.footer-grid h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--white);
    background: rgba(255,255,255,0.1);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons i, 
.social-icons svg {
    width: 20px;
    height: 20px;
    color: var(--white);
    stroke: var(--white);
    stroke-width: 2;
    fill: none;
    display: block;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--white);
    transform: translateY(-3px);
}

.social-icons a:hover i,
.social-icons a:hover svg {
    color: var(--primary-dark);
    stroke: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.5;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-in-delay {
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

.mobile-menu-toggle i {
    color: var(--white);
    transition: var(--transition);
}

header.scrolled .mobile-menu-toggle i {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .booking-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        padding: 100px 40px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 999;
        gap: 20px;
        align-items: flex-start;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--text) !important;
        font-size: 1.2rem;
        width: 100%;
    }

    .lang-switcher {
        width: 100%;
        padding: 10px 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }

    .lang-current {
        color: var(--text) !important;
        justify-content: space-between;
    }

    .lang-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        display: none;
        width: 100%;
    }

    .lang-switcher.active .lang-dropdown {
        display: block;
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 1000;
    }
    .section-header h2 { font-size: 2.2rem; }
    .hero { height: 80vh; }
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
    padding: 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(0,0,0,0.05);
    color: var(--primary);
}

.modal-content h2 {
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-size: 1.8rem;
}

.modal-body {
    font-size: 1rem;
    color: var(--text);
}

.modal-body h3 {
    margin: 20px 0 10px;
    font-size: 1.2rem;
    color: var(--primary);
    font-family: 'Inter', sans-serif;
}

.modal-body p {
    margin-bottom: 15px;
}

/* Checkbox group */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
    cursor: pointer;
}

.checkbox-group label {
    font-weight: normal;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 1500;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    flex: 1;
    max-width: 800px;
    margin-right: 20px;
}

.cookie-content p {
    font-size: 0.9rem;
    margin: 0;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .cookie-content {
        margin-right: 0;
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero-badge i {
    width: 18px;
    height: 18px;
}

.booking-contact-direct {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-contact-direct i {
    color: var(--primary);
    width: 18px;
    height: 18px;
}

.booking-contact-direct a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.booking-contact-direct a:hover {
    color: var(--accent);
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--accent-light);
}

/* Gift Voucher Page Styles */
.gift-page .voucher-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../Pictures/darilni_bon.png');
    background-size: cover;
    background-position: center;
    padding: 150px 0 80px;
    color: var(--white);
    text-align: center;
}

.gift-page .voucher-hero h1 {
    font-size: 3.5rem;
    margin: 20px 0;
    font-family: 'Playfair Display', serif;
}

.gift-page .voucher-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-item i {
    width: 44px;
    height: 44px;
    color: var(--primary);
    background: var(--accent-light);
    padding: 10px;
    border-radius: 12px;
    flex-shrink: 0;
}

.benefit-item h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.voucher-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

.voucher-card:hover {
    transform: scale(1.02) rotate(1deg);
}

.voucher-card img {
    width: 100%;
    display: block;
}

.inquiry-card {
    background: var(--white);
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    max-width: 900px;
    margin: 0 auto;
}

.quick-form {
    margin-top: 40px;
}

.quick-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

@media (max-width: 992px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
    .gift-page .voucher-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .quick-form .form-row {
        grid-template-columns: 1fr;
    }
    .inquiry-card {
        padding: 40px 20px;
    }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-spin {
    animation: spin 1s linear infinite;
    display: inline-block;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 20px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Subpage Specific Styles */
.faq-page .faq-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../Pictures/hero.png');
    background-size: cover;
    background-position: center;
    padding: 150px 0 80px;
    color: var(--white);
}

.faq-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #eee;
    height: 100%;
}

.faq-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.faq-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.faq-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--primary-dark);
    color: var(--primary-dark);
}

.btn-outline-dark:hover {
    background: var(--primary-dark);
    color: var(--white);
}

@media (max-width: 768px) {
    .cta-btns {
        flex-direction: column;
    }
}


.booking-contact-direct {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-weight: 500;
    white-space: nowrap;
}

.booking-contact-direct a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}
