/* ========================================
   ALMA - ESCORT DE LUJO MADRID
   Scarlet Escorts - Landing Page
   Colors: Black (#0a0a0a), Scarlet Red (#c41e3a), Gold (#d4af37)
   ======================================== */

/* CSS Variables */
:root {
    --color-black: #0a0a0a;
    --color-black-light: #111111;
    --color-black-lighter: #1a1a1a;
    --color-black-card: #151515;
    --color-scarlet: #c41e3a;
    --color-scarlet-light: #e02e4d;
    --color-scarlet-dark: #9a1830;
    --color-gold: #d4af37;
    --color-gold-light: #f0d878;
    --color-gold-dark: #b8962f;
    --color-white: #ffffff;
    --color-gray: #888888;
    --color-gray-light: #cccccc;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    --gold-gradient: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
    --scarlet-gradient: linear-gradient(135deg, var(--color-scarlet) 0%, var(--color-scarlet-dark) 100%);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* ========================================
   FLOATING PARTICLES
   ======================================== */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 15s infinite ease-in-out;
    box-shadow: 0 0 10px var(--color-gold), 0 0 20px var(--color-gold);
}

.particle:nth-child(3n) {
    background: var(--color-scarlet);
    box-shadow: 0 0 10px var(--color-scarlet), 0 0 20px var(--color-scarlet);
}

.particle:nth-child(5n) {
    width: 6px;
    height: 6px;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ========================================
   GOLD TAPESTRY / PATTERN
   ======================================== */
.gold-tapestry {
    position: absolute;
    width: 200px;
    height: 100%;
    top: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(212, 175, 55, 0.03) 10px,
            rgba(212, 175, 55, 0.03) 20px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 10px,
            rgba(212, 175, 55, 0.02) 10px,
            rgba(212, 175, 55, 0.02) 20px
        );
    pointer-events: none;
    z-index: 1;
}

.gold-tapestry::before {
    content: '';
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        var(--color-gold) 20%,
        var(--color-gold) 80%,
        transparent 100%
    );
    opacity: 0.3;
}

.gold-tapestry::after {
    content: '✦';
    position: absolute;
    top: 50%;
    font-size: 1.5rem;
    color: var(--color-gold);
    opacity: 0.4;
    animation: sparkle 3s ease-in-out infinite;
}

.tapestry-left {
    left: 0;
}

.tapestry-left::before {
    right: 0;
}

.tapestry-left::after {
    right: -8px;
    transform: translateY(-50%);
}

.tapestry-right {
    right: 0;
}

.tapestry-right::before {
    left: 0;
}

.tapestry-right::after {
    left: -8px;
    transform: translateY(-50%);
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.2;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-50%) scale(1.2);
    }
}

.gold-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(196, 30, 58, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.gold-ornament {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 60'%3E%3Cpath d='M150 0 L150 30 M150 30 L130 50 M150 30 L170 50' stroke='%23d4af37' stroke-width='1' fill='none' opacity='0.3'/%3E%3Ccircle cx='150' cy='30' r='5' fill='%23d4af37' opacity='0.4'/%3E%3C/svg%3E") center no-repeat;
    z-index: 1;
}

.ornament-top {
    top: 20px;
}

.ornament-bottom {
    bottom: 20px;
    transform: translateX(-50%) rotate(180deg);
}

.gold-border-top,
.gold-border-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--color-gold) 20%,
        var(--color-gold-light) 50%,
        var(--color-gold) 80%,
        transparent 100%
    );
    opacity: 0.4;
}

.gold-border-top {
    top: 0;
}

.gold-border-bottom {
    bottom: 0;
}

