/* ===================================
   Hampton Venue - Custom Styles
   =================================== */

/* CSS Variables */
:root {
    /* Colors */
    --color-primary: #C5A572;
    --color-primary-hover: #B39560;
    --color-primary-light: #D4B68A;
    --color-black: #1F1F1F;
    --color-white: #FFFFFF;
    --color-cream: #F5F3EF;
    --color-gray: #4A4A4A;
    --color-brown: #3E2723;
    --color-rose: #B76E79;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Transitions */
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 4px 12px rgba(197, 165, 114, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-black);
    line-height: 1.3;
}

/* Container */
.container {
    max-width: 1200px;
}

/* Enhanced Header & Logo - BIGGER & CLEARER */
.logo-enhanced {
    transition: all 0.3s ease;
    max-width: 160px;
}

.logo-enhanced img {
    width: 100%;
    height: auto;
    display: block;
}

.logo-enhanced a {
    padding: 0;
    border: none;
    background: transparent;
}

.logo-enhanced:hover a {
    border-color: transparent;
    transform: none;
    box-shadow: none;
}

#main-header {
    backdrop-filter: blur(10px);
    padding-top: 0;
    padding-bottom: 0;
}

#main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Better Navigation Alignment */
#main-header nav {
    padding-top: 0;
    padding-bottom: 0;
}

.logo-enhanced a {
    padding: 0.15rem 0.75rem;
}

/* Section Titles */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.625rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray);
}

.section-title-enhanced {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1F1F1F 0%, #C5A572 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Stats Cards */
.stat-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(197, 165, 114, 0.1);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(197, 165, 114, 0.2);
    border-color: #C5A572;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #C5A572, #D4B68A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(197, 165, 114, 0.3);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #C5A572;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Enhanced About Content */
.about-content-enhanced {
    animation: fadeInLeft 0.8s ease-out;
}

.prose-enhanced {
    color: var(--color-gray);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(197, 165, 114, 0.05), rgba(183, 110, 121, 0.05));
    border-left: 4px solid #C5A572;
    padding: 1.5rem;
    border-radius: 8px;
    position: relative;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item-enhanced {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(197, 165, 114, 0.1);
}

.feature-item-enhanced:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(197, 165, 114, 0.15);
    border-color: #C5A572;
}

.feature-icon-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #C5A572, #D4B68A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(197, 165, 114, 0.3);
}

/* Enhanced About Images */
.about-image-enhanced {
    animation: fadeInRight 0.8s ease-out;
}

.image-wrapper {
    position: relative;
}

.main-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 165, 114, 0.1), rgba(183, 110, 121, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-image-container:hover .image-overlay {
    opacity: 1;
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(197, 165, 114, 0.3);
    border: 3px solid #C5A572;
    animation: floatBadge 3s ease-in-out infinite;
    z-index: 2;
}

.floating-badge div {
    color: var(--color-black);
    font-weight: 600;
    line-height: 1.2;
}

/* Floating Image */
.floating-image {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    border: 4px solid white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: floatImage 4s ease-in-out infinite;
    z-index: 3;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

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

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

/* Button Styles - NEW DESIGN SYSTEM */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(54, 37, 34, 0.7);
    color: #FFFFFF;
    padding: 0.875rem 2.25rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    font-family: 'Khula', sans-serif;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    background: rgba(54, 37, 34, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: rgba(197, 165, 114, 0.15);
    color: #FFFFFF;
    padding: 0.875rem 2.25rem;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'Khula', sans-serif;
    letter-spacing: 0.3px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none !important;
    backdrop-filter: blur(10px);
    text-shadow: none !important;
}

.btn-secondary:hover {
    background: rgba(197, 165, 114, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: none !important;
}

.btn-lg {
    padding: 14px 36px;
    font-size: 16px;
}

/* Navigation Styles */
.nav-link {
    color: var(--color-black);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    padding: 4px 20px;
    transition: color var(--transition-base);
    position: relative;
}

.nav-link:hover {
    color: #C5A572;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #C5A572;
    transition: width var(--transition-base);
}

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.mobile-menu.active {
    display: block;
    max-height: 500px;
}

.mobile-nav-link {
    display: block;
    padding: 12px 0;
    color: var(--color-black);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-base);
}

.mobile-nav-link:hover {
    color: #C5A572;
}

/* Hero Section - Enhanced */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(197, 165, 114, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(183, 110, 121, 0.1) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes particleFloat {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 0.6; transform: translateY(-20px); }
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.slider-item.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(31, 31, 31, 0.3) 0%,
        rgba(31, 31, 31, 0.6) 100%
    );
    z-index: 1;
}

/* Enhanced Hero Overlay with Gradient */
.hero-overlay-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(31, 31, 31, 0.7) 0%,
        rgba(62, 39, 35, 0.6) 50%,
        rgba(31, 31, 31, 0.8) 100%
    );
    z-index: 1;
}

