:root {
    --primary: #1D8C89;
    --primary-foreground: #ffffff;
    --background: #ffffff;
    --foreground: #1f2937;
    --muted-foreground: #6b7280;
    --secondary: #f8fafc;
    --card: #ffffff;
    --border: #e5e7eb;
    --accent: #f0f9ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 5rem 1rem;
    background-color: rgba(248, 250, 252, 0.3);
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.text-4xl {
    font-size: 2.25rem;
    font-weight: 700;
}

.text-2xl {
    font-size: 1.5rem;
    font-weight: 600;
}

.text-xl {
    font-size: 1.25rem;
}

.text-muted-foreground {
    color: var(--muted-foreground);
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.relative {
    position: relative;
}

.rounded-2xl {
    border-radius: 1rem;
}

.overflow-hidden {
    overflow: hidden;
}

.shadow-2xl {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.bg-card {
    background-color: var(--card);
}

.h-\[400px\] {
    height: 400px;
}

@media (min-width: 768px) {
    .md\:h-\[500px\] {
        height: 500px;
    }
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.object-cover {
    object-fit: cover;
}

.absolute {
    position: absolute;
}

.top-4 {
    top: 1rem;
}

.left-1\/2 {
    left: 50%;
}

.-translate-x-1\/2 {
    transform: translateX(-50%);
}

.bg-background\/90 {
    background-color: rgba(255, 255, 255, 0.9);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.rounded-full {
    border-radius: 9999px;
}

.p-1 {
    padding: 0.25rem;
}

.flex {
    display: flex;
}

.gap-1 {
    gap: 0.25rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.transition-colors {
    transition: background-color 0.2s ease, color 0.2s ease;
}

.bg-primary {
    background-color: var(--primary);
}

.text-primary-foreground {
    color: var(--primary-foreground);
}

.hover\:bg-accent:hover {
    background-color: var(--accent);
}

.left-4 {
    left: 1rem;
}

.right-4 {
    right: 1rem;
}

.top-1\/2 {
    top: 50%;
}

.-translate-y-1\/2 {
    transform: translateY(-50%);
}

.w-10 {
    width: 2.5rem;
}

.h-10 {
    height: 2.5rem;
}

.hover\:bg-primary:hover {
    background-color: var(--primary);
}

.hover\:text-primary-foreground:hover {
    color: var(--primary-foreground);
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.w-5 {
    width: 1.25rem;
}

.h-5 {
    height: 1.25rem;
}

.p-6 {
    padding: 1.5rem;
}

.gap-2 {
    gap: 0.5rem;
}

.w-2 {
    width: 0.5rem;
}

.h-2 {
    height: 0.5rem;
}

.bg-muted-foreground\/30 {
    background-color: rgba(107, 114, 128, 0.3);
}

.transition-all {
    transition: all 0.3s ease;
}

/* Animation classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.image-transition {
    transition: opacity 0.5s ease;
}

/* Active state for dots */
.dot.active {
    background-color: var(--primary);
    width: 1.5rem;
}

.dot {
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Image container improvements */
.img-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

/* Carousel styles */
.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    height: 400px;
}

@media (min-width: 768px) {
    .carousel-slide {
        height: 500px;
    }
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card effect */
.gallery-card {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Navigation buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    border: none;
    color: var(--foreground);
}

.carousel-nav:hover {
    background-color: var(--primary);
    color: white;
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

.carousel-nav i {
    font-size: 1.1rem;
}

/* Modern dot indicators */
.dots-container {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.dot-indicator {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: rgba(107, 114, 128, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.dot-indicator.active {
    background-color: var(--primary);
    width: 1.5rem;
    border-radius: 0.75rem;
}