/* ================================
   PICABOT - Dark Theme Stylesheet
   Modern, 3D, Responsive Design
   ================================ */

/* CSS Variables - Based on Picabot Logo Colors (Purple/Pink Gradient) */
:root {
    --primary-color: #B39DDB;
    --secondary-color: #E1BEE7;
    --accent-color: #F8BBD0;
    --purple-light: #C5B6E8;
    --purple-medium: #9C8ACE;
    --pink-light: #F5C6D9;
    --dark-bg: #0a0a0a;
    --dark-bg-2: #141414;
    --dark-bg-3: #1e1e1e;
    --dark-bg-4: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-tertiary: #808080;
    --gradient-1: linear-gradient(135deg, #B39DDB 0%, #E1BEE7 100%);
    --gradient-2: linear-gradient(135deg, #E1BEE7 0%, #F8BBD0 100%);
    --gradient-3: linear-gradient(135deg, #9C8ACE 0%, #F5C6D9 100%);
    --gradient-purple-pink: linear-gradient(135deg, #B39DDB 0%, #E1BEE7 50%, #F8BBD0 100%);
    --shadow-1: 0 10px 40px rgba(179, 157, 219, 0.3);
    --shadow-2: 0 10px 40px rgba(225, 190, 231, 0.3);
    --shadow-3: 0 20px 60px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 30px rgba(179, 157, 219, 0.4);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ================================
   NAVIGATION
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 2rem;
    background: radial-gradient(circle at 20% 50%, rgba(179, 157, 219, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(248, 187, 208, 0.08) 0%, transparent 50%),
                var(--dark-bg);
    overflow: visible;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-content-left {
    padding-right: 2rem;
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-right {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    padding-bottom: 100px;
}

/* Stacked Gallery Images - Exact Animation System */
@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: true;
}

.cards {
    --img-w: 280px;
    --duration: 300ms;
    --img-easing: cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    z-index: 2;
}

/* Hide radio buttons */
.cards input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.card {
    --cards-grid-cols: var(--img-w);
    --cards-grid-rows: auto;
    --cards-grid-gap: 0;
    
    grid-area: 1/1;
    display: grid;
    place-items: center;
    grid-template-columns: var(--cards-grid-cols);
    grid-template-rows: var(--cards-grid-rows);
    gap: var(--cards-grid-gap);
    z-index: -1;
}

.card-img {
    width: var(--img-w);
    height: calc(var(--img-w) * 1.5);
    aspect-ratio: 2 / 3;
    rotate: var(--angle, 0deg);
    border-radius: 15px;
    border: 4px solid rgba(179, 157, 219, 0.6);
    overflow: hidden;
    transform-origin: center;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Straighten animations */
input:nth-of-type(1):checked + .card ~ .card > .card-img {
    animation: straighten-img-1 calc(var(--duration) * 2) forwards;
    animation-timing-function: var(--img-easing);
}

.card:has(~input:nth-of-type(2):checked) > .card-img,
input:nth-of-type(2):checked + .card ~ .card > .card-img {
    animation: straighten-img-2 calc(var(--duration) * 2) forwards;
    animation-timing-function: var(--img-easing);
}

.card:has(~input:nth-of-type(3):checked) > .card-img,
input:nth-of-type(3):checked + .card ~ .card > .card-img {
    animation: straighten-img-3 calc(var(--duration) * 2) forwards;
    animation-timing-function: var(--img-easing);
}

.card:has(~input:nth-of-type(4):checked) > .card-img,
input:nth-of-type(4):checked + .card ~ .card > .card-img {
    animation: straighten-img-4 calc(var(--duration) * 2) forwards;
    animation-timing-function: var(--img-easing);
}

.card:has(~input:nth-of-type(5):checked) > .card-img,
input:nth-of-type(5):checked + .card ~ .card > .card-img {
    animation: straighten-img-5 calc(var(--duration) * 2) forwards;
    animation-timing-function: var(--img-easing);
}

.card:has(~input:nth-of-type(6):checked) > .card-img,
input:nth-of-type(6):checked + .card ~ .card > .card-img {
    animation: straighten-img-6 calc(var(--duration) * 2) forwards;
    animation-timing-function: var(--img-easing);
}

@keyframes straighten-img-1 { 50% { --angle: 0deg; } }
@keyframes straighten-img-2 { 50% { --angle: 0deg; } }
@keyframes straighten-img-3 { 50% { --angle: 0deg; } }
@keyframes straighten-img-4 { 50% { --angle: 0deg; } }
@keyframes straighten-img-5 { 50% { --angle: 0deg; } }
@keyframes straighten-img-6 { 50% { --angle: 0deg; } }

/* Stacking order */
input:checked + .card {
    z-index: 10 !important;
}

.card:has(+input:checked) {
    z-index: 9;
}

.card:has(+input + .card + input:checked) {
    z-index: 8;
}

.card:has(+input + .card + input + .card + input:checked) {
    z-index: 7;
}

.card:has(+input + .card + input + .card + input + .card + input:checked) {
    z-index: 6;
}

.card:has(+input + .card + input + .card + input + .card + input + .card + input:checked) {
    z-index: 5;
}

/* Card data and navigation */
.card-data {
    display: none;
}

/* Bottom Navigation Arrows */
.card-navigation {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 2rem;
    z-index: 100;
}

.card-navigation label {
    cursor: pointer;
    color: var(--primary-color);
    background-color: rgba(179, 157, 219, 0.2);
    border: 2px solid rgba(179, 157, 219, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    aspect-ratio: 1/1;
    display: grid;
    place-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.card-navigation label:hover {
    background-color: rgba(179, 157, 219, 0.4);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(179, 157, 219, 0.5);
}

input:checked + .card {
    transition: z-index;
    transition-delay: 300ms;
}

/* Reveal animation */
input:checked + .card > .card-img {
    animation: reveal-img calc(var(--duration) * 2) forwards;
}

@keyframes reveal-img {
    50% {
        translate: -150% 0;
        --angle: 0deg;
    }
}

.hero-content-left {
    width: 100%;
}

.hero-logo {
    margin-bottom: 0;
    animation: fadeInUp 1s ease;
}

.hero-logo img {
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
}

.hero-content-left h1 {
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    animation: fadeInUp 1s ease;
    line-height: 1.3;
}

.glitch {
    position: relative;
    text-shadow: 0 0 10px var(--primary-color);
}

.hero-content-left h2 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-primary);
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.4;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0;
    animation: fadeInUp 1s ease 0.4s both;
    line-height: 1.5;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
    margin-top: 0.5rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    z-index: 30;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--dark-bg);
    box-shadow: var(--shadow-1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(179, 157, 219, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* How It Works - Photobooth Image */
.how-it-works-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: center;
}

.photobooth-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photobooth-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeIn 2s ease 2s both;
    z-index: 100;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.arrow {
    width: 2px;
    height: 30px;
    background: var(--gradient-1);
    margin: 0 auto;
    animation: bounce 2s infinite;
}

/* ================================
   SECTIONS
   ================================ */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* ================================
   ABOUT / FEATURES
   ================================ */
.about {
    background: var(--dark-bg-2);
    margin-top: -5rem;
    padding-top: 8rem;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(145deg, var(--dark-bg-3), var(--dark-bg-2));
    padding: 2.5rem 2rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(179, 157, 219, 0.15);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(179, 157, 219, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-1), 0 0 50px rgba(179, 157, 219, 0.2);
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-secondary);
}

/* ================================
   HOW IT WORKS
   ================================ */
.how-it-works {
    background: var(--dark-bg);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-top: 15px;
}

.step {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(145deg, var(--dark-bg-3), var(--dark-bg-2));
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(225, 190, 231, 0.2);
    overflow: visible;
    margin-top: 30px;
}

.step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-purple-pink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.step:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-2), 0 0 50px rgba(225, 190, 231, 0.25);
    border-color: var(--secondary-color);
}

.step:hover::after {
    transform: scaleX(1);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 55px;
    background: var(--gradient-purple-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: var(--shadow-1), 0 0 30px rgba(179, 157, 219, 0.5);
    border: 3px solid var(--dark-bg-2);
    z-index: 10;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 1rem auto 0.8rem;
    color: var(--primary-color);
}

.step-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-color);
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.4));
}

.step h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ================================
   GALLERY - Mosaic Tile Layout
   ================================ */
.gallery {
    background: var(--dark-bg-2);
    padding: 6rem 0;
}

.gallery .container {
    max-width: 1600px;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: var(--dark-bg-3);
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-1);
    color: var(--dark-bg);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-1);
}

