/* ============================================
   LUXURY EVENTTO WEBSITE STYLES
   ============================================ */

:root {
    --bg-primary: #fffaf5;
    --primary-color: #640c1d;
    --text-dark: #000000;
    --text-light: #666666;
    --gold-accent: #d4af37;
    --white: #ffffff;
    --shadow-light: rgba(100, 12, 29, 0.1);
    --shadow-medium: rgba(100, 12, 29, 0.2);
    --shadow-heavy: rgba(100, 12, 29, 0.3);
}

/* ============================================
   LOADING PAGE
   ============================================ */

.loading-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
}

.loading-page.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.loading-logo {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 2s linear infinite;
    position: relative;
}

.loading-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(100, 12, 29, 0.3));
    min-width: 100px;
    min-height: 100px;
}

.loading-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-icon-fallback {
    width: 100px;
    height: 100px;
    border: 4px solid rgba(100, 12, 29, 0.2);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: rotate 1s linear infinite;
}

.loading-spinner {
    display: none;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 15px;
    cursor: none; /* Hide default cursor */
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 250, 245, 0.1);
    box-shadow: 0 0 0 1px rgba(100, 12, 29, 0.1);
}

.custom-cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #7a0f25 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(100, 12, 29, 0.3);
}

.custom-cursor.hover {
    width: 60px;
    height: 60px;
    border-width: 2px;
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(100, 12, 29, 0.08) 0%, rgba(212, 175, 55, 0.05) 100%);
    box-shadow: 0 0 0 2px rgba(100, 12, 29, 0.1), 0 4px 20px rgba(100, 12, 29, 0.15);
}

.custom-cursor-dot.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold-accent) 100%);
    box-shadow: 0 2px 12px rgba(100, 12, 29, 0.4);
}

.custom-cursor.click {
    width: 18px;
    height: 18px;
    border-width: 3px;
    border-color: var(--gold-accent);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

@media (max-width: 768px) {
    body {
        cursor: auto; /* Show default cursor on mobile */
    }
    
    .custom-cursor,
    .custom-cursor-dot {
        display: none;
    }
}

/* Ensure all paragraphs use Plus Jakarta Sans */
p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Ensure all headings use Playfair Display */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 250, 245, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px 0 rgba(100, 12, 29, 0.1);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    z-index: -1;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 250, 245, 0.8);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    box-shadow: 0 8px 32px 0 rgba(100, 12, 29, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

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

.nav-link:hover {
    color: var(--primary-color);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--white);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--white);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(100, 12, 29, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(100, 12, 29, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 12, 29, 0.2) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 250, 245, 0.5) 0%, rgba(255, 250, 245, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 20px var(--shadow-medium);
}

.btn-primary:hover {
    background: #7a0f25;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px var(--shadow-heavy);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--primary-color);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
    padding: 100px 0;
    position: relative;
}

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

.testimonials .section-header {
    margin-bottom: 50px;
}

.gallery .section-header {
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--gold-accent);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-description {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    text-align: center;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

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

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-medium);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(100, 12, 29, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.about-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-light);
    text-align: left;
}

