:root {
    --gold: #C8A97E;
    --gold-light: #D4B890;
    --gold-dark: #A88B5E;
    --bg-light: #FAFAFA;
    --bg-cream: #F5F3EF;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --text-light: #999999;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 8px 32px rgba(200, 169, 126, 0.25);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --font-display: "Playfair Display", serif;
    --font-body: "Poppins", sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode */
body.dark-mode {
    --bg-light: #121212;
    --bg-cream: #1E1E1E;
    --text-dark: #FFFFFF;
    --text-gray: #E0E0E0;
    --text-light: #B8B8B8;
    --white: #252525;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
}

body.dark-mode footer h4 {
    color: #FFFFFF;
    opacity: 1;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8);
}

body.dark-mode footer::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
}

body.dark-mode .contact-card {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

body.dark-mode .contact-card h3 {
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

body.dark-mode .contact-card p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

body.dark-mode .contact-card i {
    color: var(--gold);
    filter: brightness(1.4);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

body.dark-mode .legal-links a {
    color: rgba(255, 255, 255, 0.9);
}

body.dark-mode .legal-links a:hover {
    color: var(--gold);
}

body.dark-mode .copyright {
    color: rgba(255, 255, 255, 0.7);
}

body.dark-mode .about-content h1,
body.dark-mode .section-title h2,
body.dark-mode .cartas-uno h1,
body.dark-mode .cartas-dos h1,
body.dark-mode .cartas-tres h1,
body.dark-mode .process-step h3 {
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

body.dark-mode .about-content p,
body.dark-mode .section-title p,
body.dark-mode .cartas-uno p,
body.dark-mode .cartas-dos p,
body.dark-mode .cartas-tres p,
body.dark-mode .process-step p {
    color: #E8E8E8;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

img {
    max-width: 100%;
    display: block;
}

/* Navbar */
.navbar {
    padding: 0 3rem;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(0px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: backdrop-filter 0.1s ease-out;
}

body.dark-mode .navbar {
    background: rgba(18, 18, 18, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hamburger Menu - Universal compatibility */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
    z-index: 1002;
    position: relative;
    -webkit-tap-highlight-color: rgba(200, 169, 126, 0.3);
    touch-action: manipulation;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-width: 44px;
    min-height: 44px;
}

.hamburger:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.hamburger:active {
    transform: scale(0.95);
}

.hamburger:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

body.dark-mode .hamburger {
    color: var(--text-dark);
}

body.dark-mode .hamburger:hover {
    color: var(--gold);
}

/* Toggle Buttons */
.navbar-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.toggle-btn {
    background: var(--bg-cream);
    border: 1px solid var(--gold);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toggle-btn:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.toggle-btn i {
    font-size: 1rem;
}

.navbar img {
    width: 150px;
    height: auto;
    transition: var(--transition);
}

.navbar img:hover {
    transform: scale(1.05);
}

.links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.links a {
    text-decoration: none;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.5px;
}

.links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

.links a:hover::before {
    width: 100%;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 120px 5% 60px;
    background: var(--text-dark);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 169, 126, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 3;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 169, 126, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
    z-index: 3;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.about {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 4;
}

.about h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 60px rgba(200, 169, 126, 0.3);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.about h4 {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.4s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about button {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

.about button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}

.about button:hover::before {
    left: 100%;
}

.about button:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(200, 169, 126, 0.5);
}

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

/* Sections */
section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about-section {
    padding: 8rem 5%;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    min-width: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.about-content {
    flex: 1;
    min-width: 0;
}

.about-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-gray);
}

/* Services Section */
.services-section {
    padding: 6rem 5%;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 169, 126, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services-section .section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.services-section .section-title span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.services-section .section-title h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.services-section .section-title p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-zigzag {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Timeline line */
.services-zigzag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    box-shadow: 0 0 20px rgba(200, 169, 126, 0.3);
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item.left {
    flex-direction: row;
}

.service-item.right {
    flex-direction: row-reverse;
}

.service-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(200, 169, 126, 0.4);
    z-index: 2;
    flex-shrink: 0;
    position: relative;
}

.service-item.left .service-number {
    margin-right: 3rem;
}

.service-item.right .service-number {
    margin-left: 3rem;
}

/* Connection dots */
.service-number::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 3px solid var(--gold);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 15px rgba(200, 169, 126, 0.5);
}

.service-item.left .service-number::before {
    right: -3.5rem;
}

.service-item.right .service-number::before {
    left: -3.5rem;
}

.service-content {
    flex: 1;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.service-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

.service-item.left .service-content {
    text-align: left;
}

.service-item.right .service-content {
    text-align: right;
}

.service-content::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
}

.service-item.left .service-content::before {
    left: -20px;
    border-width: 10px 20px 10px 0;
    border-color: transparent var(--white) transparent transparent;
}

.service-item.right .service-content::before {
    right: -20px;
    border-width: 10px 0 10px 20px;
    border-color: transparent transparent transparent var(--white);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-item.left .service-icon {
    margin-right: auto;
}

.service-item.right .service-icon {
    margin-left: auto;
}

.service-content:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
}

.service-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Dark mode for services */
body.dark-mode .services-section {
    background: var(--bg-light);
}

body.dark-mode .service-content {
    background: var(--white);
    border-color: var(--gold);
}

body.dark-mode .service-content h3 {
    color: var(--text-dark);
}

body.dark-mode .service-content p {
    color: var(--text-gray);
}

body.dark-mode .service-item.left .service-content::before {
    border-color: transparent var(--white) transparent transparent;
}

body.dark-mode .service-item.right .service-content::before {
    border-color: transparent transparent transparent var(--white);
}

/* Plans Section */
.plans-section {
    padding: 6rem 5%;
    background: var(--bg-cream);
    position: relative;
    overflow: hidden;
}

.plans-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 169, 126, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.plans-section .section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.plans-section .section-title span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.plans-section .section-title h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.plans-section .section-title p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.plans-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.plan-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    width: 320px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.plan-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gold-light);
}

.plan-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.plan-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--bg-cream);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    font-size: 1rem;
}

.plan-features li i.fa-check {
    color: var(--gold);
}

.plan-features li i.fa-xmark {
    color: var(--text-light);
}

.plan-features li.not-included {
    color: var(--text-light);
}

.plan-features li.not-included span {
    text-decoration: line-through;
}

.plan-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--bg-cream);
    color: var(--text-dark);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.plan-button:hover {
    background: var(--gold);
    color: var(--white);
}

.plan-button.featured {
    background: var(--gold);
    color: var(--white);
}

.plan-button.featured:hover {
    background: var(--gold-dark);
}

/* Dark mode for plans */
body.dark-mode .plans-section {
    background: var(--bg-cream);
}

body.dark-mode .plan-card {
    background: var(--white);
    border-color: var(--gold);
}

body.dark-mode .plan-header h3 {
    color: var(--text-dark);
}

body.dark-mode .plan-features li {
    color: var(--text-dark);
}

body.dark-mode .plan-button {
    background: var(--bg-cream);
    color: var(--text-dark);
}

body.dark-mode .plan-button:hover {
    background: var(--gold);
    color: var(--white);
}

.cartas-uno,
.cartas-dos,
.cartas-tres {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cartas-uno::before,
.cartas-dos::before,
.cartas-tres::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 126, 0.1), transparent);
    transition: var(--transition);
}

.cartas-uno:hover::before,
.cartas-dos:hover::before,
.cartas-tres:hover::before {
    left: 100%;
}

.cartas-uno:hover,
.cartas-dos:hover,
.cartas-tres:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-gold);
}

