/* ============================================
   PHOTOLOGIA - PREMIUM CREATIVE PORTFOLIO
   Organic Shapes & Advanced 3D Effects
   ============================================ */

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

:root {
    /* Custom Color Palette */
    --color-teal: #1f7a63;
    --color-purple: #7B2CBF;
    --color-dark-teal: #0B3D2E;
    --color-dark-purple: #2E1A47;
    --color-green: #4CAF50;
    --color-light-green: #6BE585;
    --color-light-purple: #9D4EDD;
    
    /* Gradient Combinations */
    --gradient-primary: linear-gradient(135deg, #1f7a63 0%, #7B2CBF 100%);
    --gradient-secondary: linear-gradient(135deg, #4CAF50 0%, #7B2CBF 100%);
    --gradient-tertiary: linear-gradient(135deg, #6BE585 0%, #9D4EDD 100%);
    --gradient-warm: linear-gradient(135deg, #1f7a63 0%, #4CAF50 100%);
    --gradient-cool: linear-gradient(135deg, #2E1A47 0%, #7B2CBF 100%);
    --gradient-vibrant: linear-gradient(135deg, #4CAF50 0%, #9D4EDD 100%);
    
    /* Background Gradients */
    --bg-gradient-dark: radial-gradient(circle at 20% 30%, #1f7a63 0%, transparent 40%), radial-gradient(circle at 80% 70%, #7B2CBF 0%, transparent 40%), linear-gradient(135deg, #0B3D2E, #2E1A47, #7B2CBF);
    --bg-gradient-light: linear-gradient(135deg, #0B3D2E 0%, #2E1A47 50%, #7B2CBF 100%);
    
    /* Text Colors */
    --text-light: #ffffff;
    --text-dark: #0B3D2E;
    --text-muted: #b0b0b0;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.3s ease-out;
}

html {
    scroll-behavior: smooth;
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(15deg); }
}

.gradient-card {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.gradient-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translate(-100%, -100%) rotate(45deg); }
    100% { transform: translate(100%, 100%) rotate(45deg); }
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(11, 61, 46, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: none;
    transition: var(--transition-fast);
    box-shadow: 0 10px 40px rgba(123, 44, 191, 0.2);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-image {
    width: 80px;
    height: 80px;
    object-fit: cover;

    border-radius: 50%;   /* makes it circular */

    filter: drop-shadow(0 0 15px rgba(123, 44, 191, 0.6));
    transition: var(--transition-fast);
}

.logo:hover .logo-image {
    filter: drop-shadow(0 0 25px rgba(123, 44, 191, 0.8));
    transform: scale(1.1) rotateZ(5deg);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 3px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition-fast);
}

.logo-dot {
    width: 10px;
    height: 10px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 25px rgba(123, 44, 191, 0.8);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition-fast);
    text-transform: uppercase;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(11, 61, 46, 0.98);
        padding: 20px;
        gap: 15px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
    
    .nav-menu.active {
        max-height: 400px;
    }
    
    .nav-link {
        padding: 10px 0;
    }
}

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

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
    background: var(--bg-gradient-dark);
    perspective: 1200px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(31, 122, 99, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(123, 44, 191, 0.3) 0%, transparent 50%);
    animation: gradientMove 15s ease infinite;
    z-index: 1;
}

@keyframes gradientMove {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 61, 46, 0.85) 0%, rgba(123, 44, 191, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.3s both;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 15px 40px rgba(123, 44, 191, 0.6);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-15px) rotateX(2deg); }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.5s both;
}

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

.btn {
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease-out;
    z-index: -1;
}

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

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--text-light);
    border: none;
    box-shadow: 0 15px 40px rgba(123, 44, 191, 0.5);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05) rotateX(5deg);
    box-shadow: 0 25px 60px rgba(123, 44, 191, 0.7);
}

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

.btn-secondary:hover {
    background: var(--gradient-tertiary);
    transform: translateY(-5px) scale(1.05) rotateX(5deg);
    box-shadow: 0 20px 50px rgba(106, 190, 133, 0.5);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
    z-index: 10;
}

