@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;700&family=Nunito:wght@300;400;600&display=swap');

:root {
    --primary-bg: #0A1628;
    --secondary-bg: #1A2332;
    --accent-gold: #C9A961;
    --text-primary: #E8E9ED;
    --text-secondary: #A8AAB3;
    --card-bg: #141D2E;
    --border-color: #2A3544;
    --hover-gold: #D4B972;
    --success: #4A7C59;
    --overlay: rgba(255, 255, 255, 0.05);
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Nunito', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(10, 22, 40, 0.98), rgba(10, 22, 40, 0.95));
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo {
    height: 45px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.lang-link.active {
    color: var(--accent-gold);
}

.lang-link:hover {
    color: var(--hover-gold);
}

.lang-separator {
    color: var(--border-color);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 20px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background-color: var(--card-bg);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--secondary-bg);
    z-index: 2000;
    padding: 20px;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-sidebar.active {
    left: 0;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-sidebar-header .logo {
    height: 40px;
}

.close-mobile {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-mobile:hover {
    color: var(--accent-gold);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 16px;
    padding: 10px 15px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--accent-gold);
    border-left-color: var(--accent-gold);
    background-color: var(--overlay);
}

.mobile-lang-switcher {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-lang-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 15px;
    transition: color 0.3s ease;
}

.mobile-lang-link:hover {
    color: var(--hover-gold);
}

.mobile-lang-active {
    color: var(--accent-gold);
    padding: 8px 15px;
    font-weight: 600;
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/hero-antigua.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(26, 35, 50, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-gold);
    color: var(--primary-bg);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--hover-gold);
    border-color: var(--hover-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: var(--accent-gold);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background-color: var(--accent-gold);
    color: var(--primary-bg);
    transform: translateY(-2px);
}

.regions-section,
.details-section,
.guidance-section,
.contact-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.masonry-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.masonry-card.card-tall {
    grid-row: span 2;
}

.masonry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.masonry-card.card-tall .card-image {
    height: 400px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.masonry-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 30px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.card-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-button {
    background-color: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.card-button:hover {
    background-color: var(--accent-gold);
    color: var(--primary-bg);
}

.region-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.region-tab {
    background-color: var(--card-bg);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.region-tab:hover {
    background-color: var(--secondary-bg);
    color: var(--text-primary);
    border-color: var(--accent-gold);
}

.region-tab.active {
    background-color: var(--accent-gold);
    color: var(--primary-bg);
    border-color: var(--accent-gold);
}

.region-details-container {
    position: relative;
}

.region-detail {
    display: none;
    animation: fadeIn 0.5s ease;
}

.region-detail.active {
    display: block;
}

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

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.detail-column {
    background-color: var(--card-bg);
    padding: 35px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.detail-column h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-column h3 i {
    font-size: 24px;
}

.detail-column p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.guidance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.guidance-card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guidance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.guidance-icon {
    width: 70px;
    height: 70px;
    background-color: var(--secondary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 2px solid var(--accent-gold);
}

.guidance-icon i {
    font-size: 32px;
    color: var(--accent-gold);
}

.guidance-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 18px;
}

.guidance-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
    font-size: 36px;
}

.contact-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

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

.contact-item i {
    font-size: 24px;
    color: var(--accent-gold);
    width: 30px;
}

.contact-item-text h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.contact-item-text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.contact-form-container {
    background-color: var(--card-bg);
    padding: 45px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background-color: var(--primary-bg);
}

.iti,
#phone {
    width: 100%;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--accent-gold);
}

.checkbox-group label {
    font-size: 14px;
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: normal;
    font-family: var(--font-body);
}

.checkbox-group a {
    color: var(--accent-gold);
    text-decoration: none;
}

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

.footer {
    background-color: var(--secondary-bg);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-column p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-lang-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-lang-switcher a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-lang-switcher a:hover {
    color: var(--accent-gold);
}

.footer-lang-switcher .active {
    color: var(--accent-gold);
    font-weight: 600;
}

.policy-container {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
}

.policy-header h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.policy-date {
    font-size: 16px;
    color: var(--accent-gold);
    font-weight: 600;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    background-color: var(--card-bg);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.policy-section h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.policy-section h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 25px 0 15px;
}

.policy-section p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-section ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.policy-section li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
}

.policy-section a {
    color: var(--accent-gold);
    text-decoration: none;
}

.policy-section a:hover {
    color: var(--hover-gold);
    text-decoration: underline;
}

.contact-box {
    background-color: var(--secondary-bg);
    padding: 25px;
    border-radius: 6px;
    border-left: 4px solid var(--accent-gold);
    margin-top: 20px;
}

.contact-box p {
    margin-bottom: 10px;
}

.cookie-table {
    background-color: var(--secondary-bg);
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
}

.cookie-table p {
    margin-bottom: 8px;
}

.cookie-table ul {
    margin-left: 0;
    list-style: none;
}

.cookie-table li {
    padding-left: 0;
}

.policy-footer {
    text-align: center;
    margin-top: 50px;
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: var(--card-bg);
    padding: 60px 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon i {
    font-size: 50px;
    color: var(--text-primary);
}

.thanks-content h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-submessage {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 35px;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.thanks-contact {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.thanks-contact p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.thanks-contact strong {
    color: var(--text-primary);
}

#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-bg);
    border-top: 2px solid var(--accent-gold);
    padding: 25px 20px;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.cookie-banner-text a {
    color: var(--accent-gold);
    text-decoration: none;
}

.cookie-banner-text a:hover {
    color: var(--hover-gold);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 25px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-accept {
    background-color: var(--accent-gold);
    color: var(--primary-bg);
}

.cookie-accept:hover {
    background-color: var(--hover-gold);
}

.cookie-reject {
    background-color: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.cookie-reject:hover {
    background-color: var(--card-bg);
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

.cookie-settings {
    background-color: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.cookie-settings:hover {
    background-color: var(--accent-gold);
    color: var(--primary-bg);
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 22, 40, 0.95);
    z-index: 10000;
    overflow-y: auto;
    padding: 30px 20px;
}

.cookie-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background-color: var(--card-bg);
    max-width: 700px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    position: relative;
}

.cookie-modal-header {
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.cookie-modal-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cookie-modal-close:hover {
    color: var(--accent-gold);
}

.cookie-modal-body {
    padding: 30px;
}

.cookie-category {
    margin-bottom: 25px;
    padding: 20px;
    background-color: var(--secondary-bg);
    border-radius: 6px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category-header h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: 0.4s;
    border-radius: 26px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--accent-gold);
}

input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-category-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cookie-modal-footer {
    padding: 25px 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .masonry-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .detail-grid,
    .guidance-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .masonry-grid {
        grid-template-columns: 1fr;
    }
    
    .masonry-card.card-tall {
        grid-row: span 1;
    }
    
    .masonry-card.card-tall .card-image {
        height: 250px;
    }
    
    .region-selector {
        flex-direction: column;
    }
    
    .region-tab {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-banner-actions {
        justify-content: center;
    }
    
    .policy-section {
        padding: 25px;
    }
    
    .policy-header h1 {
        font-size: 32px;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .thanks-content {
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .btn-primary {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .detail-column {
        padding: 25px;
    }
    
    .guidance-card {
        padding: 30px;
    }
    
    .cookie-modal-content {
        margin: 20px;
    }
    
    .cookie-btn {
        width: 100%;
    }
}