.about-text .lead {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-text p {
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(100, 12, 29, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    background: var(--white);
}

.services-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    padding: 0 10px;
}

.service-tab {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid rgba(100, 12, 29, 0.2);
    border-radius: 50px;
    color: var(--text-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.service-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.service-tab.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    animation: fadeIn 0.5s ease;
}

.service-card {
    background: var(--bg-primary);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(100, 12, 29, 0.1);
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.service-card.hidden {
    display: none;
}

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

.service-card {
    background: var(--bg-primary);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 12, 29, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 12, 29, 0.05), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.service-icon .material-icons {
    font-size: 40px;
    color: var(--white);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon .material-icons {
    transform: scale(1.1);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9rem;
    text-align: center;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-choose-us {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(100, 12, 29, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 12, 29, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
}

.why-choose-content {
    position: relative;
    z-index: 1;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-choose-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    border: 2px solid rgba(100, 12, 29, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(100, 12, 29, 0.05);
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(100, 12, 29, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-choose-item:hover::before {
    opacity: 1;
}

.why-choose-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(100, 12, 29, 0.15);
    border-color: var(--primary-color);
}

.why-choose-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(100, 12, 29, 0.08);
    line-height: 1;
    transition: all 0.4s ease;
}

.why-choose-item:hover .why-choose-number {
    color: rgba(100, 12, 29, 0.15);
    transform: scale(1.1);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(100, 12, 29, 0.1) 0%, rgba(100, 12, 29, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.why-choose-icon .material-icons {
    font-size: 40px;
}

.why-choose-item:hover .why-choose-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, #7a0f25 100%);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(100, 12, 29, 0.3);
}

.why-choose-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.why-choose-item p {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 100px 0 80px 0;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(100, 12, 29, 0.02) 0%, rgba(212, 175, 55, 0.02) 100%);
    pointer-events: none;
}

.testimonials-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    margin-top: 40px;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonials-track {
    display: flex;
    gap: 30px;
    width: fit-content;
    animation: scrollTestimonials 40s linear infinite;
    will-change: transform;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    flex: 0 0 calc(50% - 15px);
    min-width: 450px;
    max-width: 500px;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: all;
    visibility: visible !important;
    position: relative;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-content {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-primary) 100%);
    padding: 35px 30px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(100, 12, 29, 0.1);
    text-align: center;
    position: relative;
    border: 1px solid rgba(100, 12, 29, 0.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--gold-accent) 100%);
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.testimonial-rating .material-icons {
    font-size: 20px;
    color: #ffc107;
}

.quote-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.quote-icon .material-icons {
    font-size: 45px;
    color: var(--primary-color);
    opacity: 0.15;
    transform: rotate(180deg);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 35px;
    font-style: italic;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(100, 12, 29, 0.1);
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(100, 12, 29, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card.active .author-image {
    transform: scale(1);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.author-info p::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
}


/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery {
    padding: 100px 0;
    margin-top: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(100, 12, 29, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

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

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

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    background: var(--white);
    opacity: 1 !important;
    visibility: visible !important;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    opacity: 1 !important;
    visibility: visible !important;
}

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

.info-item {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text {
    text-align: left;
    flex: 1;
}

.info-text h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-align: left;
}

.info-text p {
    color: var(--text-light);
    margin-bottom: 5px;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: left;
}

.info-text a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: var(--primary-color);
}

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

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

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(100, 12, 29, 0.2);
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    background: var(--bg-primary);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

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

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

.form-submit-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.form-submit-wrapper .btn {
    width: auto;
    min-width: 180px;
    padding: 15px 40px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.9rem;
    text-align: left;
}

@media (max-width: 768px) {
    .footer-section:first-child p {
        text-align: center;
    }
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a .material-icons {
    font-size: 24px;
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #7a0f25 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(100, 12, 29, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: var(--white);
    animation: pulse-whatsapp 2s ease-in-out infinite;
    border: 2px solid var(--gold-accent);
}

.whatsapp-float .material-icons {
    font-size: 32px;
    color: var(--white);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(100, 12, 29, 0.6), 0 0 0 8px rgba(212, 175, 55, 0.2);
    background: linear-gradient(135deg, #7a0f25 0%, var(--primary-color) 100%);
    border-color: var(--gold-accent);
}

.whatsapp-float:active {
    transform: translateY(-2px) scale(1.05);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(100, 12, 29, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(100, 12, 29, 0.6), 0 0 0 10px rgba(100, 12, 29, 0.1);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float .material-icons {
        font-size: 28px;
    }
}

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

/* Tablet and iPad styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

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

    .contact-content {
        gap: 40px;
    }

    .testimonial-card {
        min-width: 400px;
        max-width: 450px;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: linear-gradient(135deg, var(--primary-color) 0%, #7a0f25 100%);
        width: 100%;
        padding: 3rem 2rem;
        box-shadow: 0 10px 40px rgba(100, 12, 29, 0.4);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0;
        z-index: 1000;
        height: calc(100vh - 70px);
        overflow-y: auto;
        border-top: 3px solid var(--gold-accent);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-link {
        color: var(--white);
        font-size: 1.1rem;
        font-weight: 600;
        padding: 1.2rem 1.5rem;
        border-radius: 12px;
        margin-bottom: 0.5rem;
        transition: all 0.3s ease;
        position: relative;
        display: block;
        text-align: left;
        border: 2px solid transparent;
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .nav-menu .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--gold-accent);
        border-radius: 0 4px 4px 0;
        transition: height 0.3s ease;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link:active {
        background: rgba(255, 255, 255, 0.1);
        color: var(--gold-accent);
        border-color: rgba(212, 175, 55, 0.3);
        transform: translateX(10px);
        padding-left: 2rem;
    }

    .nav-menu .nav-link:hover::before {
        height: 60%;
    }

    .nav-menu .btn {
        margin-top: 1.5rem;
        background: var(--white);
        color: var(--primary-color);
        border: 2px solid var(--white);
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
        font-weight: 600;
    }

    .nav-menu .btn:hover {
        background: var(--gold-accent);
        color: var(--white);
        border-color: var(--gold-accent);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle span {
        background: var(--primary-color);
    }

    .navbar.scrolled .menu-toggle span {
        background: var(--primary-color);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

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

    .services-tabs {
        gap: 10px;
        padding: 0 5px;
    }

    .service-tab {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .testimonial-card {
        min-width: 350px;
        max-width: 400px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-description {
        font-size: 0.9rem;
    }

    .hero {
        height: 80vh;
        min-height: 500px;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-stats-item {
        padding: 25px 20px;
    }

    .testimonials {
        padding: 50px 0 40px 0;
    }

    .testimonials .section-header {
        margin-bottom: 30px;
    }

    .testimonials-container {
        mask-image: none;
        -webkit-mask-image: none;
        padding: 20px 0;
        margin-top: 20px;
        overflow: visible;
    }

    .testimonials-track {
        gap: 15px;
        animation: scrollTestimonials 30s linear infinite;
    }

    .testimonial-card {
        min-width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        flex: 0 0 calc(100vw - 40px);
        width: calc(100vw - 40px);
    }

    @keyframes scrollTestimonials {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-100% - 15px));
        }
    }

    .testimonial-content {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .testimonial-rating {
        margin-bottom: 12px;
    }

    .testimonial-rating .material-icons {
        font-size: 18px;
    }

    .quote-icon {
        margin-bottom: 12px;
    }

    .quote-icon .material-icons {
        font-size: 35px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
        padding: 0;
        margin-bottom: 18px;
    }

    .testimonial-author {
        flex-direction: row;
        gap: 12px;
        padding-top: 12px;
        align-items: center;
    }

    .author-image {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

    .author-info {
        text-align: left;
        flex: 1;
    }

    .author-info h4 {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .author-info p {
        font-size: 0.85rem;
    }

    .gallery {
        padding: 60px 0;
    }

    .gallery .section-header {
        margin-bottom: 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

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

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .why-choose-item {
        padding: 35px 25px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .why-choose-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .why-choose-icon .material-icons {
        font-size: 35px;
    }

    .why-choose-number {
        font-size: 2.5rem;
        top: 15px;
        right: 15px;
    }

    .services-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        padding-bottom: 10px;
        margin-bottom: 40px;
    }

    .services-tabs::-webkit-scrollbar {
        height: 4px;
    }

    .services-tabs::-webkit-scrollbar-track {
        background: rgba(100, 12, 29, 0.1);
        border-radius: 10px;
    }

    .services-tabs::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }

    .service-tab {
        padding: 10px 20px;
        font-size: 0.85rem;
        flex-shrink: 0;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .service-icon .material-icons {
        font-size: 35px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .contact-info {
        margin-bottom: 30px;
    }

    .info-item {
        margin-bottom: 25px;
    }

    .form-submit-wrapper {
        justify-content: center;
    }

    .form-submit-wrapper .btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

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

    .footer-section p {
        text-align: center;
    }

    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 40px 0;
    }

    .hero {
        height: 70vh;
        min-height: 400px;
        padding: 0 15px;
    }

    .hero::after {
        background-size: 40px 40px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0;
        gap: 12px;
    }

    .btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-label {
        font-size: 0.8rem;
    }

    .section-description {
        font-size: 0.85rem;
    }

    .services-tabs {
        gap: 8px;
        padding: 0;
    }

    .service-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .service-icon .material-icons {
        font-size: 30px;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

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

    .testimonials {
        padding: 40px 0 30px 0;
    }

    .testimonials .section-header {
        margin-bottom: 25px;
    }

    .testimonials-container {
        padding: 15px 0;
        margin-top: 15px;
    }

    .testimonials-track {
        gap: 12px;
    }

    .testimonial-card {
        min-width: calc(100vw - 30px);
        max-width: calc(100vw - 30px);
        flex: 0 0 calc(100vw - 30px);
    }

    .testimonial-content {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .testimonial-rating {
        margin-bottom: 10px;
    }

    .testimonial-rating .material-icons {
        font-size: 16px;
    }

    .quote-icon {
        margin-bottom: 10px;
    }

    .quote-icon .material-icons {
        font-size: 28px;
    }

    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .testimonial-author {
        gap: 10px;
        padding-top: 10px;
    }

    .author-image {
        width: 45px;
        height: 45px;
        border-width: 2px;
    }

    .author-info h4 {
        font-size: 0.95rem;
        margin-bottom: 3px;
    }

    .author-info p {
        font-size: 0.8rem;
    }

    .why-choose-item {
        padding: 25px 20px;
    }

    .why-choose-item h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .why-choose-item p {
        font-size: 0.85rem;
    }

    .why-choose-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .why-choose-icon .material-icons {
        font-size: 30px;
    }

    .why-choose-number {
        font-size: 2rem;
        top: 10px;
        right: 10px;
    }

    .testimonial-content {
        padding: 25px 20px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .contact-info {
        gap: 20px;
    }

    .info-item {
        flex-direction: row;
        gap: 15px;
        align-items: flex-start;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }

    .info-text {
        text-align: left;
        flex: 1;
    }

    .info-text h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
        text-align: left;
    }

    .info-text p {
        font-size: 0.85rem;
        margin-bottom: 4px;
        text-align: left;
    }

    .contact-form {
        gap: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .form-submit-wrapper .btn {
        width: 100%;
        max-width: 100%;
        padding: 14px 30px;
    }

    .navbar {
        padding: 15px 0;
    }

    .logo img {
        height: 40px;
    }
}

@media (max-width: 360px) {
    .services-tabs {
        gap: 6px;
    }

    .service-tab {
        padding: 8px 14px;
        font-size: 0.75rem;
    }

    .service-card {
        padding: 20px 15px;
    }
}