.hero-scroll-indicator span {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.scroll-arrow {
    width: 2px;
    height: 20px;
    background: var(--gradient-secondary);
    margin: 0 auto;
    animation: scroll-down 1.5s ease-in-out infinite;
}

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

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

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

/* ============================================
   SECTION DIVIDERS - ORGANIC SHAPES
   ============================================ */

.section-divider {
    position: relative;
    height: 120px;
    background: var(--gradient-primary);
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

.section-divider.top {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.section-divider.bottom {
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%);
}

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

.about {
    background: linear-gradient(135deg, #0B3D2E 0%, #2E1A47 50%, #1f7a63 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 100% 100%, rgba(123, 44, 191, 0.2) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-text {
    animation: fadeInLeft 0.8s ease-out;
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    color: var(--text-light);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-secondary);
    box-shadow: 0 0 15px rgba(123, 44, 191, 0.6);
    border-radius: 2px;
}

.about-description {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
    font-weight: 300;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 30px;
    border-radius: 30px;
    transition: var(--transition-fast);
    box-shadow: 0 15px 40px rgba(123, 44, 191, 0.3);
    background: rgba(31, 122, 99, 0.2);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse-bg 4s ease infinite;
}

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

.stat-item:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 25px 60px rgba(123, 44, 191, 0.5);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}

.about-image {
    animation: fadeInRight 0.8s ease-out;
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    aspect-ratio: 4/5;
    transform-style: preserve-3d;
    perspective: 1200px;
    box-shadow: 0 30px 80px rgba(123, 44, 191, 0.4);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.image-card:hover img {
    transform: scale(1.08) rotateY(8deg) rotateX(3deg);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(11, 61, 46, 0.98), transparent);
    padding: 40px 20px 20px;
    transform: translateY(100%);
    transition: var(--transition-fast);
    border-radius: 40px;
}

.image-card:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay p {
    font-family: var(--font-display);
    font-size: 18px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px) rotateY(10deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px) rotateY(-10deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0);
    }
}

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

.gallery {
    background: linear-gradient(135deg, #0B3D2E 0%, #2E1A47 50%, #7B2CBF 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(106, 190, 133, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.gallery .section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.filter-btn {
    padding: 12px 28px;
    background: rgba(31, 122, 99, 0.15);
    color: var(--text-light);
    border: none;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    transform-style: preserve-3d;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
    transition: left 0.3s ease-out;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--text-light);
    transform: translateY(-3px) rotateX(5deg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    perspective: 1200px;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    aspect-ratio: 1;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: var(--transition-smooth);
    animation: galleryFadeIn 0.6s ease-out both;
    box-shadow: 0 20px 50px rgba(123, 44, 191, 0.25);
}

.gallery-item:nth-child(1) { animation-delay: 0s; }
.gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-item:nth-child(3) { animation-delay: 0.2s; }
.gallery-item:nth-child(4) { animation-delay: 0.3s; }
.gallery-item:nth-child(5) { animation-delay: 0.4s; }
.gallery-item:nth-child(6) { animation-delay: 0.5s; }
.gallery-item:nth-child(7) { animation-delay: 0.6s; }
.gallery-item:nth-child(8) { animation-delay: 0.7s; }
.gallery-item:nth-child(9) { animation-delay: 0.8s; }
.gallery-item:nth-child(10) { animation-delay: 0.9s; }

@keyframes galleryFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) rotateX(15deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

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

.gallery-item:hover img {
    transform: scale(1.12) rotateX(10deg) rotateY(10deg);
    filter: brightness(1.3);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
    backdrop-filter: blur(8px);
}

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

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

.gallery-overlay-title {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 10px;
}

.gallery-overlay-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 61, 46, 0.98), rgba(123, 44, 191, 0.4));
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
    backdrop-filter: blur(15px);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: zoomIn 0.3s ease-out;
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 40px;
    box-shadow: 0 30px 80px rgba(123, 44, 191, 0.6);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    color: var(--text-light);
    border: none;
    font-size: 28px;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(123, 44, 191, 0.5);
    transform-style: preserve-3d;
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.15) rotateX(10deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    color: var(--text-light);
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(123, 44, 191, 0.5);
    transform-style: preserve-3d;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.15) rotateX(10deg);
    box-shadow: 0 25px 60px rgba(123, 44, 191, 0.7);
}

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.85) rotateX(-20deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotateX(0);
    }
}

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

.testimonials {
    background: linear-gradient(135deg, #0B3D2E 0%, #2E1A47 50%, #1f7a63 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 0% 0%, rgba(123, 44, 191, 0.2) 0%, transparent 50%);
    animation: rotate 25s linear infinite reverse;
}

.testimonials .section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 300px;
    perspective: 1000px;
}

.testimonial-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    text-align: center;
    padding: 40px;
    background: rgba(31, 122, 99, 0.15);
    border-radius: 40px;
    box-shadow: 0 15px 40px rgba(123, 44, 191, 0.2);
    transform-style: preserve-3d;
}

.testimonial-item.active {
    opacity: 1;
    position: relative;
    transform: rotateX(0deg);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(123, 44, 191, 0.4);
}