/* ========================================
   AGE VERIFICATION MODAL
   ======================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: linear-gradient(145deg, var(--color-black-light), var(--color-black));
    border: 1px solid var(--color-gold);
    border-radius: 15px;
    padding: 50px;
    max-width: 500px;
    text-align: center;
    box-shadow: 
        0 0 50px rgba(212, 175, 55, 0.2),
        0 0 100px rgba(196, 30, 58, 0.1);
    position: relative;
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(212, 175, 55, 0.05) 50%,
        transparent 70%
    );
    animation: modal-shine 3s infinite;
}

@keyframes modal-shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.modal-icon {
    font-size: 3rem;
    color: var(--color-scarlet);
    margin-bottom: 20px;
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.modal-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.modal-content p {
    color: var(--color-gray-light);
    margin-bottom: 15px;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--scarlet-gradient);
    color: var(--color-white);
    padding: 15px 35px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-gray);
    padding: 15px 35px;
    border: 1px solid var(--color-gray);
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    border-color: var(--color-scarlet);
    color: var(--color-scarlet);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    padding: 15px 35px;
    border: 2px solid var(--color-gold);
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    transition: 0.5s;
    z-index: -1;
}

.btn-outline:hover::before {
    left: 0;
}

.btn-outline:hover {
    color: var(--color-black);
    border-color: var(--color-gold);
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-fast);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-fast);
}

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

.nav-list a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.85) 0%,
        rgba(10, 10, 10, 0.5) 40%,
        rgba(196, 30, 58, 0.2) 100%
    );
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.15) 0%,
        rgba(196, 30, 58, 0.1) 30%,
        transparent 70%
    );
    z-index: 3;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 0 20px;
}

.hero-title-wrapper {
    position: relative;
    display: inline-block;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 7rem;
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 
        0 0 30px rgba(212, 175, 55, 0.5),
        0 0 60px rgba(196, 30, 58, 0.3);
    margin-bottom: 10px;
    letter-spacing: 15px;
    animation: fadeInUp 1s ease;
    position: relative;
}

.hero-title-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(
        ellipse,
        rgba(212, 175, 55, 0.3) 0%,
        transparent 60%
    );
    filter: blur(30px);
    z-index: -1;
    animation: title-glow 3s ease-in-out infinite;
}

@keyframes title-glow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-gold-light);
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 4px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.9), rgba(154, 24, 48, 0.9));
    color: var(--color-white);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.4s both;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.badge-star {
    color: var(--color-gold);
    animation: star-twinkle 2s ease-in-out infinite;
}

.badge-star:last-child {
    animation-delay: 1s;
}

@keyframes star-twinkle {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--color-gold);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(12px);
        opacity: 0;
    }
}

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

/* ========================================
   SECTIONS COMMON
   ======================================== */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: var(--color-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-scarlet);
    font-size: 0.7rem;
}

.section-tag::before {
    right: calc(100% + 15px);
}

.section-tag::after {
    left: calc(100% + 15px);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--color-white);
    position: relative;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: var(--gold-gradient);
}

.section-divider i {
    color: var(--color-scarlet);
    font-size: 0.8rem;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-black-light) 100%);
}

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

.about-image {
    position: relative;
}

.image-frame-gold {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.1);
}

.image-frame-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-image: var(--gold-gradient);
    border-image-slice: 1;
    border-radius: 10px;
    z-index: 2;
    pointer-events: none;
}

.image-frame-gold img {
    border-radius: 10px;
}

.about-image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--color-scarlet);
    border-radius: 10px;
    z-index: -1;
    opacity: 0.5;
}

.image-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-gold);
    z-index: 3;
}

.corner-tl {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
}

.corner-tr {
    top: -10px;
    right: -10px;
    border-left: none;
    border-bottom: none;
}

.corner-bl {
    bottom: -10px;
    left: -10px;
    border-right: none;
    border-top: none;
}

.corner-br {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
}

.about-text p {
    color: var(--color-gray-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-intro {
    font-size: 1.2rem !important;
    color: var(--color-white) !important;
}

.about-intro strong {
    color: var(--color-gold);
    font-weight: 600;
}

.about-highlight {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.05));
    border-left: 4px solid var(--color-gold);
    padding: 25px;
    border-radius: 0 10px 10px 0;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.highlight-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    flex-shrink: 0;
}

.about-highlight p {
    margin: 0;
    color: var(--color-white);
    font-style: italic;
}

.about-closing {
    font-size: 1.1rem !important;
}

.about-closing .highlight {
    color: var(--color-gold);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.signature-line {
    flex: 1;
    height: 1px;
    background: var(--gold-gradient);
}

.signature-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-gold);
    font-style: italic;
}

/* ========================================
   INFO SECTION
   ======================================== */
.info {
    background: var(--color-black);
    position: relative;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
}

.info-card {
    background: var(--color-black-card);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(212, 175, 55, 0.05) 50%,
        transparent 60%
    );
    transition: 0.5s;
    opacity: 0;
}

.info-card:hover .card-shine {
    opacity: 1;
    animation: card-shine 1s;
}

@keyframes card-shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.info-icon {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.info-label {
    font-size: 0.85rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.info-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-white);
}

.info-card.highlight-card {
    background: var(--scarlet-gradient);
    grid-column: span 2;
    border-color: rgba(212, 175, 55, 0.3);
}

