:root {
    --primary-color: #80b31a;
    --primary-dark: #6a9616;
    --accent-color: #f34e3a;
    --white: #ffffff;
    --off-white: #fdfdfd;
    --black: #000000;
    --light-gray: #f7f7f7;
    --medium-gray: #dfdede;
    --dark-gray: #817D7D;
    --text-dark: #29282d;
    --text-light: #9c9c9c;
    --border-color: #e0e0e0;
    --shadow: 0 5px 25px rgba(0,0,0,0.1);
    --shadow-lg: 0 15px 40px rgba(0,0,0,0.2);
    --shadow-xl: 0 25px 60px rgba(0,0,0,0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

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

/* ============================================
   BACKGROUND OPTIONS - Uncomment your preferred option
   ============================================ */

/* OPTION 1: Subtle Gray Gradient (Professional & Clean) */
/*
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}
*/

/* OPTION 2: Soft Green Tint (Nature-Inspired) */
/*
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(180deg, #f8fdf4 0%, #e8f5e1 50%, #f8fdf4 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}
*/

/* Minimal Light Background */

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}


/* OPTION 4: Warm Beige (Comfortable & Inviting) */
/*
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(180deg, #faf8f5 0%, #f0ebe5 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}
*/

/* OPTION 5: Dark Sophisticated (Modern Dark Theme) */
/*
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
    background: linear-gradient(135deg, #1e1e2e 0%, #2d2d44 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}
*/

/* OPTION 6: Athletic Pattern (Dynamic & Energetic) */
/*
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #f9fdf6;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(128, 179, 26, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(128, 179, 26, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(106, 150, 22, 0.03) 0%, transparent 50%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}
*/

/* OPTION 7: Mesh Gradient (Contemporary & Vibrant) */
/*
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: 
        radial-gradient(at 40% 20%, rgba(128, 179, 26, 0.08) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(240, 240, 240, 1) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(128, 179, 26, 0.05) 0px, transparent 50%),
        radial-gradient(at 80% 100%, rgba(240, 240, 240, 1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(250, 250, 250, 1) 0px, transparent 50%);
    background-color: #fafafa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}
*/

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

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-title span {
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    display: block;
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 70px;
    overflow: hidden;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    animation: kenBurns 20s ease-out infinite;
}

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

/* Ken Burns effect for subtle zoom */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Special handling for portrait images */
.hero-slide[style*="IMG_4820"] {
    background-position: center center;
    background-size: cover;
}

/* Hero Navigation Dots */
.hero-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.2);
}

.hero-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    width: 30px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(128, 179, 26, 0.9) 0%, rgba(41, 40, 45, 0.95) 100%);
    mix-blend-mode: multiply;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 40px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}

.hero-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 30px auto;
    position: relative;
    overflow: hidden;
}

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

.hero-title span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.95;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(128, 179, 26, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(128, 179, 26, 0.5); }
    to { box-shadow: 0 0 20px rgba(128, 179, 26, 0.8), 0 0 30px rgba(128, 179, 26, 0.4); }
}

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

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

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

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(128, 179, 26, 0.3);
}