.gallery-grid {
    column-count: 4;
    column-gap: 15px;
    padding: 0 4px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark-bg-3);
    border: 1px solid rgba(179, 157, 219, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    break-inside: avoid;
    page-break-inside: avoid;
    display: inline-block;
    width: 100%;
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(179, 157, 219, 0.5);
    border-color: var(--primary-color);
    z-index: 10;
}

.gallery-item:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(179, 157, 219, 0.3), rgba(248, 187, 208, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.view-more-container {
    text-align: center;
    margin-top: 3rem;
}

/* ================================
   SERVICES - 3 Tile Layout
   ================================ */
.services {
    background: var(--dark-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, var(--dark-bg-3), var(--dark-bg-2));
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(179, 157, 219, 0.2);
    position: relative;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(179, 157, 219, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-1), 0 0 60px rgba(179, 157, 219, 0.3);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    opacity: 1;
}

.service-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
    pointer-events: none;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.15);
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    background: var(--gradient-purple-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
    flex: 1;
}

.service-content ul {
    list-style: none;
    margin-top: auto;
}

.service-content ul li {
    color: var(--text-secondary);
    padding: 0.4rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.service-content ul li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* ================================
   TESTIMONIALS / STATS
   ================================ */
.testimonials {
    background: var(--dark-bg-2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(145deg, var(--dark-bg-3), var(--dark-bg-2));
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(179, 157, 219, 0.25);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(179, 157, 219, 0.2), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.08);
    box-shadow: var(--shadow-1), 0 0 40px rgba(179, 157, 219, 0.3);
    border-color: var(--primary-color);
}

.stat-card:hover::before {
    width: 300px;
    height: 300px;
}

.stat-card h3 {
    font-size: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

/* ================================
   CONTACT
   ================================ */
.contact {
    background: var(--dark-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    background: linear-gradient(145deg, var(--dark-bg-3), var(--dark-bg-2));
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(179, 157, 219, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-item .icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-color);
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item a,
.contact-item p {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.3);
    padding: 10px;
}

.social-links a svg {
    width: 100%;
    height: 100%;
    color: var(--primary-color);
}

.social-links a:hover {
    background: var(--gradient-1);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-1);
    border-color: transparent;
}

.social-links a:hover svg {
    color: var(--dark-bg);
}

/* ================================
   FORM
   ================================ */
.contact-form {
    background: linear-gradient(145deg, var(--dark-bg-3), var(--dark-bg-2));
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(179, 157, 219, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--dark-bg);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.85rem;
    color: var(--primary-color);
    background: var(--dark-bg-3);
    padding: 0 0.5rem;
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Date input styling */
.form-group input[type="date"] {
    position: relative;
    color-scheme: dark;
    cursor: pointer;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%2300ff9d" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>') no-repeat;
    cursor: pointer;
    width: 20px;
    height: 20px;
    padding: 0;
    margin-left: 10px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.form-group input[type="date"]:focus::-webkit-calendar-picker-indicator {
    opacity: 1;
}

/* Firefox date input */
.form-group input[type="date"]::-moz-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--dark-bg-2);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-logo {
    width: 100px;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

/* ================================
   WHATSAPP FLOAT BUTTON
   ================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    padding: 14px;
}

.whatsapp-float svg {
    width: 100%;
    height: 100%;
    color: white;
    fill: white;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6);
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
    }
    50% {
        transform: translateY(-20px) rotateY(5deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 4rem;
    }

    .hero-logo img {
        max-width: 350px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    /* Gallery: 3 columns on medium screens (Pinterest style) */
    .gallery-grid {
        column-count: 3;
        column-gap: 12px;
    }
    
    /* How It Works: Adjust layout */
    .how-it-works-content {
        grid-template-columns: 1fr 300px;
        gap: 2rem;
    }
    
    .photobooth-image img {
        max-width: 300px;
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Gallery: 2 columns on smaller screens (Pinterest style) */
    .gallery-grid {
        column-count: 2;
        column-gap: 10px;
    }
    
    /* How It Works: Stack vertically */
    .how-it-works-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .photobooth-image {
        order: -1;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .photobooth-image img {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        padding: 2rem;
        transition: right 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-left {
        height: 50vh;
        order: 1;
    }

    .hero-content-center {
        padding: 0;
        order: 2;
    }

    .hero-content-center h1 {
        font-size: 1.6rem;
    }

    .hero-logo img {
        max-width: 180px;
    }

    .hero-content-center h2 {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        justify-content: center;
    }

    .booth-3d {
        max-width: 280px;
    }

    .booth-3d img {
        max-height: 45vh;
    }

    .cards {
        --img-w: 200px;
    }
    
    .card-navigation {
        bottom: -70px;
    }
    
    .card-navigation label {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .photobooth-bg {
        width: 250px;
        height: 50%;
        opacity: 0.1;
    }

    /* Gallery: 2 columns on mobile (Pinterest style) */
    .gallery-grid {
        column-count: 2;
        column-gap: 8px;
    }
    
    .gallery-item {
        margin-bottom: 8px;
    }

    /* How It Works: Stack steps vertically */
    .steps-container {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-logo img {
        max-width: 220px;
    }

    .container {
        padding: 0 1rem;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    /* Gallery: 1 column on very small screens (Pinterest style) */
    .gallery-grid {
        column-count: 1;
    }
    
    .cards {
        --img-w: 150px;
    }
    
    .card-navigation label {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ================================
   PAGE HERO (Blog & Packages Pages)
   ================================ */
.page-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 50%, rgba(179, 157, 219, 0.15) 0%, transparent 70%),
                var(--dark-bg);
    padding: 10rem 2rem 4rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    color: var(--text-secondary);
}

/* ================================
   PACKAGES PAGE
   ================================ */
.packages-section {
    padding: 4rem 0;
    background: radial-gradient(circle at 30% 20%, rgba(179, 157, 219, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(248, 187, 208, 0.05) 0%, transparent 50%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.package-card {
    background: var(--dark-bg-2);
    border-radius: 30px;
    padding: 0;
    border: 2px solid rgba(179, 157, 219, 0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-purple-pink);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(179, 157, 219, 0.4),
                0 0 80px rgba(179, 157, 219, 0.2);
    border-color: var(--primary-color);
}

.package-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 15px 50px rgba(179, 157, 219, 0.3);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: translateY(-15px) scale(1.07);
}

.package-badge {
    position: absolute;
    top: 25px;
    right: -35px;
    background: var(--gradient-purple-pink);
    color: white;
    padding: 0.5rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 5px 20px rgba(179, 157, 219, 0.5);
    z-index: 10;
    letter-spacing: 1px;
}

.package-header {
    text-align: center;
    padding: 2.5rem 2rem 1rem;
    background: linear-gradient(180deg, rgba(179, 157, 219, 0.1) 0%, transparent 100%);
}

.package-header h3 {
    font-size: 2.2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.package-price .price {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-purple-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.package-price .duration {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.package-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    margin: 0;
}

.package-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--dark-bg-2), transparent);
    pointer-events: none;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.8);
}

.package-card:hover .package-image img {
    transform: scale(1.15);
    filter: brightness(1);
}

.package-features {
    list-style: none;
    margin: 0;
    padding: 2rem 2.5rem;
}

.package-features li {
    padding: 1rem 0;
    color: var(--text-secondary);
    font-size: 1rem;
    border-bottom: 1px solid rgba(179, 157, 219, 0.08);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.package-features li:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.2rem;
    min-width: 20px;
}

.package-terms {
    text-align: center;
    margin: 0;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, rgba(179, 157, 219, 0.08), rgba(248, 187, 208, 0.08));
    border-top: 1px solid rgba(179, 157, 219, 0.15);
    border-bottom: 1px solid rgba(179, 157, 219, 0.15);
}

.package-terms small {
    color: var(--primary-color);
    font-style: italic;
    font-size: 0.9rem;
}

.package-card .btn {
    width: calc(100% - 4rem);
    margin: 2rem;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Add-Ons Section */
.addons-section {
    margin: 5rem 0;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(179, 157, 219, 0.05), rgba(248, 187, 208, 0.05));
    border-radius: 30px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.addon-card {
    background: var(--dark-bg-2);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    text-align: center;
    border: 2px solid rgba(179, 157, 219, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.addon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-purple-pink);
    transition: width 0.4s ease;
}

.addon-card:hover::before {
    width: 100%;
}

.addon-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(179, 157, 219, 0.3);
}

.addon-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(179, 157, 219, 0.5));
    transition: all 0.4s ease;
}

.addon-card:hover .addon-icon {
    transform: scale(1.2) rotate(10deg);
}

.addon-card h3 {
    font-size: 1.6rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 800;
}

.addon-price {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-purple-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.addon-price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.addon-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.addon-terms {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(179, 157, 219, 0.15);
}

.addon-terms small {
    color: var(--primary-color);
    font-style: italic;
}

/* Corporate Section */
.corporate-section {
    margin: 5rem 0;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(179, 157, 219, 0.08), rgba(248, 187, 208, 0.08));
    border-radius: 30px;
    border: 2px solid rgba(179, 157, 219, 0.2);
    position: relative;
    overflow: hidden;
}

.corporate-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(179, 157, 219, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.corporate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.corporate-image {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(179, 157, 219, 0.3);
    transition: all 0.4s ease;
}

.corporate-image:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(179, 157, 219, 0.5);
}

.corporate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.corporate-image:hover img {
    transform: scale(1.1);
}

.corporate-info h3 {
    font-size: 2.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-weight: 900;
    line-height: 1.3;
}

.corporate-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.corporate-features li {
    padding: 1rem 0;
    color: var(--text-secondary);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.corporate-features li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.3rem;
    min-width: 25px;
    text-shadow: 0 0 10px rgba(179, 157, 219, 0.5);
}

.corporate-features li:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.corporate-cta {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(179, 157, 219, 0.3);
}

.corporate-cta p {
    font-size: 1.3rem;
    background: var(--gradient-purple-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Special Offers */
.special-offers {
    margin: 5rem 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.offer-card {
    background: linear-gradient(135deg, var(--dark-bg-3) 0%, var(--dark-bg-2) 100%);
    padding: 3.5rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    padding: 2px;
    background: var(--gradient-purple-pink);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 60px rgba(179, 157, 219, 0.4),
                0 0 100px rgba(179, 157, 219, 0.2);
}

.offer-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 20px rgba(179, 157, 219, 0.6));
    transition: all 0.5s ease;
}

.offer-card:hover .offer-icon {
    transform: scale(1.3) rotate(15deg);
}

.offer-card h3 {
    font-size: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.offer-card p {
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

/* Partnership Section */
.partnership-section {
    margin: 5rem 0;
    padding: 5rem 4rem;
    background: linear-gradient(135deg, rgba(179, 157, 219, 0.15), rgba(248, 187, 208, 0.15));
    border-radius: 30px;
    text-align: center;
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.partnership-section::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 3px;
    background: var(--gradient-purple-pink);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.partnership-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(179, 157, 219, 0.2) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.partnership-content {
    position: relative;
    z-index: 1;
}

.partnership-content h2 {
    font-size: 3rem;
    background: var(--gradient-purple-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.partnership-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partnership-benefits {
    list-style: none;
    padding: 0;
    margin: 3rem auto;
    max-width: 700px;
    text-align: left;
}

.partnership-benefits li {
    padding: 1rem 0;
    color: var(--text-secondary);
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.partnership-benefits li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.4rem;
    min-width: 30px;
    text-shadow: 0 0 15px rgba(179, 157, 219, 0.8);
}

.partnership-benefits li:hover {
    color: var(--primary-color);
    padding-left: 1rem;
}

.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 10px 40px rgba(179, 157, 219, 0.4);
    transition: all 0.4s ease;
}

.btn-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(179, 157, 219, 0.6);
}

/* ================================
   BLOG PAGE
   ================================ */
.blog-section {
    padding: 4rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: linear-gradient(145deg, var(--dark-bg-3), var(--dark-bg-2));
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(179, 157, 219, 0.2);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(179, 157, 219, 0.3);
    border-color: var(--primary-color);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-purple-pink);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.blog-content h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-excerpt {
    display: none;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-excerpt h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
}

.blog-excerpt ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.blog-excerpt li {
    margin-bottom: 0.8rem;
}

.blog-excerpt strong {
    color: var(--primary-color);
}

/* Newsletter Section */
.newsletter-section {
    margin: 5rem 0;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(179, 157, 219, 0.1), rgba(248, 187, 208, 0.1));
    border-radius: 30px;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(179, 157, 219, 0.3);
    background: var(--dark-bg-3);
    color: var(--text-primary);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ================================
   RESPONSIVE - PACKAGES & BLOG
   ================================ */
@media (max-width: 1200px) {
    .corporate-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }

    .page-hero p {
        font-size: 1.1rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .offers-grid,
    .addons-grid {
        grid-template-columns: 1fr;
    }

    .partnership-section {
        padding: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }
}

/* =======================
   PACKAGES PAGE STYLES
   ======================= */

/* Page Hero */
.page-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, rgba(179, 157, 219, 0.1), rgba(248, 187, 208, 0.1));
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.3rem;
    color: var(--text-secondary);
}

/* Package Badge */
.package-featured {
    position: relative;
}

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-purple-pink);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(179, 157, 219, 0.4);
}

/* Package Price Display */
.package-price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    margin: 1rem 0 1.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-purple-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Package Feature List */
.package-feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.package-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.check-icon {
    width: 18px;
    height: 18px;
    stroke-width: 3;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Package Note */
.package-note {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-style: italic;
    margin: 1rem 0;
    text-align: center;
}

/* Service Price in Add-ons */
.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-purple-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.5rem 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .service-price {
        font-size: 1.5rem;
    }
}

/* =======================
   BLOG FILTERS & STATES
   ======================= */

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    border: 2px solid rgba(179, 157, 219, 0.3);
    background: transparent;
    color: var(--text-secondary);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 600;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gradient-purple-pink);
    border-color: transparent;
    color: white;
    box-shadow: 0 5px 20px rgba(179, 157, 219, 0.4);
}

/* Loading State */
.loading {
    text-align: center;
    padding: 5rem 2rem;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.loading::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

/* No Results */
.no-results {
    text-align: center;
    padding: 5rem 2rem;
}

.no-results p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Error Message */
.error-message {
    text-align: center;
    padding: 5rem 2rem;
    color: #ff6b6b;
}

.error-message p {
    font-size: 1.2rem;
}

/* Responsive Filters */
@media (max-width: 768px) {
    .blog-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* =======================
   MODERN PACKAGES PAGE
   ======================= */

/* Packages Hero */
.packages-hero {
    padding: 10rem 0 4rem;
    background: radial-gradient(circle at 30% 20%, rgba(179, 157, 219, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(248, 187, 208, 0.1) 0%, transparent 50%);
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem auto;
}

.toggle-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(179, 157, 219, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50%;
}

input:checked + .slider {
    background: var(--gradient-purple-pink);
}

input:checked + .slider:before {
    transform: translateX(28px);
}

.discount-badge {
    background: var(--accent-pink);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: 0.5rem;
    box-shadow: 0 4px 15px rgba(248, 187, 208, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.pricing-card {
    background: var(--dark-bg-2);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(179, 157, 219, 0.2);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-purple-pink);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(179, 157, 219, 0.4);
    border-color: var(--primary-color);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

/* Featured Card */
.featured-card {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(179, 157, 219, 0.3);
}

.featured-card:hover {
    transform: translateY(-15px) scale(1.07);
    box-shadow: 0 25px 70px rgba(179, 157, 219, 0.5);
}

.popular-badge {
    position: absolute;
    top: 1.5rem;
    right: -0.5rem;
    background: var(--gradient-purple-pink);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px 0 0 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: -4px 4px 20px rgba(179, 157, 219, 0.4);
    z-index: 10;
    letter-spacing: 0.5px;
}

/* Card Header */
.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(179, 157, 219, 0.1), rgba(248, 187, 208, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.plan-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--primary-color);
}

.pricing-card:hover .plan-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-purple-pink);
}

.pricing-card:hover .plan-icon svg {
    stroke: white;
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

/* Price Wrapper */
.price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    margin: 1.5rem 0 0.5rem;
}

.price-currency {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-value {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-purple-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: all 0.3s ease;
}

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.price-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: transparent;
}

.feature-item:hover {
    background: rgba(179, 157, 219, 0.05);
    transform: translateX(5px);
}

.feature-item.featured {
    background: linear-gradient(135deg, rgba(179, 157, 219, 0.08), rgba(248, 187, 208, 0.08));
    border-left: 3px solid var(--primary-color);
}

.feature-check {
    width: 22px;
    height: 22px;
    stroke: var(--primary-color);
    stroke-width: 3;
    fill: none;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item.featured .feature-check {
    stroke: var(--accent-pink);
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.feature-text strong {
    font-size: 1rem;
    color: white;
    font-weight: 600;
}

.feature-text span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Card Footer */
.card-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(179, 157, 219, 0.1);
}

.min-booking {
    text-align: center;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.select-plan-btn {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 15px;
    background: var(--gradient-purple-pink);
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(179, 157, 219, 0.3);
}

.select-plan-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(179, 157, 219, 0.5);
}

/* Feature Comparison */
.feature-comparison {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(179, 157, 219, 0.03), rgba(248, 187, 208, 0.03));
}

.feature-comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-table-wrapper {
    overflow-x: auto;
    background: var(--dark-bg-2);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border: 2px solid rgba(179, 157, 219, 0.2);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(179, 157, 219, 0.2);
}

.comparison-table th {
    background: linear-gradient(135deg, rgba(179, 157, 219, 0.15), rgba(248, 187, 208, 0.15));
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.comparison-table tbody tr:hover {
    background: rgba(179, 157, 219, 0.08);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: white;
}

.comparison-table td {
    color: var(--text-secondary);
}

/* Add-Ons Section */
.addons-section {
    padding: 5rem 0;
}

.addons-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.addon-card {
    background: var(--dark-bg-2);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(179, 157, 219, 0.2);
}

.addon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(179, 157, 219, 0.4);
    border-color: var(--primary-color);
}

.addon-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(179, 157, 219, 0.1), rgba(248, 187, 208, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.addon-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--primary-color);
}

.addon-card:hover .addon-icon {
    transform: scale(1.15) rotate(10deg);
    background: var(--gradient-purple-pink);
}

.addon-card:hover .addon-icon svg {
    stroke: white;
}

.addon-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.addon-price {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-purple-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
}

.addon-price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.addon-card p {
    color: var(--text-secondary);
    margin: 1rem 0;
    line-height: 1.6;
}

.addon-card small {
    display: block;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(179, 157, 219, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Partner with PICABOT Section */
.partner-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(179, 157, 219, 0.1) 0%, rgba(248, 187, 208, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.partner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(179, 157, 219, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(248, 187, 208, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.partner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.partner-text h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.partner-subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.partner-text > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.partner-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.partner-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--dark-bg-2);
    border-radius: 15px;
    border: 2px solid rgba(179, 157, 219, 0.2);
    transition: all 0.3s ease;
}

.partner-feature-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(179, 157, 219, 0.3);
}

.partner-feature-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
    stroke-width: 3;
    flex-shrink: 0;
    margin-top: 3px;
}

.partner-feature-item div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.partner-feature-item strong {
    font-size: 1.1rem;
    color: white;
    font-weight: 700;
}

.partner-feature-item span {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.partner-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-partner {
    padding: 1.2rem 3rem;
    background: var(--gradient-purple-pink);
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(179, 157, 219, 0.4);
}

.btn-partner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(179, 157, 219, 0.6);
}

.btn-partner-secondary {
    padding: 1.2rem 2rem;
    background: transparent;
    color: white;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-partner-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(179, 157, 219, 0.4);
}

.partner-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(179, 157, 219, 0.3);
}

.partner-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.partner-image:hover img {
    transform: scale(1.05);
}

.partner-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--gradient-purple-pink);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.badge-title {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.badge-price {
    display: block;
    font-size: 2rem;
    color: white;
    font-weight: 900;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: radial-gradient(circle at 30% 20%, rgba(179, 157, 219, 0.05) 0%, transparent 50%);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-bg-2);
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(179, 157, 219, 0.2);
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(179, 157, 219, 0.3);
    border-color: var(--primary-color);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.toggle-icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .featured-card {
        transform: scale(1);
    }
}

@media (max-width: 1200px) {
    .partner-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .partner-text h2 {
        font-size: 2.5rem;
    }
    
    .partner-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .packages-hero {
        padding: 8rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-toggle {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .featured-card {
        transform: scale(1);
    }
    
    .price-value {
        font-size: 3rem;
    }
    
    .addons-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .partner-section {
        padding: 4rem 0;
    }
    
    .partner-text h2 {
        font-size: 2rem;
    }
    
    .partner-subtitle {
        font-size: 1.1rem;
    }
    
    .partner-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-partner,
    .btn-partner-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .partner-badge {
        top: 1rem;
        right: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .badge-price {
        font-size: 1.5rem;
    }
    
    .min-booking {
        font-size: 0.85rem;
    }
}

/* =======================
   BLOG DETAIL PAGE STYLES
   ======================= */

.blog-detail-section {
    padding: 8rem 0 4rem;
    background: var(--bg-primary);
}

.back-button-container {
    margin-bottom: 2rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-button:hover {
    gap: 0.7rem;
    color: var(--primary-pink);
}

.loading-state,
.error-state {
    text-align: center;
    padding: 4rem 2rem;
}

.error-message {
    max-width: 500px;
    margin: 0 auto;
}

.error-message h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.error-message p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.blog-detail-content {
    max-width: 750px;
    margin: 0 auto;
}

.blog-detail-header {
    text-align: left;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.blog-category-tag {
    display: inline-block;
    background: transparent;
    color: var(--primary-purple);
    padding: 0;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-detail-header h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 700;
}

.blog-meta-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.blog-meta-info .separator {
    color: var(--text-muted);
}

.blog-featured-image {
    width: 100%;
    max-width: 350px;
    margin: 0 1.5rem 1.5rem 0;
    float: left;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-body {
    color: var(--text-primary);
    line-height: 1.75;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    font-family: Georgia, 'Times New Roman', serif;
}

.blog-body h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.blog-body p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.blog-body ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.blog-body li {
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    line-height: 1.7;
}

.blog-body strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Blog content images with custom sizing and alignment */
.blog-body img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.blog-body img[data-size="small"] {
    max-width: 250px;
}

.blog-body img[data-size="medium"] {
    max-width: 400px;
}

.blog-body img[data-size="large"] {
    max-width: 600px;
}

.blog-body img[data-size="full"] {
    max-width: 100%;
}

.blog-body img[data-align="left"] {
    float: left;
    margin: 0 1.5rem 1rem 0;
}

.blog-body img[data-align="right"] {
    float: right;
    margin: 0 0 1rem 1.5rem;
}

.blog-body img[data-align="none"] {
    display: block;
    margin: 1.5rem auto;
}

/* Clear floats */
.blog-body div[style*="clear"] {
    clear: both;
}

/* Additional text formatting support */
.blog-body blockquote {
    border-left: 4px solid var(--primary-purple);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    padding: 1rem 1.5rem;
    border-radius: 4px;
}

.blog-body code {
    background: var(--bg-secondary);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-family: 'Courier New', Consolas, monospace;
    font-size: 0.9em;
    color: #c7254e;
}

.blog-body pre {
    background: #2d2d2d;
    color: #f8f8f2;
    padding: 1rem;
    border-radius: 6px;
    overflow-x: auto;
    margin: 1.5rem 0;
    font-family: 'Courier New', Consolas, monospace;
}

.blog-body pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

/* Text alignment classes from Quill */
.blog-body .ql-align-center {
    text-align: center;
}

.blog-body .ql-align-right {
    text-align: right;
}

.blog-body .ql-align-justify {
    text-align: justify;
}

/* Highlighted text with background color */
.blog-body [style*="background-color"] {
    padding: 0.1rem 0.3rem;
    border-radius: 2px;
}

/* Indent support */
.blog-body .ql-indent-1 {
    padding-left: 3em;
}

.blog-body .ql-indent-2 {
    padding-left: 6em;
}

.blog-body .ql-indent-3 {
    padding-left: 9em;
}

.blog-tags {
    margin: 2.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
}

.blog-tags h3 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tag {
    background: transparent;
    color: var(--text-secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 400;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.tag:hover {
    background: var(--bg-secondary);
    color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.blog-share {
    margin: 2.5rem 0;
    text-align: left;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
}

.blog-share h3 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    border: 1px solid var(--border-color);
    background: transparent;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-secondary);
}

.share-btn svg {
    width: 16px;
    height: 16px;
}

.share-facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.share-twitter:hover {
    background: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.share-whatsapp:hover {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

.share-linkedin:hover {
    background: #0a66c2;
    color: white;
    border-color: #0a66c2;
}

.share-btn:hover {
    transform: translateY(-1px);
}

.related-posts {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-color);
}

.related-posts h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: left;
    font-weight: 700;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.related-post-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    transition: all 0.2s ease;
    border: none;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    display: flex;
    gap: 1.5rem;
}

.related-post-card:last-child {
    border-bottom: none;
}

.related-post-card:hover {
    transform: none;
    box-shadow: none;
}

.related-post-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.related-post-card:hover .related-post-image img {
    transform: none;
    opacity: 0.8;
}

.related-post-content {
    padding: 0;
    flex: 1;
}

.related-post-category {
    display: inline-block;
    background: transparent;
    color: var(--primary-purple);
    padding: 0;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.related-post-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.4;
    font-weight: 600;
}

.related-post-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: color 0.2s ease;
    border-bottom: 1px solid var(--text-secondary);
}

.read-more-link:hover {
    color: var(--primary-purple);
    border-bottom-color: var(--primary-purple);
}

/* Responsive Design for Blog Detail */
@media (max-width: 768px) {
    .blog-detail-section {
        padding: 6rem 0 3rem;
    }

    .blog-detail-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .blog-detail-header h1 {
        font-size: 1.8rem;
    }

    .blog-meta-info {
        flex-wrap: wrap;
        font-size: 0.8rem;
    }

    .blog-featured-image {
        max-width: 100%;
        margin: 0 0 1.5rem 0;
        float: none;
    }

    .blog-body {
        font-size: 1rem;
    }

    .blog-body h3 {
        font-size: 1.3rem;
    }

    .share-buttons {
        gap: 0.6rem;
    }

    .related-post-card {
        flex-direction: column;
        gap: 1rem;
    }

    .related-post-image {
        width: 100%;
        height: 180px;
    }

    /* Reset image floats on mobile */
    .blog-body img[data-align="left"],
    .blog-body img[data-align="right"] {
        float: none;
        margin: 1rem auto;
        display: block;
    }

    .blog-body img[data-size="small"],
    .blog-body img[data-size="medium"],
    .blog-body img[data-size="large"] {
        max-width: 100%;
    }

    .blog-body blockquote {
        padding: 0.75rem 1rem;
        margin: 1rem 0;
    }

    .blog-body .ql-indent-1,
    .blog-body .ql-indent-2,
    .blog-body .ql-indent-3 {
        padding-left: 1.5em;
    }
}

/* ================================
   LEGAL PAGES STYLES
   ================================ */

.legal-page {
    min-height: 100vh;
    padding: 180px 0 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
}

.legal-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(179, 157, 219, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(248, 187, 208, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.legal-page .container {
    position: relative;
    z-index: 1;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid rgba(179, 157, 219, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.legal-content h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-align: center;
}

.legal-content .last-updated {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(179, 157, 219, 0.2);
}

.legal-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(15, 15, 35, 0.4);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.legal-section:hover {
    transform: translateX(5px);
    border-left-color: var(--secondary-color);
    background: rgba(15, 15, 35, 0.6);
}

.legal-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-section h2::before {
    content: '▸';
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.legal-section h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
    padding-left: 20px;
    border-left: 3px solid rgba(248, 187, 208, 0.5);
}

.legal-section h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem 0;
    font-weight: 500;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-section li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 10px;
}

.legal-section ul li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -15px;
    font-size: 1.2rem;
}

.legal-section ol li {
    counter-increment: item;
}

.legal-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.legal-section a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

/* Highlighted info boxes in legal content */
.legal-section div[style*="background"] {
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.legal-section div[style*="background"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(179, 157, 219, 0.3);
}

/* Responsive Legal Pages */
@media (max-width: 900px) {
    .legal-content {
        padding: 40px 30px;
        border-radius: 15px;
    }

    .legal-content h1 {
        font-size: 2.2rem;
    }

    .legal-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    .legal-page {
        padding: 140px 0 60px 0;
    }

    .legal-content {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .legal-content h1 {
        font-size: 1.8rem;
    }

    .legal-section {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }

    .legal-section h3 {
        font-size: 1.1rem;
        padding-left: 15px;
    }

    .legal-section p,
    .legal-section li {
        font-size: 0.95rem;
    }

    .legal-section ul,
    .legal-section ol {
        padding-left: 1.5rem;
    }
}

/* ================================
   CONTACT PAGE STYLES
   ================================ */

/* Page Hero Section */
.page-hero {
    padding: 180px 0 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.page-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: stretch;
}

/* Contact Info */
.contact-info {
    background: var(--dark-bg-2);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--dark-bg-4);
    display: flex;
    flex-direction: column;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--gradient-purple-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.info-cards {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.info-card {
    background: var(--dark-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--dark-bg-4);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: var(--dark-bg-3);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(179, 157, 219, 0.2);
}

.info-card .icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-purple-pink);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.info-card .icon svg {
    filter: brightness(0) invert(1);
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.info-card p {
    font-size: 1rem;
    margin: 0;
}

.info-card p a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card p a:hover {
    color: var(--accent-color);
}

.info-card .sub-text {
    display: block;
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-top: 0.3rem;
}

/* Social Links */
.social-links {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-bg-4);
}

.social-links h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: var(--dark-bg);
    border: 1px solid var(--dark-bg-4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--gradient-purple-pink);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(179, 157, 219, 0.4);
}

.social-icons a:hover svg {
    filter: brightness(0) invert(1);
}

/* Contact Form Container */
.contact-form-container {
    background: var(--dark-bg-2);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--dark-bg-4);
    box-shadow: var(--shadow-3);
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--gradient-purple-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form-container > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Contact Form */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-form label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.contact-form label .required {
    color: #ff6b6b;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: var(--dark-bg);
    border: 1px solid var(--dark-bg-4);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    position: relative;
    z-index: 0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(179, 157, 219, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-tertiary);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form input[type="date"] {
    color-scheme: dark;
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.contact-form select {
    cursor: pointer;
    appearance: auto;
}

.contact-form .btn-large {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

.contact-form .form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-top: 1rem;
}

/* Form Message */
.form-message {
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Quick CTA Section */
.quick-cta {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-2) 100%);
    text-align: center;
    position: relative;
}

.quick-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.quick-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-purple-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.quick-cta p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.quick-cta .cta-icons {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.cta-icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 2.5rem;
    background: var(--dark-bg-2);
    border: 2px solid var(--dark-bg-4);
    border-radius: 15px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
}

.cta-icon-btn svg {
    width: 48px;
    height: 48px;
    padding: 12px;
    background: var(--gradient-purple-pink);
    border-radius: 50%;
    color: white;
}

.cta-icon-btn span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.cta-icon-btn:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(179, 157, 219, 0.3);
}

.cta-icon-btn.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.cta-icon-btn.whatsapp:hover span {
    color: white;
}

.cta-icon-btn.whatsapp:hover svg {
    background: white;
    color: #25D366;
}

.cta-icon-btn.phone:hover {
    background: var(--gradient-purple-pink);
    border-color: transparent;
}

.cta-icon-btn.phone:hover span {
    color: white;
}

.cta-icon-btn.phone:hover svg {
    background: white;
    color: var(--primary-color);
}

.cta-icon-btn.email:hover {
    background: #ea4335;
    border-color: #ea4335;
}

.cta-icon-btn.email:hover span {
    color: white;
}

.cta-icon-btn.email:hover svg {
    background: white;
    color: #ea4335;
}

/* Active Nav Link */
.nav-menu a.active {
    color: var(--primary-color);
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-purple-pink);
}

/* Contact Page Responsive Styles */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 140px 0 60px 0;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .page-hero p {
        font-size: 1.1rem;
    }
    
    .contact-info {
        padding: 2rem;
    }

    .contact-section {
        padding: 50px 0;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form label {
        font-size: 0.9rem;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .info-cards {
        gap: 1rem;
    }

    .quick-cta {
        padding: 60px 0;
    }

    .quick-cta h2 {
        font-size: 2rem;
    }
    
    .quick-cta .cta-icons {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .cta-icon-btn {
        min-width: auto;
        width: 100%;
        padding: 1.5rem;
    }
    
    .cta-icon-btn svg {
        width: 40px;
        height: 40px;
        padding: 10px;
    }
    
    .cta-icon-btn span {
        font-size: 1rem;
    }

    .quick-cta p {
        font-size: 1rem;
    }

    .quick-cta .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .quick-cta .cta-buttons .btn {
        width: 100%;
    }
}