.cartas-uno h1,
.cartas-dos h1,
.cartas-tres h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.cartas-uno p,
.cartas-dos p,
.cartas-tres p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Process Section */
.process-section {
    padding: 8rem 5%;
    background: var(--bg-cream);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 169, 126, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.section-title span {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.section-title h2 {
    font-size: 3rem;
    margin: 1rem 0;
    color: var(--text-dark);
}

.section-title p {
    color: var(--text-gray);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.process-step {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold-light);
}

.process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.process-step:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
}

.process-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.process-content {
    position: relative;
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.15;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    transition: var(--transition);
    position: absolute;
    top: -10px;
    right: 0;
}

.process-step:hover .process-number {
    opacity: 0.3;
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.process-step p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Dark mode for process */
body.dark-mode .process-section {
    background: var(--bg-cream);
}

body.dark-mode .process-step {
    background: var(--white);
    border-color: var(--gold);
}

body.dark-mode .process-step h3 {
    color: var(--text-dark);
}

body.dark-mode .process-step p {
    color: var(--text-gray);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 5rem 5%;
    text-align: center;
    width: 100%;
    max-width: none;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

footer h4 {
    font-size: 1.4rem;
    line-height: 1.9;
    max-width: 750px;
    margin: 0 auto 3rem;
    font-weight: 400;
    opacity: 1;
    color: #FFFFFF;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-message {
    margin-bottom: 3rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.12);
    padding: 2rem;
    border-radius: var(--radius-md);
    min-width: 220px;
    max-width: 260px;
    transition: var(--transition);
    display: inline-block;
    margin: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
}

.contact-card i {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--gold);
    filter: brightness(1.2);
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.contact-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.contact-card {
    text-decoration: none;
    color: inherit;
}

/* Footer Legal Section */
.footer-legal {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    font-family: var(--font-body);
}

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

.separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-family: var(--font-body);
}

.copyright p {
    margin: 0;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--white);
    padding: 1.5rem 5%;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.cookie-content a:hover {
    color: var(--gold-light);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

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

.cookie-btn.accept:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

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

.cookie-btn.reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

.cookie-btn.settings:hover {
    background: rgba(200, 169, 126, 0.1);
}

/* Dark mode for cookie banner */
body.dark-mode .cookie-banner {
    background: var(--bg-cream);
    color: var(--text-dark);
    border-top: 1px solid var(--gold);
}

body.dark-mode .cookie-content a {
    color: var(--gold);
}

body.dark-mode .cookie-btn.reject {
    color: var(--text-dark);
    border-color: var(--text-dark);
}

body.dark-mode .cookie-btn.reject:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Responsive for cookie banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content p {
        min-width: auto;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 1rem 5%;
    }

    .cookie-content p {
        font-size: 0.85rem;
    }

    .cookie-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* Contact Form Section */
.contact-section {
    padding: 8rem 5%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid var(--bg-cream);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--white);
    color: var(--text-dark);
    transition: var(--transition);
    outline: none;
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
    background: var(--bg-cream);
    border-color: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200, 169, 126, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Date Input Styling */
.date-group {
    position: relative;
    width: 100%;
}

.date-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.date-group label i {
    color: var(--gold);
    font-size: 1.1rem;
}

.date-group input[type="date"] {
    width: 100%;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--bg-cream);
    border-radius: var(--radius-md);
    transition: var(--transition);
    outline: none;
}

body.dark-mode .date-group input[type="date"] {
    background: var(--bg-cream);
    border-color: var(--bg-light);
    color: var(--text-dark);
}

.date-group input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    filter: invert(0.5);
    background: transparent;
}