.btn-block {
    width: 100%;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

/* About Video Section */
.about-video {
    position: relative;
    width: 100%;
    height: 500px;
    max-height: 500px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-video-player {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
}

.about-video.show-overlay .video-overlay,
.about-video:hover .video-overlay {
    opacity: 1;
    pointer-events: all;
}

.video-play-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.video-play-btn:hover {
    transform: scale(1.1);
}

.video-play-btn svg {
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

/* Hide overlay when video is playing */
.about-video.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    justify-content: center;
}

.team-member {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: left;
    border-left: 4px solid var(--primary-color);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.member-info {
    padding: 30px 25px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.member-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 700;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-info p:last-child {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 15px;
}

/* Concept Section */
.concept-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.concept-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 4px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.concept-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.concept-icon {
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary-color);
}

.concept-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Training Section */
.training-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.training-card {
    background: var(--white);
    padding: 30px;
    border-radius: 4px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.card-icon {
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: var(--primary-color);
}

.training-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Prices Section */
.price-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.price-card {
    background: var(--white);
    border-radius: 4px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.price-card.featured {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.price-card.featured .card-header {
    background: var(--primary-color);
    color: var(--white);
}

.card-header {
    background: #f8f9fa;
    padding: 30px;
    text-align: center;
    position: relative;
}

.card-header h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price .amount {
    font-size: 48px;
    font-weight: 700;
}

.price .currency {
    font-size: 24px;
}

.price .period {
    font-size: 18px;
    color: var(--text-light);
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6b6b;
    color: var(--white);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.card-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-body .btn {
    width: 100%;
    margin-top: auto;
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.price-features li:last-child {
    border-bottom: none;
}

/* Testimonials */
.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    width: 100%;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    animation: slideInSmooth 0.6s ease forwards;
}

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

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

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    position: relative;
}

.google-review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.stars {
    color: #ffc107;
    font-size: 18px;
    margin-top: 5px;
}

.review-source {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-source .ph-bold {
    font-size: 16px;
    color: #4285f4;
}

.google-rating-summary {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.google-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #fff;
    border: 2px solid #4285f4;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: var(--transition);
}

.google-link:hover {
    background: #4285f4;
    color: white;
}

.google-link .ph-bold {
    font-size: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-light);
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.info-item {
    display: flex;
    align-items: start;
    margin-bottom: 30px;
}

.info-item i {
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 28px;
    color: var(--primary-color);
}

.info-item h4 {
    margin-bottom: 10px;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

/* Contact Form */
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--light-gray);
}

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

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-column h3 span {
    color: var(--primary-color);
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

.footer-column a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: #6a9616;
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.newsletter-form button:hover {
    background: #6a9616;
}

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

/* Press & References Section */
.press-references {
    background: var(--white);
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.press-pdf-item {
    text-align: center;
}

.pdf-link {
    display: block;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
}

.pdf-thumbnail {
    position: relative;
    width: 140px;
    height: 180px;
    margin: 0 auto 15px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: var(--transition);
}

.pdf-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pdf-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.pdf-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(128, 179, 26, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.pdf-view-text {
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.press-pdf-item:hover .pdf-thumbnail {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.press-pdf-item:hover .pdf-overlay {
    opacity: 1;
}

.press-pdf-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.press-pdf-item p {
    font-size: 13px;
    color: var(--text-light);
}

.press-more {
    text-align: center;
    margin: 40px 0;
}

@media (max-width: 1200px) {
    .press-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .press-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .pdf-thumbnail {
        width: 100px;
        height: 133px;
    }
}

@media (max-width: 480px) {
    .press-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.celebrity-references {
    text-align: center;
}

.celebrity-references h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.celebrity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.celebrity-card {
    background: var(--white);
    border-radius: 4px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.celebrity-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.celebrity-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.celebrity-card p {
    color: var(--primary-color);
    font-size: 14px;
}

.press-cta {
    margin-top: 30px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: var(--shadow);
    cursor: pointer;
    height: 250px;
}

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

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

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeInUp {
    animation-name: fadeInUp;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Hero Scroll Indicator - Removed */

/* Premium Card Effects */
.card-hover {
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(128, 179, 26, 0.1));
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.card-hover:hover::before {
    transform: translateX(0);
}

/* Loading Animation */
.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Map Section */
.map-section {
    position: relative;
    margin-top: 0;
}

.map-container {
    position: relative;
    overflow: hidden;
}

#map {
    filter: grayscale(80%) contrast(1.2);
    transition: filter 0.3s ease;
}

#map:hover {
    filter: grayscale(40%) contrast(1.1);
}

.map-overlay-info {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 500;
    pointer-events: none;
}

.map-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-width: 300px;
    pointer-events: all;
    border: 1px solid rgba(128, 179, 26, 0.2);
    position: relative;
    overflow: hidden;
}

.map-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.map-info-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.map-info-card p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.divider-small {
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    margin: 20px 0;
}

.btn-small {
    padding: 10px 24px;
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* Leaflet Custom Styles */
.leaflet-control-zoom {
    border: none !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1) !important;
    border-radius: 4px !important;
    overflow: hidden;
}

.leaflet-control-zoom a {
    background: white !important;
    color: var(--text-dark) !important;
    border: none !important;
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
    font-size: 18px !important;
    transition: all 0.3s ease !important;
}

.leaflet-control-zoom a:hover {
    background: var(--primary-color) !important;
    color: white !important;
}

.leaflet-popup-content-wrapper {
    background: white;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 0;
}

.leaflet-popup-content {
    margin: 20px;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
}

.leaflet-popup-tip {
    background: white;
}

/* Phosphor Icons Styling */
.ph-bold,
.ph-fill {
    font-size: 1.2em;
    vertical-align: middle;
    margin-right: 8px;
    color: var(--primary-color);
}

.concept-icon .ph-bold {
    font-size: 2em;
    margin-right: 0;
}

.card-icon .ph-bold {
    font-size: 2em;
    margin-right: 0;
}

.feature-item .ph-fill {
    color: var(--primary-color);
    font-size: 1.1em;
}

.info-item .ph-bold {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
}

.social-links .ph-bold {
    font-size: 1.8em;
    margin-right: 0;
    color: white;
    transition: var(--transition);
}

.social-links a {
    color: white;
    transition: var(--transition);
}

.social-links a:hover .ph-bold {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1em;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question.active {
    background: var(--primary-color);
    color: white;
}

.faq-icon {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-answer.active {
    max-height: 500px;
    padding: 20px 25px;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}