.info-card.highlight-card .info-icon,
.info-card.highlight-card .info-label,
.info-card.highlight-card .info-value {
    color: var(--color-white);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    background: linear-gradient(180deg, var(--color-black-light) 0%, var(--color-black) 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.service-category {
    background: var(--color-black-card);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.included-services {
    border-color: rgba(76, 175, 80, 0.2);
}

.excluded-services {
    border-color: rgba(196, 30, 58, 0.2);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.header-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.included-services .header-icon {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.excluded-services .header-icon {
    background: rgba(196, 30, 58, 0.2);
    color: var(--color-scarlet);
}

.category-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    flex: 1;
}

.header-line {
    flex: 1;
    height: 1px;
    background: var(--gold-gradient);
    opacity: 0.3;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.excluded-services .service-list {
    grid-template-columns: 1fr;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 5px;
    transition: var(--transition-fast);
    background: rgba(255, 255, 255, 0.02);
}

.service-list li:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateX(5px);
}

.service-list.included i {
    color: #4caf50;
}

.service-list.excluded i {
    color: var(--color-scarlet);
}

/* ========================================
   RATES SECTION
   ======================================== */
.rates {
    background: var(--color-black);
    position: relative;
}

.rates-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.rates-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--color-black-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.rates-table th {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.9), rgba(154, 24, 48, 0.9));
    color: var(--color-white);
    padding: 20px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.rates-table th i {
    color: var(--color-gold);
    margin-right: 8px;
}

.rates-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.05);
    color: var(--color-gray-light);
}

.rates-table tr:hover td {
    background: rgba(212, 175, 55, 0.03);
}

.rates-table tr:last-child td {
    border-bottom: none;
}

.price {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.price-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.2rem;
}

.price-consult {
    color: var(--color-scarlet);
    font-style: italic;
}

.special-rate {
    background: rgba(212, 175, 55, 0.05);
}

.special-rate i {
    color: var(--color-gold);
    margin-right: 8px;
}

.rates-notes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.note {
    display: flex;
    gap: 15px;
    background: var(--color-black-card);
    padding: 25px;
    border-radius: 10px;
    border-left: 3px solid var(--color-gold);
    transition: var(--transition-fast);
}

.note:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.note-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    flex-shrink: 0;
}

.note-content strong {
    color: var(--color-gold);
    display: block;
    margin-bottom: 5px;
}

.note-content p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery {
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-black-light) 100%);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

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

.gallery-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    pointer-events: none;
    transition: var(--transition-fast);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(196, 30, 58, 0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: var(--transition-fast);
}

.overlay-content {
    text-align: center;
    color: var(--color-white);
}

.overlay-content i {
    font-size: 1.5rem;
    margin-bottom: 5px;
    display: block;
}

.overlay-content span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-frame {
    border-color: var(--color-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border: 2px solid var(--color-gold);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--color-gold);
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    background: var(--color-black);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

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

.contact-card {
    background: var(--color-black-card);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.1) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: var(--transition-fast);
}

.contact-card:hover .card-glow {
    opacity: 1;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

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

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.contact-link {
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.link-text {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.link-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.3),
        transparent
    );
    transition: 0.5s;
}

.contact-link:hover .link-shine {
    left: 100%;
}

.contact-link:hover .link-text {
    color: var(--color-gold-light);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-black-card);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-icon {
    width: 60px;
    height: 60px;
    background: var(--scarlet-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

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

.form-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.form-line {
    width: 80px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 0 auto;
}

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

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

.form-group label {
    color: var(--color-gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--color-black);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 15px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

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

.btn-submit {
    background: var(--scarlet-gradient);
    color: var(--color-white);
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.btn-submit:hover .btn-shine {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid #4caf50;
    color: #4caf50;
}

.form-message.error {
    display: block;
    background: rgba(196, 30, 58, 0.1);
    border: 1px solid var(--color-scarlet);
    color: var(--color-scarlet);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-black-light);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo img {
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--color-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-contact {
    display: flex;
    gap: 25px;
}

.footer-contact a {
    color: var(--color-white);
    font-size: 0.95rem;
}

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

.footer-contact i {
    color: var(--color-gold);
    margin-right: 8px;
}

.footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-divider .divider-line {
    width: 100px;
}

.footer-divider i {
    color: var(--color-scarlet);
    font-size: 0.8rem;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: var(--color-gray);
    font-size: 0.9rem;
}

.footer-legal {
    margin-top: 10px;
    font-size: 0.8rem !important;
    color: var(--color-scarlet) !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gold-tapestry {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-black-light);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 4.5rem;
        letter-spacing: 8px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .service-list {
        grid-template-columns: 1fr;
    }
    
    .rates-notes {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links,
    .footer-contact {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .info-card.highlight-card {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 5px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