.hero-overlay-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(197, 165, 114, 0.15) 0%,
        transparent 70%
    );
    animation: pulseGlow 4s ease-in-out infinite;
}

/* PREMIUM OVERLAY with VIGNETTE for Better Text Visibility & Depth */
.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(31, 31, 31, 0.7) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 1;
}

.hero-overlay-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(197, 165, 114, 0.08) 0%,
        rgba(0, 0, 0, 0) 40%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.hero-overlay-dark::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 50% 50%,
        transparent 0%,
        rgba(0, 0, 0, 0.35) 70%,
        rgba(0, 0, 0, 0.6) 100%
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
    padding: 2rem;
    max-width: 900px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

/* Enhanced Hero Content */
.hero-content-enhanced {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
    padding: 2rem;
    max-width: 1000px;
    animation: fadeInUp 1s ease-out;
}

/* Hero Badge - NEW DESIGN SYSTEM */
.hero-badge {
    display: inline-block;
    background: transparent;
    color: #FFFFFF;
    padding: 0;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: none;
    margin-bottom: 1.5rem;
    box-shadow: none;
    animation: slideDown 0.8s ease-out;
    border: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Enhanced Hero Title - NEW DESIGN SYSTEM */
.hero-title-enhanced {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin-bottom: 2.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* ENHANCED TEXT VISIBILITY WITH GLOW */
.hero-title-visible {
    color: #FFFFFF !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8),
                 0 4px 25px rgba(0, 0, 0, 0.6),
                 0 8px 45px rgba(0, 0, 0, 0.4);
}

/* Enhanced Hero Subtitle - PREMIUM */
.hero-subtitle-enhanced {
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    max-width: 650px;
    animation: fadeIn 1s ease-out 0.5s both;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7),
                 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.7;
}

.hero-subtitle-visible {
    color: #E8D4A8 !important; /* Light gold color matching button */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8),
                 0 4px 16px rgba(0, 0, 0, 0.5),
                 0 0 20px rgba(197, 165, 114, 0.3); /* Gold glow */
    font-weight: 400;
}

/* Enhanced Hero Buttons - COMPACT */
.hero-buttons-enhanced {
    display: flex;
    gap: 2rem; /* Increased gap for more space */
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem; /* Less margin */
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Button Glow Effects */
.btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(31, 64, 69, 0.4);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s ease-in-out infinite;
}

.btn-outline-glow {
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.btn-outline-glow:hover {
    box-shadow: none !important;
}

/* Hero Features - PREMIUM MODERN */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    padding: 1rem 1.75rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-feature-item i {
    font-size: 2.25rem;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
    filter: drop-shadow(0 3px 8px rgba(197, 165, 114, 0.7));
    text-shadow: 0 2px 10px rgba(197, 165, 114, 0.8);
}

.hero-feature-item span {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.03em;
}

.hero-feature-item:hover {
    transform: translateY(-5px);
    background: rgba(197, 165, 114, 0.25);
    border-color: rgba(197, 165, 114, 0.5);
    box-shadow: 0 8px 30px rgba(197, 165, 114, 0.4);
}

.hero-feature-item:hover i {
    color: #FFD700;
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.8));
    transform: scale(1.1);
}

/* Slider Navigation - PREMIUM MODERN */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-size: 1.5rem;
    pointer-events: auto;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #C5A572;
    border-color: #C5A572;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(197, 165, 114, 0.5);
}

.slider-nav.prev {
    left: 2.5rem;
}

.slider-nav.next {
    right: 2.5rem;
}

/* Slider Dots - PREMIUM with PROPER SPACING */
.slider-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 30px;
    pointer-events: auto;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.slider-dot.active {
    background: #03b1fa;
    width: 50px;
    border-radius: 10px;
    border-color: #03b1fa;
    box-shadow: 0 3px 12px rgba(3, 177, 250, 0.5);
}

/* Service Cards */
.service-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border: 1px solid #C5A572;
}

.service-icon {
    display: flex;
    justify-content: center;
}

/* ENHANCED Service Cards */
.service-card-enhanced {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(197, 165, 114, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C5A572, #B76E79, #C5A572);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card-enhanced:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(197, 165, 114, 0.25);
    border-color: #C5A572;
}

.service-card-enhanced:hover::before {
    transform: scaleX(1);
}

.service-icon-enhanced {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #C5A572, #D4B68A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(197, 165, 114, 0.4);
    transition: all 0.3s ease;
}

.service-card-enhanced:hover .service-icon-enhanced {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(197, 165, 114, 0.6);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #C5A572, #D4B68A);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(197, 165, 114, 0.3);
}

.service-cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #C5A572, #D4B68A);
    color: white;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 165, 114, 0.3);
}

