:root {
    --primary-dark: #0d1117;
    --secondary-dark: #1a1a2e;
    --accent-neon: #58a6ff;
    --neon-blue: #00d9ff;
    --neon-pink: #ff6b6b;
    --text-light: #ffffff;
    --text-gray: #8b949e;
    --text-muted: #6e7681;
    --gradient-primary: linear-gradient(135deg, #58a6ff 0%, #00d9ff 100%);
    --gradient-dark: linear-gradient(135deg, #0d1117 0%, #1a1a2e 100%);
    --shadow-neon: 0 0 20px rgba(88, 166, 255, 0.3);
    --shadow-glow: 0 0 40px rgba(0, 217, 255, 0.4);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.luxury-nav {
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(88, 166, 255, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.navbar-brand-wrapper:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(88, 166, 255, 0.5));
}

.brand-text {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(88, 166, 255, 0.3);
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: var(--text-light) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
}

.custom-toggler {
    border: none;
    width: 30px;
    height: 30px;
    position: relative;
    background: transparent;
    padding: 0;
}

.custom-toggler span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--accent-neon);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(88, 166, 255, 0.5);
}

.custom-toggler:hover span {
    box-shadow: var(--shadow-neon);
}

.luxury-offcanvas {
    background: var(--secondary-dark);
    border-right: 1px solid rgba(88, 166, 255, 0.2);
    backdrop-filter: blur(20px);
}

.offcanvas-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2358a6ff'%3e%3cpath d='m.94.94l14.12 14.12M15.06.94L.94 15.06'/%3e%3c/svg%3e") center/1em auto no-repeat;
    filter: drop-shadow(0 0 5px rgba(88, 166, 255, 0.5));
}

.hero-section {
    min-height: 100vh;
    background: var(--gradient-dark);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(13, 17, 23, 0.8) 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(88, 166, 255, 0.1);
    border: 1px solid rgba(88, 166, 255, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(88, 166, 255, 0.2);
    transform: scale(1.05);
    box-shadow: var(--shadow-neon);
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.neon-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(88, 166, 255, 0.5);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-luxury {
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    background: var(--gradient-primary);
    color: var(--text-light);
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00d9ff 0%, #58a6ff 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-luxury:hover::before {
    left: 0;
}

.btn-luxury:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--text-light);
}

.btn-luxury-outline {
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 50px;
    background: transparent;
    border: 2px solid var(--accent-neon);
    color: var(--accent-neon);
    transition: all 0.3s ease;
}

.btn-luxury-outline:hover {
    background: var(--accent-neon);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.floating-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
}

.section-dark {
    background: var(--secondary-dark);
    padding: 100px 0;
}

.section-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    color: var(--primary-dark);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(88, 166, 255, 0.1);
    border: 1px solid rgba(88, 166, 255, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.section-badge.dark {
    background: rgba(13, 17, 23, 0.1);
    border: 1px solid rgba(13, 17, 23, 0.2);
    color: var(--primary-dark);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title.dark {
    color: var(--primary-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-subtitle.dark {
    color: var(--text-muted);
}

.destination-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--primary-dark);
    border: 1px solid rgba(88, 166, 255, 0.1);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.card-image {
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(13, 17, 23, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    transition: all 0.3s ease;
}

.card-content h4 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.card-content p {
    color: rgba(255, 255, 255, 0.651);
    margin-bottom: 1rem;
}

.card-content .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border: none;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.card-content .btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-neon);
}

.experience-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(13, 17, 23, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(13, 17, 23, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 17, 23, 0.1);
    border-color: var(--accent-neon);
}

.experience-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(88, 166, 255, 0.2);
}

.experience-content h3 {
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.experience-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

.luxury-content {
    padding: 2rem 0;
}

.luxury-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.luxury-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(88, 166, 255, 0.05);
    border: 1px solid rgba(88, 166, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(88, 166, 255, 0.1);
    transform: translateX(5px);
    border-color: var(--accent-neon);
}

.feature-item i {
    font-size: 1.2rem;
    color: var(--accent-neon);
    width: 24px;
}

.luxury-image {
    position: relative;
    padding: 2rem 0;
}

.testimonial-card {
    background: rgba(13, 17, 23, 0.05);
    border: 1px solid rgba(13, 17, 23, 0.1);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: var(--text-light);
}

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent-neon);
}

.client-info h5 {
    margin: 0;
    font-weight: 600;
    color: var(--primary-dark);
}