.date-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    filter: invert(0.3);
}

body.dark-mode .date-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.8);
}

body.dark-mode .date-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    filter: invert(0.6);
}

body.dark-mode .date-group label {
    color: var(--text-dark);
}

.date-group input[type="date"]:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200, 169, 126, 0.1);
}

/* Firefox date picker styling */
.date-group input[type="date"]::-moz-calendar-picker-indicator {
    opacity: 0.6;
    transition: var(--transition);
}

.date-group input[type="date"]::-moz-calendar-picker-indicator:hover {
    opacity: 1;
}

#contact-form button {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    align-self: center;
    position: relative;
    overflow: hidden;
}

#contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: var(--transition);
}

#contact-form button:hover::before {
    left: 100%;
}

#contact-form button:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(200, 169, 126, 0.5);
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {
    /* Mobile Menu */
    .hamburger {
        display: block;
    }

    .links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        box-shadow: var(--shadow-lg);
        z-index: 1001;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        pointer-events: auto;
        -webkit-transform: translateY(-150%);
        -moz-transform: translateY(-150%);
        -ms-transform: translateY(-150%);
        -o-transform: translateY(-150%);
    }

    .links.active {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }

    .links a {
        font-size: 1.1rem;
        padding: 1rem 0;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        border-radius: var(--radius-sm);
        transition: background-color 0.3s ease, color 0.3s ease;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(200, 169, 126, 0.3);
        min-height: 44px; /* Universal minimum touch target */
        min-width: 44px; /* Universal minimum touch target */
        text-decoration: none;
        color: var(--text-dark);
        position: relative;
    }

    .links a:hover {
        background: var(--bg-cream);
        color: var(--gold);
    }

    .links a:active {
        background: var(--gold);
        color: var(--white);
    }

    body.dark-mode .links a {
        color: var(--text-dark);
    }

    body.dark-mode .links a:hover {
        background: rgba(200, 169, 126, 0.1);
    }

    body.dark-mode .links {
        background: var(--bg-cream);
        border-bottom: 1px solid var(--gold);
    }

    /* Navbar */
    .navbar {
        padding: 0 1.5rem;
        height: 70px;
    }

    .navbar img {
        width: 120px;
    }

    .navbar-controls {
        gap: 0.5rem;
    }

    .toggle-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .toggle-btn i {
        font-size: 0.85rem;
    }

    .hero-section {
        padding: 100px 5% 40px;
        min-height: auto;
    }

    .about {
        text-align: center;
        padding: 0 1rem;
    }

    .about h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .about h4 {
        font-size: 0.95rem;
    }

    .about button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .about-section {
        padding: 5rem 5%;
    }

    .about-container {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image img {
        border-radius: var(--radius-md);
    }

    .about-content h1 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 0.95rem;
    }

    .services-section {
        padding: 4rem 5%;
    }

    .services-section .section-title h2 {
        font-size: 2rem;
    }

    .services-zigzag::before {
        left: 30px;
        transform: none;
    }

    .service-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 80px;
    }

    .service-item.left .service-number,
    .service-item.right .service-number {
        position: absolute;
        left: 0;
        margin: 0;
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .service-item.left .service-number::before,
    .service-item.right .service-number::before {
        display: none;
    }

    .service-item.left .service-content,
    .service-item.right .service-content {
        text-align: left;
        width: 100%;
    }

    .service-item.left .service-content::before,
    .service-item.right .service-content::before {
        display: none;
    }

    .service-item.left .service-icon,
    .service-item.right .service-icon {
        margin-right: auto;
    }

    .service-content h3 {
        font-size: 1.2rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }

    .plans-section {
        padding: 4rem 5%;
    }

    .plans-section .section-title h2 {
        font-size: 2rem;
    }

    .plan-card {
        width: 100%;
        max-width: 320px;
    }

    .plan-card.featured {
        transform: none;
    }

    .plan-card.featured:hover {
        transform: translateY(-10px);
    }

    .process-section {
        padding: 4rem 5%;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 0.9rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step {
        padding: 2rem;
    }

    .process-icon {
        width: 60px;
        height: 60px;
    }

    .process-icon i {
        font-size: 1.5rem;
    }

    .process-number {
        font-size: 2.5rem;
    }

    .process-step h3 {
        font-size: 1.2rem;
    }

    .process-step p {
        font-size: 0.9rem;
    }

    .contact-section {
        padding: 5rem 5%;
    }

    .section-title span {
        font-size: 0.75rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
    }

    .date-group label {
        font-size: 0.85rem;
        flex-wrap: wrap;
    }

    .date-group label i {
        font-size: 1rem;
    }

    .date-group input[type="date"] {
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
    }

    #contact-form button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    footer {
        padding: 3rem 5% 2rem;
    }

    .footer-message {
        margin-bottom: 2rem;
    }

    footer h4 {
        font-size: 1rem;
        line-height: 1.6;
    }

    .contact-cards {
        margin-bottom: 2rem;
    }

    .legal-links {
        gap: 0.5rem;
    }

    .legal-links a {
        font-size: 0.8rem;
    }

    .separator {
        font-size: 0.7rem;
    }

    .copyright {
        font-size: 0.75rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-card {
        min-width: 100%;
        max-width: 100%;
        padding: 1.5rem;
    }

    .contact-card h3 {
        font-size: 1rem;
    }

    .contact-card p {
        font-size: 0.85rem;
    }
}


@media (max-width: 480px) {
    /* Mobile Menu adjustments */
    .hamburger {
        font-size: 1.3rem;
        padding: 0.4rem;
    }

    .links {
        top: 60px;
        padding: 1.5rem;
        gap: 1rem;
    }

    .links a {
        font-size: 1rem;
        padding: 0.8rem 0;
    }

    /* Navbar */
    .navbar {
        padding: 0 1rem;
        height: 60px;
    }

    .navbar img {
        width: 100px;
    }

    .navbar-controls {
        gap: 0.3rem;
    }

    .toggle-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }

    .toggle-btn i {
        font-size: 0.75rem;
    }

    .hero-section {
        padding: 80px 5% 30px;
    }

    .about h1 {
        font-size: 1.5rem;
    }

    .about h4 {
        font-size: 0.85rem;
    }

    .about button {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }

    .about-section {
        padding: 4rem 5%;
    }

    .about-content h1 {
        font-size: 1.5rem;
    }

    .about-content p {
        font-size: 0.9rem;
    }

    .services-section {
        padding: 3rem 5%;
    }

    .services-section .section-title h2 {
        font-size: 1.5rem;
    }

    .services-zigzag::before {
        left: 20px;
    }

    .service-item {
        padding-left: 60px;
    }

    .service-item.left .service-number,
    .service-item.right .service-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .service-content h3 {
        font-size: 1rem;
    }

    .service-content p {
        font-size: 0.85rem;
    }

    .plans-section {
        padding: 3rem 5%;
    }

    .plans-section .section-title h2 {
        font-size: 1.5rem;
    }

    .plan-card {
        padding: 2rem;
    }

    .plan-header h3 {
        font-size: 1.5rem;
    }

    .plan-features li {
        font-size: 0.85rem;
    }

    .process-section {
        padding: 3rem 5%;
    }

    .process-section .section-title h2 {
        font-size: 1.5rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .process-icon {
        width: 50px;
        height: 50px;
    }

    .process-icon i {
        font-size: 1.2rem;
    }

    .process-number {
        font-size: 2rem;
    }

    .process-step h3 {
        font-size: 1rem;
    }

    .process-step p {
        font-size: 0.85rem;
    }

    .contact-section {
        padding: 4rem 5%;
    }

    .contact-section .section-title h2 {
        font-size: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }

    .date-group label {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }

    .date-group label i {
        font-size: 0.9rem;
    }

    .date-group input[type="date"] {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }

    #contact-form button {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    footer {
        padding: 2rem 5% 1.5rem;
    }

    .footer-message {
        margin-bottom: 1.5rem;
    }

    footer h4 {
        font-size: 0.9rem;
    }

    .contact-cards {
        margin-bottom: 1.5rem;
        gap: 1rem;
    }

    .legal-links {
        gap: 0.3rem;
        flex-direction: column;
    }

    .legal-links a {
        font-size: 0.75rem;
    }

    .separator {
        display: none;
    }

    .copyright {
        font-size: 0.7rem;
    }

    .contact-card {
        padding: 1.2rem;
    }

    .contact-card h3 {
        font-size: 0.9rem;
    }

    .contact-card p {
        font-size: 0.8rem;
    }
}