.service-cta:hover {
    background: linear-gradient(135deg, #B39560, #C5A572);
    box-shadow: 0 8px 25px rgba(197, 165, 114, 0.5);
    transform: translateY(-2px);
}

/* Additional Services */
.additional-service {
    background-color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.additional-service:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* ENHANCED Additional Services */
.additional-service-enhanced {
    text-align: center;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
}

.additional-service-enhanced:hover {
    transform: translateY(-5px);
}

.additional-icon-circle {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #C5A572, #D4B68A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(197, 165, 114, 0.3);
    transition: all 0.3s ease;
}

.additional-service-enhanced:hover .additional-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(197, 165, 114, 0.5);
}

/* Gallery Styles */
.filter-btn {
    padding: 10px 24px;
    background-color: #FFFFFF;
    color: var(--color-gray);
    border: 2px solid #E5E5E5;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #C5A572;
    color: #FFFFFF;
    border-color: #C5A572;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
}

.gallery-item img {
    transition: transform var(--transition-slow);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 31, 31, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
    color: #FFFFFF;
    border-radius: 8px;
}

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

.gallery-item.hidden {
    display: none;
}

/* Testimonials */
.testimonial-slider {
    position: relative;
}

.testimonial-item {
    display: none;
    animation: fadeIn 0.6s ease-in-out;
}

.testimonial-item.active {
    display: block;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(98, 67, 46, 0.2);
    color: var(--color-black);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-base);
}

.testimonial-nav:hover {
    background-color: #62432e;
    color: #FFFFFF;
}

.testimonial-nav.prev {
    left: -60px;
}

.testimonial-nav.next {
    right: -60px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #D1D5DB;
    cursor: pointer;
    transition: all var(--transition-base);
}

.testimonial-dot.active {
    background-color: #62432e;
    width: 24px;
    border-radius: 5px;
}

/* Blog Cards */
.blog-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-card img {
    transition: transform var(--transition-slow);
}

.blog-card:hover img {
    transform: scale(1.05);
}

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Enhanced Hero Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 150px;
    }
}

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

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    /* Enhanced Hero Responsive */
    .hero-title-enhanced {
        font-size: 3rem;
    }
    
    .hero-subtitle-enhanced {
        font-size: 1.125rem;
    }
    
    .hero-badge {
        font-size: 1.3rem;
        padding: 0;
    }
    
    .hero-features {
        gap: 1.5rem;
    }
    
    .hero-feature-item {
        font-size: 0.8rem;
    }
    
    .hero-feature-item i {
        font-size: 1.5rem;
    }
    
    .hero-buttons-enhanced {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Enhanced Logo Responsive */
    .logo-enhanced img {
        height: 72px !important; /* Bigger on tablet */
    }
    
    /* Section Titles Responsive */
    .section-title {
        font-size: 2rem;
    }
    
    .section-title-enhanced {
        font-size: 2rem;
    }
    
    /* Stats Responsive */
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Features Grid Responsive */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Floating Elements Responsive */
    .floating-badge {
        width: 80px;
        height: 80px;
        top: -10px;
        right: -10px;
    }
    
    .floating-badge i {
        font-size: 1.5rem;
    }
    
    .floating-badge div {
        font-size: 0.7rem;
    }
    
    .floating-image {
        width: 140px;
        bottom: -20px;
        left: -20px;
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        z-index: 15;
    }
    
    .slider-nav.prev {
        left: 0.5rem;
    }
    
    .slider-nav.next {
        right: 0.5rem;
    }
    
    .testimonial-nav.prev {
        left: 0;
    }
    
    .testimonial-nav.next {
        right: 0;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Enhanced Hero for Small Mobile */
    .hero-title-enhanced {
        font-size: 2.25rem;
    }
    
    .hero-subtitle-enhanced {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        font-size: 1.15rem;
        padding: 0;
    }
    
    .hero-features {
        gap: 1rem;
        flex-direction: row;
    }
    
    .hero-feature-item {
        font-size: 0.7rem;
    }
    
    .hero-feature-item i {
        font-size: 1.25rem;
    }
    
    .hero-title-highlight::after {
        width: 100px;
    }
    
    /* Enhanced Logo Small Mobile */
    .logo-enhanced img {
        height: 64px !important; /* Visible even on small screens */
    }
    
    /* Stats Small Mobile */
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    /* Section Title Small Mobile */
    .section-title-enhanced {
        font-size: 1.75rem;
    }
    
    /* Floating Elements Hidden on Very Small Screens */
    .floating-badge {
        display: none;
    }
    
    .floating-image {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        margin-top: 1rem;
    }
    
    .btn-lg {
        padding: 14px 28px;
        font-size: 16px;
    }
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}