.client-info span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-form-wrapper {
    background: rgba(88, 166, 255, 0.05);
    border: 1px solid rgba(88, 166, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.form-control, .form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(88, 166, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-neon);
    box-shadow: var(--shadow-neon);
    color: var(--text-light);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-floating > label {
    color: var(--text-gray);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    color: var(--accent-neon);
}

.contact-info {
    background: rgba(88, 166, 255, 0.05);
    border: 1px solid rgba(88, 166, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(88, 166, 255, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-light);
    flex-shrink: 0;
}

.contact-details h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.contact-details a, .contact-details p {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent-neon);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(88, 166, 255, 0.2);
}

.luxury-footer {
    background: var(--primary-dark);
    position: relative;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(88, 166, 255, 0.1);
    /* overflow: hidden; */
}

.footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(88, 166, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer-awards {
    margin-top: 1.5rem;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-neon);
    font-size: 0.9rem;
    font-weight: 500;
}

.award-item i {
    font-size: 1.1rem;
}

.footer-links h5 {
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-links a:hover {
    color: var(--accent-neon);
    transform: translateX(3px);
}

.footer-contact h5 {
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.footer-contact-item i {
    color: var(--accent-neon);
    width: 16px;
}

.footer-contact-item a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--accent-neon);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(88, 166, 255, 0.1);
}

.copyright {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9rem;
}

.footer-certifications {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.cert-item i {
    color: var(--accent-neon);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-dark);
    border-top: 1px solid rgba(88, 166, 255, 0.2);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-gray);
    flex: 1;
}

.cookie-text i {
    color: var(--accent-neon);
    font-size: 1.5rem;
}

.cookie-text a {
    color: var(--accent-neon);
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: var(--shadow-neon);
    }
    50% {
        box-shadow: var(--shadow-glow);
    }
}

.privacy-section {
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(13, 17, 23, 0.1);
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h2 {
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    position: relative;
}

.privacy-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.privacy-section h3 {
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin: 2rem 0 1rem 0;
}

.privacy-section h4 {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.privacy-section p {
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.privacy-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.privacy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.privacy-list li strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.privacy-meta {
    margin-top: 2rem;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.privacy-meta .badge {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 25px;
}

.bg-outline-primary {
    background: transparent;
    border: 2px solid var(--accent-neon);
    color: var(--accent-neon);
}

.use-case {
    background: rgba(88, 166, 255, 0.05);
    border: 1px solid rgba(88, 166, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.use-case:hover {
    background: rgba(88, 166, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 166, 255, 0.1);
}

.use-case h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.use-case h4 i {
    color: var(--accent-neon);
    font-size: 1.2rem;
    width: 24px;
}

.security-measures {
    margin: 2rem 0;
}

.security-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(88, 166, 255, 0.03);
    border: 1px solid rgba(88, 166, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.security-item:hover {
    background: rgba(88, 166, 255, 0.08);
    transform: translateX(5px);
}

.security-item i {
    font-size: 1.5rem;
    color: var(--accent-neon);
    width: 30px;
    margin-top: 0.25rem;
}

.security-item h4 {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.security-item p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    background: rgba(88, 166, 255, 0.05);
    border: 1px solid rgba(88, 166, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.right-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
}

.right-item:hover::before {
    left: 0;
}

.right-item:hover {
    background: rgba(88, 166, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(88, 166, 255, 0.15);
}

.right-item h4 {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.right-item p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-section {
    background: rgba(88, 166, 255, 0.03);
    border: 1px solid rgba(88, 166, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
}

.contact-details-privacy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(88, 166, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(88, 166, 255, 0.1);
}

.contact-method h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-method h4 i {
    color: var(--accent-neon);
    font-size: 1.3rem;
}

.contact-method p {
    margin: 0;
    line-height: 1.6;
}

.contact-method a {
    color: var(--accent-neon);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--neon-blue);
    text-decoration: underline;
}

.response-commitment {
    background: rgba(88, 166, 255, 0.1);
    border-left: 4px solid var(--accent-neon);
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--primary-dark);
    font-weight: 500;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-luxury, .btn-luxury-outline {
        width: 100%;
        text-align: center;
    }
    
    .luxury-features {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .footer-certifications {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .section-dark, .section-light {
        padding: 60px 0;
    }
    
    .experience-item {
        flex-direction: column;
        text-align: center;
    }
    
    .experience-icon {
        align-self: center;
    }
    
    .privacy-section {
        padding: 1.5rem 0;
    }
    
    .contact-section {
        padding: 2rem;
    }
    
    .contact-details-privacy {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .security-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .security-item i {
        align-self: center;
    }
}