.testimonial-info h4 {
    font-family: var(--font-display);
    font-size: 16px;
    margin-bottom: 5px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-info p {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(31, 122, 99, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 0 10px rgba(123, 44, 191, 0.2);
}

.carousel-dot.active {
    background: var(--gradient-primary);
    transform: scale(1.4);
    box-shadow: 0 0 25px rgba(123, 44, 191, 0.8);
}

.carousel-dot:hover {
    background: var(--gradient-secondary);
}

/* ============================================
   BOOKING SECTION
   ============================================ */

.booking {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0B3D2E 0%, #2E1A47 50%, #7B2CBF 100%);
}

.booking-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1506157786151-b8491531f063?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.booking-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 61, 46, 0.92), rgba(123, 44, 191, 0.3));
    z-index: 1;
}

.booking .container {
    position: relative;
    z-index: 2;
}

.booking .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.social-booking {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.social-booking-btn {
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    box-shadow: 0 15px 40px rgba(123, 44, 191, 0.4);
    transform-style: preserve-3d;
}

.social-booking-btn.wordpress {
    background: var(--gradient-primary);
}

.social-booking-btn.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-booking-btn.tiktok {
    background: linear-gradient(135deg, #25f4ee 0%, #ff0050 100%);
}

.social-booking-btn:hover {
    transform: translateY(-8px) scale(1.08) rotateX(5deg);
    box-shadow: 0 25px 60px rgba(123, 44, 191, 0.6);
}

.booking-divider {
    text-align: center;
    margin: 30px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
}

.booking-divider::before,
.booking-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 2px;
    background: var(--gradient-primary);
}

.booking-divider::before {
    left: 0;
}

.booking-divider::after {
    right: 0;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .booking-form {
        grid-template-columns: 1fr;
    }
}

.form-group {
    grid-column: span 1;
}

.form-group:nth-child(6) {
    grid-column: 1 / -1;
}

.booking-form button {
    grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 14px;
    border-radius: 20px;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 25px rgba(123, 44, 191, 0.4);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237B2CBF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    padding-right: 40px;
}

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

.contact {
    background: linear-gradient(135deg, #0B3D2E 0%, #2E1A47 50%, #1f7a63 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 100% 50%, rgba(123, 44, 191, 0.15) 0%, transparent 70%);
}

.contact .section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

.contact-item {
    padding: 20px;
    border-left: none;
    transition: var(--transition-fast);
    transform-style: preserve-3d;
}

.contact-item:hover {
    transform: translateX(15px) rotateY(5deg);
}

.contact-item h3 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 10px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 14px;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-item a:hover {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.social-link {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(31, 122, 99, 0.15);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 30px;
    font-size: 12px;
    transition: var(--transition-fast);
    border: none;
    transform-style: preserve-3d;
}

.social-link.instagram-link {
    background: linear-gradient(135deg, rgba(240, 148, 51, 0.3), rgba(220, 39, 67, 0.3));
}

.social-link.tiktok-link {
    background: linear-gradient(135deg, rgba(37, 244, 238, 0.3), rgba(255, 0, 80, 0.3));
}

.social-link.wordpress-link {
    background: rgba(31, 122, 99, 0.15);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--text-light);
    transform: translateY(-5px) rotateX(5deg);
}

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

.contact-form button {
    grid-column: 1 / -1;
}

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

.footer {
    background: linear-gradient(135deg, #0B3D2E 0%, #1f7a63 100%);
    border-top: none;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(123, 44, 191, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 16px;
    margin-bottom: 15px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

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

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

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.footer-social a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: none;
    color: var(--text-muted);
    font-size: 12px;
    position: relative;
    z-index: 2;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-booking {
        flex-direction: column;
    }
    
    .social-booking-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 12px;
    }
    
    .gallery-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 11px;
    }
}

/* ============================================
   SHOP SECTION
   ============================================ */
.shop {
    padding: 100px 0;
    background: var(--bg-gradient-dark);
    position: relative;
}

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

.shop-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.shop-item:hover {
    transform: translateY(-10px);
    border-color: var(--color-teal);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.shop-item-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.shop-item-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.shop-item-title {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.shop-item-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-light-green);
    margin-bottom: 15px;
}

.shop-item-description {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.shop-item-btn {
    margin-top: auto;
    width: 100%;
}

/* ============================================
   SUB-GALLERY OVERLAY
   ============================================ */
.sub-gallery-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    z-index: 2000;
    display: none;
    overflow-y: auto;
    padding: 60px 20px;
}

.sub-gallery-overlay.active {
    display: block;
    animation: fadeInSub 0.5s ease forwards;
}

.sub-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.close-sub-gallery {
    position: fixed;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition-fast);
}

.close-sub-gallery:hover {
    color: var(--color-teal);
    transform: rotate(90deg);
}

.sub-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.sub-gallery-item {
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    position: relative;
}

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

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

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