@media (max-width: 360px) {
    /* Mobile Menu adjustments */
    .hamburger {
        font-size: 1.2rem;
    }

    .links {
        padding: 1rem;
    }

    .links a {
        font-size: 0.9rem;
    }

    /* Navbar */
    .navbar {
        padding: 0 1rem;
        height: 60px;
    }

    .navbar img {
        width: 90px;
    }

    .navbar-controls {
        display: flex;
    }

    .about h1 {
        font-size: 1.6rem;
    }

    .about h4 {
        font-size: 0.85rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .cartas-uno,
    .cartas-dos,
    .cartas-tres {
        padding: 1.5rem;
    }

    .cartas-uno h1,
    .cartas-dos h1,
    .cartas-tres h1 {
        font-size: 1.2rem;
    }

    /* Dark mode improvements for mobile */

    body.dark-mode .about h1,
    
    /* iOS-specific fixes */
    @supports (-webkit-touch-callout: none) {
        .links {
            -webkit-overflow-scrolling: touch;
        }
        
        .links a {
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }
    }
    body.dark-mode .section-title h2,
    body.dark-mode .cartas-uno h1,
    body.dark-mode .cartas-dos h1,
    body.dark-mode .cartas-tres h1 {
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
    }

    body.dark-mode .about h4,
    body.dark-mode .section-title p {
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
    }

    body.dark-mode .contact-card {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.4);
    }

    body.dark-mode .contact-card h3 {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    }

    body.dark-mode .contact-card p {
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
    }

    body.dark-mode .links a {
        color: #FFFFFF;
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
    }
}

/* =========================
   COOKIE CONSENT BANNER
   ========================= */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 1.5rem 5%;
    display: none;
    animation: slideUp 0.5s ease-out;
}

.cookie-banner.show {
    display: block;
}

body.dark-mode .cookie-banner {
    background: var(--bg-cream);
    border-top: 1px solid var(--gold);
}

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

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

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.cookie-btn.accept:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.cookie-btn.reject {
    background: var(--bg-cream);
    color: var(--text-dark);
    border: 1px solid var(--gold);
}

.cookie-btn.reject:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.cookie-btn.settings {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid var(--text-light);
}

.cookie-btn.settings:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cookie-modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: scaleIn 0.3s ease-out;
}

body.dark-mode .cookie-modal-content {
    background: var(--bg-cream);
    border: 1px solid var(--gold);
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--bg-cream);
}

.cookie-modal-header h3 {
    color: var(--gold);
    font-size: 1.5rem;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--bg-cream);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-info {
    flex: 1;
    padding-right: 1rem;
}

.cookie-option-info h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cookie-option-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

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

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-cream);
    transition: var(--transition);
    border-radius: 26px;
    border: 1px solid var(--text-light);
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: var(--text-gray);
    transition: var(--transition);
    border-radius: 50%;
}

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

input:checked + .slider:before {
    transform: translateX(24px);
    background-color: var(--white);
}

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

.cookie-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--bg-cream);
    display: flex;
    justify-content: flex-end;
}

.cookie-modal-footer .cookie-btn {
    width: 100%;
    justify-content: center;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        justify-content: center;
        min-width: 120px;
    }

    .cookie-modal {
        padding: 1rem;
    }

    .cookie-modal-content {
        max-height: 95vh;
    }

    .cookie-option {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-toggle {
        align-self: flex-start;
    }
}