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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2E2E2E;
    overflow-x: hidden;
    background: url("./assets/images/img.png") repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    min-height: 100vh;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Skip to main content - visible on focus only */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    z-index: 10000;
    padding: 12px 20px;
    background: #1A535C;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 20px;
    outline: 2px solid #A8D5BA;
    outline-offset: 2px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible;
}

/* Page sections for Scrollify */
.page-section {
    min-height: auto;
    position: relative;
    overflow: visible;
    display: block;
    padding: 50px 0 40px 0;
}

/* Apply semi-transparent overlay to all sections except hero */
.page-section:not(.hero)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

/* Keep testimonials visible by reducing the overlay strength */
.testimonials.page-section::before,
.video-testimonials.page-section::before {
    background: rgba(255, 255, 255, 0.35);
}

/* Reduce excessive vertical spacing for testimonial sections */
.testimonials.page-section,
.video-testimonials.page-section {
    min-height: auto;
    padding: 40px 0;
    display: flex;
    align-items: flex-start;
}

/* Tighter gap between text and video testimonials */
.testimonials.page-section {
    padding-bottom: 20px;
}

.video-testimonials.page-section {
    padding-top: 20px;
}

.video-testimonials .video-testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.video-testimonials .video-testimonial-card {
    display: flex;
    justify-content: center;
}

/* Read More Button Styles */
.read-more-container {
    text-align: left;
    margin: 0;
    position: relative;
    z-index: 2;
    display: flex;
    align-self: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #1A535C;
    color: #1A535C;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
}

.read-more-btn:hover {
    background: #1A535C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 83, 92, 0.3);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(3px);
}

/* Coming Soon Page Styles */
.coming-soon-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 83, 92, 0.9), rgba(168, 213, 186, 0.8));
    position: relative;
    overflow: visible;
    padding: 40px 0;
}

.coming-soon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("./assets/images/img.png") repeat;
    background-size: 200px 200px;
    background-position: center;
    opacity: 0.05;
    z-index: 1;
}

.coming-soon-content {
    text-align: center;
    max-width: 800px;
    padding: 60px 20px;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
}

.coming-soon-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #A8D5BA, #1A535C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: white;
    box-shadow: 0 15px 40px rgba(26, 83, 92, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(26, 83, 92, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 50px rgba(26, 83, 92, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(26, 83, 92, 0.3);
    }
}

.coming-soon-content h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    color: #1A535C;
    margin-bottom: 10px;
    font-weight: 600;
}

.coming-soon-content h2 {
    font-size: 2.5rem;
    color: #2E2E2E;
    margin-bottom: 30px;
    font-weight: 500;
}

.coming-soon-description {
    font-size: 1.3rem;
    color: #2E2E2E;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
}

.coming-soon-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    font-style: italic;
}

.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
    padding: 30px 0;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(168, 213, 186, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    background: rgba(168, 213, 186, 0.2);
    border-color: #A8D5BA;
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: #1A535C;
    margin-bottom: 10px;
}

.feature-item span {
    font-size: 1.1rem;
    color: #2E2E2E;
    font-weight: 500;
}

.coming-soon-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
    z-index: 3;
    position: relative;
}

.coming-soon-note {
    margin-top: 40px;
    padding: 20px;
    background: rgba(26, 83, 92, 0.1);
    border-radius: 10px;
    border-left: 4px solid #1A535C;
    z-index: 3;
    position: relative;
}

.coming-soon-note p {
    color: #1A535C;
    font-size: 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.coming-soon-note i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .coming-soon-content {
        padding: 40px 20px;
        margin: 20px;
    }
    
    .coming-soon-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .coming-soon-content h1 {
        font-size: 2.8rem;
    }
    
    .coming-soon-content h2 {
        font-size: 2rem;
    }
    
    .coming-soon-description {
        font-size: 1.1rem;
    }
    
    .coming-soon-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .coming-soon-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .coming-soon-features {
        grid-template-columns: 1fr;
    }
    
    .coming-soon-content h1 {
        font-size: 2.2rem;
    }
    
    .coming-soon-content h2 {
        font-size: 1.6rem;
    }
}

/* Ensure footer is visible on coming soon page */
body:has(.coming-soon-section) .footer {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Ensure sections take full viewport height */
.page-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Hero section specific styling */
.hero.page-section {
    align-items: center;
    justify-content: center;
    padding: 100px 0 60px 0;
}

/* Active section styling */
.page-section.active {
    z-index: 10;
    transform: scale(1.01);
    transition: transform 0.3s ease;
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.scroll-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(26, 83, 92, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.scroll-dot.active {
    background: #1A535C;
    transform: scale(1.3);
    border-color: #A8D5BA;
}

.scroll-dot:hover {
    background: #A8D5BA;
    transform: scale(1.2);
}

/* Normal scroll elements */
.normal-scroll {
    overflow-y: auto;
    scroll-behavior: smooth;
}

/* Section Decorative Images */
.section-decor {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
    width: 100%;
}

.section-decor-image {
    height: 300px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    opacity: 1;
    transition: all 0.1s ease;
}

.section-decor-image:hover {
    opacity: 1;
    transform: scale(1.02);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 40px;
    width: 100%;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A535C;
    margin-bottom: 15px;
    position: relative;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2), 0 0 8px rgba(255, 255, 255, 0.6);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #A8D5BA, #1A535C);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 20px auto 0 auto;
    text-align: center;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1), 0 0 5px rgba(255, 255, 255, 0.4);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(168, 213, 186, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-shrink: 0;
}

.site-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .site-logo {
        height: 50px;
    }
}

.logo-text {
    font-family: 'Dancing Script', cursive;
    font-size: 1.6rem;
    font-weight: 600;
    color: #1A535C;
    text-align: center;
    line-height: 1.2;
    margin: 0;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: #2E2E2E;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #1A535C;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #A8D5BA;
    transition: width 0.3s ease;
}

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

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    display: none;
    list-style: none;
    margin: 0;
    z-index: 1001;
}

/* Desktop hover effect */
@media (hover: hover) and (pointer: fine) {
    .nav-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: block;
    }
}

/* Mobile/Tablet active state */
.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #2E2E2E;
    text-decoration: none;
    transition: background-color 0.3s ease;
    list-style: none;
}

.dropdown-item:hover {
    background-color: #F8F9FA;
    color: #1A535C;
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #1A535C;
    transition: 0.3s;
}

/* Banner Section */
.banner {
    width: 100vw !important;
    max-width: none !important;
    height: 600px;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    background: url('./assets/images/img.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #1a1a1a;
    padding: 0 20px;
    position: relative;
    margin-bottom: 0;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
}

.banner-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px 60px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.banner h1,
.banner h2.banner-heading {
    font-size: 48px;
    margin: 0 0 20px 0;
    font-weight: 700;
    color: #1A535C;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2), 0 0 8px rgba(255, 255, 255, 0.6);
}

.banner p {
    font-size: 20px;
    margin: 0 0 30px 0;
    font-weight: 400;
    color: #2E2E2E;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1), 0 0 5px rgba(255, 255, 255, 0.4);
}

.banner-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 32px;
    padding: 0 20px;
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FAF9F6 0%, #F8F9FA 100%);
    background-image: url('./assets/images/img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Hero Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
}

/* Animated gradient background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 3;
}

/* Floating particles background */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 4;
}

/* Subtle gradient animation keyframes */
@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(135deg, rgba(168, 213, 186, 0.5) 0%, rgba(26, 83, 92, 0.5) 100%);
    }
    50% {
        background: linear-gradient(135deg, rgba(168, 213, 186, 0.55) 0%, rgba(26, 83, 92, 0.45) 100%);
    }
}

/* Subtle floating particles animation */
@keyframes floatingParticles {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.8;
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 100vh;
    width: 100%;
    padding: 200px 0 120px 0;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 700;
    color: #1E3A34;
    margin-bottom: 40px;
    line-height: 1.1;
    text-align: center;
    width: 100%;
    margin-top: 10px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
    z-index: 6;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.8);
}

/* Animated text reveals for title lines */
.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: textReveal 1s ease-out forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.5s;
}

.title-line:nth-child(2) {
    animation-delay: 0.8s;
}

.title-line:nth-child(3) {
    animation-delay: 1.1s;
}

.title-accent {
    background: linear-gradient(45deg, #A8D5BA, #FFFFFF);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 6s ease-in-out infinite;
}

/* Text reveal animation */
@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtle gradient text animation */
@keyframes gradientText {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 50% 50%;
    }
}

/* Fade in up animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade in scale animation */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Floating image animation */
@keyframes floatImage {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Subtle rotating border animation */
@keyframes rotateBorder {
    0% {
        background-position: 0% 50%;
        transform: rotate(0deg);
    }
    100% {
        background-position: 0% 50%;
        transform: rotate(360deg);
    }
}

.title-line {
    display: block;
    margin-bottom: 2px;
}

.title-accent {
    background: linear-gradient(135deg, #A8D5BA, #1A535C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-top: 2px;
}

.hero-subtitle {
    width: 100%;
    text-align: center;
    margin: 0 auto 40px auto;
    position: relative;
    z-index: 6;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sliding-text-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sliding-text-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.sliding-text-item {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #FFFFFF;
    line-height: 1.3;
    font-weight: 400;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 900px;
    text-align: center;
    opacity: 0;
    transition: all 0.6s ease-out;
    z-index: 10;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 255, 255, 0.4);
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 15px 20px;
    box-shadow: none;
    white-space: nowrap;
    overflow: hidden;
}

.sliding-text-item.active {
    opacity: 1;
    animation: subtleGlow 3s ease-in-out infinite alternate;
}

@keyframes subtleGlow {
    0% {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 255, 255, 0.4);
    }
    100% {
        text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 255, 255, 0.6);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin-bottom: 40px;
    width: 100%;
    padding: 0 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 1.7s forwards;
    position: relative;
    z-index: 100;
}

.hero-visual {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    animation: fadeInScale 1s ease-out 2s forwards;
    position: relative;
    z-index: 6;
}

.hero-image-container {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #A8D5BA;
    box-shadow: 0 20px 40px rgba(26, 83, 92, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: floatImage 8s ease-in-out infinite;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, #A8D5BA, #FFFFFF);
    background-size: 200% 200%;
    animation: rotateBorder 8s linear infinite;
    z-index: -1;
}

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

/* Additional floating elements */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 7;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: floatAround 25s linear infinite;
}

.floating-element:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 30s;
}

.floating-element:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 15%;
    animation-delay: 6s;
    animation-duration: 35s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 20%;
    animation-delay: 12s;
    animation-duration: 40s;
}

.floating-element:nth-child(4) {
    width: 30px;
    height: 30px;
    top: 40%;
    right: 30%;
    animation-delay: 18s;
    animation-duration: 25s;
}

.floating-element:nth-child(5) {
    width: 50px;
    height: 50px;
    bottom: 20%;
    right: 10%;
    animation-delay: 24s;
    animation-duration: 32s;
}

/* Subtle floating around animation */
@keyframes floatAround {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: translate(30px, -20px) rotate(180deg);
        opacity: 0.4;
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
        opacity: 0.2;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.2;
    min-height: 52px;
    min-width: 180px;
    box-sizing: border-box;
    text-align: center;
    white-space: nowrap;
    user-select: none;
    outline: none;
    position: relative;
    overflow: hidden;
    border-style: solid;
    border-width: 2px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    flex: 0 0 auto;
}

.btn:focus {
    outline: 2px solid rgba(26, 83, 92, 0.3);
    outline-offset: 2px;
}

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

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(168, 213, 186, 0.25);
    border: 2px solid #1A535C;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(168, 213, 186, 0.35);
    background: linear-gradient(135deg, #B8E5C5 0%, #2A636C 100%);
    border: 2px solid #2A636C;
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(168, 213, 186, 0.3);
    border: 2px solid #1A535C;
}

.btn-secondary {
    background: transparent;
    color: #1A535C;
    border: 2px solid #1A535C;
    box-shadow: 0 4px 16px rgba(26, 83, 92, 0.1);
}

.btn-secondary:hover {
    background: #1A535C;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 83, 92, 0.2);
    border: 2px solid #1A535C;
}

.btn-secondary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(26, 83, 92, 0.15);
    border: 2px solid #1A535C;
}

.btn-outline {
    background: transparent;
    color: #1A535C;
    border: 2px solid #A8D5BA;
    box-shadow: 0 4px 16px rgba(168, 213, 186, 0.1);
}

.btn-outline:hover {
    background: #A8D5BA;
    color: #1A535C;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(168, 213, 186, 0.2);
    border: 2px solid #A8D5BA;
}

.btn-outline:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(168, 213, 186, 0.15);
    border: 2px solid #A8D5BA;
}

/* Instagram Button */
.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(225, 48, 108, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(225, 48, 108, 0.4);
    color: white;
    text-decoration: none;
}

.btn-instagram:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(225, 48, 108, 0.3);
}

.btn-instagram i {
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    background: 
        radial-gradient(circle at 20% 80%, rgba(168, 213, 186, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 83, 92, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #F0FDF5 0%, #E0F2E7 50%, #F0FDF5 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(168, 213, 186, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #A8D5BA, #1A535C);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-icon {
    color: #A8D5BA;
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.author-info h4 {
    color: #1A535C;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
    font-weight: 400;
}

.rating {
    display: flex;
    gap: 3px;
    color: #FFD700;
    font-size: 1rem;
}

.testimonials-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-nav-btn {
    background: #A8D5BA;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.testimonial-nav-btn:hover {
    background: #1A535C;
    transform: scale(1.1);
}

.testimonial-nav-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    opacity: 0.6;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #A8D5BA;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.testimonial-dot.active {
    background: #1A535C;
    opacity: 1;
    transform: scale(1.2);
}

.testimonial-dot:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

/* About Section */
.about {
    background: 
        url('assets/images/img.png'),
        radial-gradient(circle at 20% 80%, rgba(168, 213, 186, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 83, 92, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(168, 213, 186, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #E0F2E7 0%, #F0FDF5 50%, #E0F2E7 100%);
    background-size: cover, auto, auto, auto, auto;
    background-position: center center, 20% 80%, 80% 20%, 40% 40%, 0% 0%;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
    position: relative;
    overflow: hidden;
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,10 Q30,5 40,10 Q50,15 60,10 Q70,5 80,10 L85,20 Q80,25 70,20 Q60,15 50,20 Q40,25 30,20 Q20,25 15,20 Z" fill="%23A8D5BA" opacity="0.3"/></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M80,20 Q70,15 60,20 Q50,25 40,20 Q30,15 20,20 L15,30 Q20,35 30,30 Q40,25 50,30 Q60,35 70,30 Q80,35 85,30 Z" fill="%23A8D5BA" opacity="0.2"/></svg>');
    background-size: 200px 200px, 150px 150px;
    background-position: 10% 20%, 90% 80%;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: 1;
}

.about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,30 Q20,25 30,30 Q40,35 50,30 Q60,25 70,30 Q80,35 90,30 L95,40 Q90,45 80,40 Q70,35 60,40 Q50,45 40,40 Q30,35 20,40 Q10,45 5,40 Z" fill="%231A535C" opacity="0.15"/></svg>');
    background-size: 180px 180px;
    background-position: 5% 60%, 95% 10%;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    min-height: 50vh;
    width: 100%;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.about-text h3 {
    font-size: 1.5rem;
    color: #1A535C;
    margin-bottom: 15px;
    margin-top: 30px;
    text-align: left;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1), 0 0 5px rgba(255, 255, 255, 0.4);
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: #2E2E2E;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: left;
    font-size: 1.1rem;
}

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

.stat {
    text-align: center;
    padding: 20px;
    background: #F8F9FA;
    border-radius: 12px;
    border: 1px solid #E9ECEF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1A535C;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.about-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    align-self: flex-start;
}

.about-image {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.about-profile-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 3/4;
    border-radius: 8px;
    object-fit: cover;
    border: 4px solid #A8D5BA;
    box-shadow: 0 20px 40px rgba(26, 83, 92, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.about-profile-img::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(45deg, #A8D5BA, #1A535C, #A8D5BA, #1A535C);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}



@keyframes gradientRotate {
    0% { 
        transform: rotate(0deg);
        background: linear-gradient(45deg, #A8D5BA, #1A535C, #A8D5BA, #1A535C);
    }
    25% { 
        background: linear-gradient(135deg, #1A535C, #A8D5BA, #1A535C, #A8D5BA);
    }
    50% { 
        background: linear-gradient(225deg, #A8D5BA, #1A535C, #A8D5BA, #1A535C);
    }
    75% { 
        background: linear-gradient(315deg, #1A535C, #A8D5BA, #1A535C, #A8D5BA);
    }
    100% { 
        transform: rotate(360deg);
        background: linear-gradient(45deg, #A8D5BA, #1A535C, #A8D5BA, #1A535C);
    }
}

/* Hidden Content Styles */
.hidden-content {
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.hidden-content.show {
    display: block;
    opacity: 1;
    max-height: 2000px;
}

.read-more-btn.read-less {
    background: #1A535C;
    color: white;
}

/* Professional Achievements Section */
.professional-achievements {
    position: relative;
    z-index: 1;
}

.achievements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    min-height: 50vh;
    width: 100%;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.achievements-text {
    position: relative;
    z-index: 2;
}

.achievements-text p {
    color: #2E2E2E;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: left;
    font-size: 1.1rem;
}

.achievements-text p strong {
    color: #1A535C;
    font-weight: 600;
}

.achievements-text p em {
    font-style: italic;
    color: #1A535C;
    font-size: 1.15rem;
}

.achievements-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    align-self: flex-start;
}

.achievements-image {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.achievements-profile-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 3/4;
    border-radius: 8px;
    object-fit: cover;
    border: 4px solid #A8D5BA;
    box-shadow: 0 20px 40px rgba(26, 83, 92, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.achievements-profile-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(26, 83, 92, 0.2);
}

/* Services Section */
.services {
    background: rgba(248, 249, 250, 0.9) !important;
    padding: 80px 0;
    position: relative;
    z-index: 1;
    min-height: 800px;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.services.page-section {
    display: block !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
}

.services.page-section .container {
    display: block !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    flex-direction: column !important;
}

/* Interactive Service Cards Container - 3x3 Grid */
.services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
    perspective: 1000px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 5;
}

/* Service Card Base Styles */
.service-card {
    background: #ffffff !important;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 3px solid #A8D5BA !important;
    height: 500px;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10;
    min-height: 500px;
}

/* 3D Tilt Effect on Hover */
.service-card:hover {
    transform: rotateY(5deg) rotateX(5deg) translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Card Front and Back */
.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    box-sizing: border-box;
}

.service-card-front {
    background: white;
    z-index: 2;
}

.service-card-back {
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
    color: white;
    transform: rotateY(180deg);
    z-index: 1;
}

/* Flip Animation */
.service-card.flipped {
    transform: rotateY(180deg);
}

.service-card.flipped:hover {
    transform: rotateY(180deg) rotateX(-5deg) rotateZ(-2deg) translateY(-10px);
}

/* Service Icon with Micro-interactions */
.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: white;
    font-size: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-icon::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.6s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 25px rgba(168, 213, 186, 0.4);
}

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

.service-card:hover .service-icon i {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    margin: 22px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
}

.service-card:hover .progress-container {
    opacity: 1;
    transform: translateY(0);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(168, 213, 186, 0.2);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #A8D5BA, #1A535C);
    border-radius: 3px;
    width: 0%;
    transition: width 2s ease-in-out 0.5s;
    position: relative;
}

.service-card:hover .progress-fill {
    width: 85%;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

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

.progress-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 8px;
    text-align: center;
}

/* Service Card Titles */
.service-card h3 {
    font-size: 1.8rem;
    color: #1A535C;
    margin-bottom: 25px;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1), 0 0 5px rgba(255, 255, 255, 0.4);
}

.service-card:hover h3 {
    color: #A8D5BA;
    transform: translateY(-2px);
}

/* Service Card Content */
.service-card p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
    text-align: center;
    flex-grow: 1;
    font-size: 1.1rem;
}

/* Service Link with Enhanced Animation */
.service-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
    padding: 18px 36px;
    border-radius: 25px;
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
    border: 2px solid #A8D5BA;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(168, 213, 186, 0.3);
    z-index: 10;
    min-height: 56px;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    font-size: 1.1rem;
    line-height: 1.2;
    min-width: 160px;
}

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

.service-link:hover {
    gap: 12px;
    background: linear-gradient(135deg, #1A535C 0%, #A8D5BA 100%);
    border-color: #1A535C;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 213, 186, 0.5);
}

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

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* Back Card Content */
.service-card-back h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.service-card-back p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    width: 100%;
}

.service-features li {
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-card-back .service-link {
    background: rgba(255, 255, 255, 0.9);
    color: #1A535C;
    border-color: white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.service-card-back .service-link:hover {
    background: white;
    border-color: #A8D5BA;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* Mobile Responsiveness for Service Cards */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
        max-width: 500px;
    }
    
    .service-card {
        height: 450px;
    }
    
    .service-card-front,
    .service-card-back {
        padding: 35px 25px;
    }
    
    .service-icon {
        width: 75px;
        height: 75px;
        font-size: 1.9rem;
        margin-bottom: 20px;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
        margin-bottom: 16px;
    }
    
    .service-card p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .service-features {
        margin: 20px 0;
    }
    
    .service-features li {
        font-size: 1rem;
        padding: 7px 0;
    }
    
    .service-link {
        padding: 14px 26px;
        font-size: 1rem;
        min-height: 48px;
        min-width: 135px;
    }
}

@media (max-width: 480px) {
    .service-card {
        height: 400px;
    }
    
    .service-card-front,
    .service-card-back {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 1.7rem;
        margin-bottom: 18px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 14px;
    }
    
    .service-card p {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }
    
    .progress-text {
        font-size: 0.9rem;
    }
    
    .service-link {
        padding: 13px 22px;
        font-size: 0.95rem;
        min-height: 46px;
        min-width: 125px;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .service-card {
        transition: none;
    }
    
    .service-card:hover {
        transform: none;
    }
    
    .service-card.flipped {
        transform: none;
    }
    
    .service-icon,
    .service-link,
    .progress-fill {
        transition: none;
    }
    
    .service-card:hover .service-icon {
        transform: none;
    }
    
    .service-card:hover .progress-fill {
        width: 85%;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .service-card {
        border: 2px solid #000;
    }
    
    .service-card-back {
        background: #000;
        color: #fff;
    }
    
    .service-link {
        border: 2px solid currentColor;
    }
}

.service-card.featured {
    border: 3px solid #A8D5BA;
    transform: scale(1.05);
    position: relative;
    z-index: 1;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #A8D5BA, #1A535C);
    color: white;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(168, 213, 186, 0.3);
    z-index: 10;
}

/* Client info styles */
.client-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #E9ECEF;
    text-align: left;
}

.client-info h4 {
    color: #1A535C;
    margin-bottom: 5px;
    font-size: 1rem;
    text-align: left;
}

.client-info span {
    color: #666;
    font-size: 0.9rem;
    text-align: left;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #A8D5BA, #1A535C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #1A535C;
    margin-bottom: 15px;
    text-align: center;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
    flex-grow: 1;
}

.service-link {
    color: #1A535C;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.service-link:hover {
    gap: 10px;
}

/* Community Section */
.community {
    background: 
        radial-gradient(circle at 20% 80%, rgba(168, 213, 186, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 83, 92, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(168, 213, 186, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #E0F2E7 0%, #F0FDF5 50%, #E0F2E7 100%);
    padding-top: 10px;
    position: relative;
    overflow: hidden;
}

.community::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,10 Q30,5 40,10 Q50,15 60,10 Q70,5 80,10 L85,20 Q80,25 70,20 Q60,15 50,20 Q40,25 30,20 Q20,25 15,20 Z" fill="%23A8D5BA" opacity="0.3"/></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M80,20 Q70,15 60,20 Q50,25 40,20 Q30,15 20,20 L15,30 Q20,35 30,30 Q40,25 50,30 Q60,35 70,30 Q80,35 85,30 Z" fill="%23A8D5BA" opacity="0.2"/></svg>');
    background-size: 200px 200px, 150px 150px;
    background-position: 10% 20%, 90% 80%;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: 1;
}

.community::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,30 Q20,25 30,30 Q40,35 50,30 Q60,25 70,30 Q80,35 90,30 L95,40 Q90,45 80,40 Q70,35 60,40 Q50,45 40,40 Q30,35 20,40 Q10,45 5,40 Z" fill="%231A535C" opacity="0.15"/></svg>');
    background-size: 180px 180px;
    background-position: 5% 60%, 95% 10%;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 1;
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 50vh;
    width: 100%;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.community-text h3 {
    font-size: 1.8rem;
    color: #1A535C;
    margin-bottom: 20px;
    text-align: left;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1), 0 0 5px rgba(255, 255, 255, 0.4);
}

.community-text p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
    text-align: left;
}

.community-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #F8F9FA;
    border-radius: 8px;
    justify-content: flex-start;
}

.feature i {
    color: #1A535C;
    font-size: 1.2rem;
}

.feature span {
    color: #2E2E2E;
    font-weight: 500;
}

.community-visual {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Community image styles removed */

/* Blog Section */
.blog {
    background: 
        radial-gradient(circle at 20% 80%, rgba(168, 213, 186, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 83, 92, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(168, 213, 186, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #E0F2E7 0%, #F0FDF5 50%, #E0F2E7 100%);
    position: relative;
    overflow: hidden;
}

.blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,10 Q30,5 40,10 Q50,15 60,10 Q70,5 80,10 L85,20 Q80,25 70,20 Q60,15 50,20 Q40,25 30,20 Q20,25 15,20 Z" fill="%23A8D5BA" opacity="0.3"/></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M80,20 Q70,15 60,20 Q50,25 40,20 Q30,15 20,20 L15,30 Q20,35 30,30 Q40,25 50,30 Q60,35 70,30 Q80,35 85,30 Z" fill="%23A8D5BA" opacity="0.2"/></svg>');
    background-size: 200px 200px, 150px 150px;
    background-position: 10% 20%, 90% 80%;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: 1;
}

.blog::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,30 Q20,25 30,30 Q40,35 50,30 Q60,25 70,30 Q80,35 90,30 L95,40 Q90,45 80,40 Q70,35 60,40 Q50,45 40,40 Q30,35 20,40 Q10,45 5,40 Z" fill="%231A535C" opacity="0.15"/></svg>');
    background-size: 180px 180px;
    background-position: 5% 60%, 95% 10%;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 1;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    align-items: stretch;
    width: 100%;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 350px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

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

.blog-content h3 {
    font-size: 1.2rem;
    color: #1A535C;
    margin-bottom: 10px;
    text-align: left;
}

.blog-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: left;
    flex-grow: 1;
}

.read-more {
    color: #1A535C;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.read-more:hover {
    gap: 10px;
}

.blog-cta {
    text-align: center;
    width: 100%;
}

.read-more {
    color: #1A535C;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #A8D5BA;
    transform: translateX(5px);
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Events Section */
.events {
    background: rgba(255, 255, 255, 0.7);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    align-items: stretch;
    width: 100%;
    margin-top: 20px;
}

.event-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #E9ECEF;
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.event-date {
    text-align: center;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1A535C;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
}

.event-content h3 {
    font-size: 1.2rem;
    color: #1A535C;
    margin-bottom: 10px;
    text-align: left;
}

.event-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: left;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
}

.event-details span {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.event-details i {
    color: #1A535C;
    width: 16px;
}

/* Join Form Modal */
.join-form-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 30px 40px 20px;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.modal-header h2 {
    color: #1A535C;
    font-size: 2em;
    margin-bottom: 10px;
    font-weight: 700;
}

.modal-header p {
    color: #666;
    font-size: 1.1em;
    margin: 0;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5em;
    color: #999;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #f8f9fa;
    color: #1A535C;
}

.form-container {
    padding: 30px 40px 40px;
}

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

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

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modal-container {
        margin: 10px;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 20px 20px 15px;
    }
    
    .modal-header h2 {
        font-size: 1.5em;
        padding-right: 50px;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #1A535C;
    font-size: 0.95em;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4ECDC4;
    background: white;
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9em;
    line-height: 1.5;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
}

.checkbox-label a {
    color: #4ECDC4;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #dc3545 !important;
    background: #fdf2f2 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
    animation: errorPulse 0.6s ease-in-out;
}

.form-group .error-message {
    color: #dc3545;
    font-size: 0.85em;
    margin-top: 5px;
    padding: 8px 12px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: slideInError 0.3s ease-out;
}

/* Error animations */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes errorPulse {
    0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
}

@keyframes slideInError {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced form validation styles */
.validation-summary {
    background: #f8d7da;
    color: #721c24;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #f5c6cb;
    margin-bottom: 20px;
    border-left: 4px solid #dc3545;
    box-shadow: 0 2px 10px rgba(220, 53, 69, 0.1);
    animation: slideInError 0.3s ease-out;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #f5c6cb;
    margin-bottom: 20px;
    border-left: 4px solid #dc3545;
    box-shadow: 0 2px 10px rgba(220, 53, 69, 0.1);
    animation: slideInError 0.3s ease-out;
}

.form-success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #c3e6cb;
    margin-bottom: 20px;
}

/* Contact Section */
.contact {
    background: rgba(248, 249, 250, 0.7);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    width: 100%;
    margin-top: 20px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1A535C;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E9ECEF;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #A8D5BA;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: fit-content;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.contact-item i {
    font-size: 1.5rem;
    color: #1A535C;
    width: 30px;
}

.contact-item h3 {
    color: #1A535C;
    margin-bottom: 5px;
    text-align: left;
}

.contact-item p {
    color: #666;
    text-align: left;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #A8D5BA, #1A535C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(168, 213, 186, 0.3);
}

/* Footer */
.footer {
    background: #1A535C;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
    width: 100%;
    align-items: start;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #A8D5BA;
}

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

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

.footer-section ul li a {
    color: #E9ECEF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #A8D5BA;
}

.footer-section p {
    color: #E9ECEF;
    line-height: 1.6;
}

/* Footer Social Links - Enhanced Visibility */
.footer-section .social-links {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    justify-content: flex-start;
}

/* Connect Section Alignment */
.footer-section:has(.social-links) h4 {
    margin-bottom: 15px;
    margin-left: 0;
    text-align: left;
}

.footer-section .social-links a {
    width: 55px;
    height: 55px;
    background: #2d5d5f;  /* muted teal circle */
    color: #ffffff;       /* white icons */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 22px;
}

.footer-section .social-links a:hover {
    background: #4e9a9c; /* lighter teal hover */
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.footer-section .social-links a:active {
    transform: scale(0.95);
}

.footer-section .social-links a i {
    font-size: 22px;
    color: white;
}

.footer-section .social-links a:hover i {
    color: white;
}

/* Footer Social Links Responsive */
@media (max-width: 768px) {
    .footer-section .social-links {
        gap: 15px;
        justify-content: center;
    }
    
    .footer-section .social-links a {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .footer-section .social-links a i {
        font-size: 20px;
    }
    
    /* Center Connect heading on mobile */
    .footer-section:has(.social-links) h4 {
        text-align: center;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .footer-section .social-links {
        gap: 12px;
    }
    
    .footer-section .social-links a {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .footer-section .social-links a i {
        font-size: 18px;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(168, 213, 186, 0.2);
    color: #E9ECEF;
}

/* Story Tree Community Page Styles */

/* Featured Stories Section */
.featured-stories {
    padding: 80px 0;
    background: #f8f9fa;
}

.featured-stories h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1A535C;
    font-size: 2.5rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.story-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.story-card.featured {
    border: 2px solid #A8D5BA;
}

.story-image {
    height: 280px;
    background: linear-gradient(135deg, #A8D5BA, #1A535C);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    color: white;
    font-size: 3rem;
}

.story-content {
    padding: 25px;
}

/* Decorative Image Effects for About Page */
.story-block .story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(26, 83, 92, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #A8D5BA, #1A535C);
    padding: 4px;
}

.story-block .story-image::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #A8D5BA, #1A535C, #A8D5BA, #1A535C);
    border-radius: 23px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientShift 3s ease-in-out infinite;
}

.story-block .story-image:hover::before {
    opacity: 1;
}

.story-block .story-image:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 70px rgba(26, 83, 92, 0.4);
}

.story-block .story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    border-radius: 16px;
    position: relative;
    z-index: 2;
}

.story-block .story-image:hover .story-img {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

.story-block .story-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(168, 213, 186, 0.1) 0%, 
        rgba(26, 83, 92, 0.1) 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.story-block .story-image:hover::after {
    opacity: 1;
}

@keyframes gradientShift {
    0%, 100% { 
        background: linear-gradient(45deg, #A8D5BA, #1A535C, #A8D5BA, #1A535C);
    }
    50% { 
        background: linear-gradient(45deg, #1A535C, #A8D5BA, #1A535C, #A8D5BA);
    }
}

.story-content h3 {
    color: #1A535C;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.story-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.author {
    color: #1A535C;
    font-weight: 500;
}

.category {
    background: #A8D5BA;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.read-more {
    color: #1A535C;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #A8D5BA;
}

/* Guest Stories Section */
.guest-stories {
    padding: 80px 0;
    background: white;
}

.guest-stories h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1A535C;
    font-size: 2.5rem;
}

.stories-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    background: transparent;
    border: 2px solid #A8D5BA;
    color: #1A535C;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background: #A8D5BA;
    color: white;
}

.tab-content {
    min-height: 400px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.audio-stories,
.video-stories {
    text-align: center;
    padding: 40px 0;
}

.audio-card,
.video-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto 20px;
}

.audio-icon,
.video-placeholder {
    font-size: 3rem;
    color: #1A535C;
}

.audio-content h3,
.video-card h3 {
    color: #1A535C;
    margin-bottom: 10px;
}

.duration {
    background: #A8D5BA;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.coming-soon {
    color: #666;
    font-style: italic;
    margin-top: 20px;
}

/* Case Studies Section */
.case-studies {
    padding: 80px 0;
    background: #f8f9fa;
}

.case-studies h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1A535C;
    font-size: 2.5rem;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.case-study {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #A8D5BA;
}

.case-header h3 {
    color: #1A535C;
    margin: 0;
}

.duration {
    background: #1A535C;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.before h4,
.after h4 {
    color: #1A535C;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.before ul,
.after ul {
    list-style: none;
    padding: 0;
}

.before li,
.after li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.after li {
    color: #1A535C;
    font-weight: 500;
}

.case-quote {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #A8D5BA;
}

.case-quote p {
    font-style: italic;
    color: #1A535C;
    margin-bottom: 10px;
}

.case-quote span {
    color: #666;
    font-weight: 500;
}

/* Community Events Section */
.community-events {
    padding: 80px 0;
    background: white;
}

.community-events h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1A535C;
    font-size: 2.5rem;
}

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

.event-card {
    background: white;
    border: 2px solid #A8D5BA;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.event-date {
    background: #1A535C;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.event-details {
    flex: 1;
}

.event-details h3 {
    color: #1A535C;
    margin-bottom: 8px;
}

.event-details p {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.event-time,
.event-type {
    display: block;
    font-size: 0.8rem;
    color: #1A535C;
    margin-bottom: 5px;
}

.event-type {
    background: #A8D5BA;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Share Story Section */
.share-story {
    padding: 80px 0;
    background: #f8f9fa;
}

.share-story h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #1A535C;
    font-size: 2.5rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.story-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1A535C;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #A8D5BA;
}

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

/* Join Community Section */
.join-community {
    padding: 80px 0;
    background: white;
}

.join-community h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #1A535C;
    font-size: 2.5rem;
}

.community-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #A8D5BA, #1A535C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.benefit-item h3 {
    color: #1A535C;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

.join-cta {
    text-align: center;
    margin-top: 50px;
}

.join-cta .btn {
    margin: 0 10px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.sticky-cta .btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

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

/* Story Tree Community Responsive Styles */
@media (max-width: 768px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .before-after {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        flex-direction: column;
        text-align: center;
    }
    
    .community-benefits {
        grid-template-columns: 1fr;
    }
    
    .story-form {
        padding: 25px;
    }
    
    .join-cta .btn {
        display: block;
        margin: 10px auto;
        width: 200px;
    }
}

@media (max-width: 480px) {
    .featured-stories,
    .guest-stories,
    .case-studies,
    .community-events,
    .share-story,
    .join-community {
        padding: 60px 0;
    }
    
    .featured-stories h2,
    .guest-stories h2,
    .case-studies h2,
    .community-events h2,
    .share-story h2,
    .join-community h2 {
        font-size: 2rem;
    }
    
    .story-form {
        padding: 20px;
    }
    
    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-container {
        min-height: auto;
        padding: 0 15px;
    }
    
    .navbar {
        padding: 6px 0;
    }

    .nav-logo {
        justify-content: flex-start;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

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

    .nav-menu li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    
    /* Mobile nav links - ensure center alignment and clickability */
    .nav-menu .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        pointer-events: auto;
        cursor: pointer;
    }
    
    .nav-menu .nav-link::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .nav-menu .nav-link:hover::after {
        width: 80%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Mobile dropdown styles */
    .nav-dropdown {
        position: relative;
        width: 100%;
        text-align: center;
    }
    
    .nav-dropdown .dropdown-toggle {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        pointer-events: auto;
        cursor: pointer;
    }
    
    .dropdown-menu {
        position: static !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 10px;
        border-radius: 0;
        padding: 0;
        width: 100%;
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block !important;
    }
    
    .dropdown-item {
        padding: 12px 20px;
        border-bottom: 1px solid #e2e8f0;
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }

    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 20px;
        margin-top: 5px;
    }

    .hero-subtitle {
        height: 70px;
    }

    .sliding-text-item {
        font-size: 1.1rem;
        line-height: 1.3;
        padding: 12px 15px;
        max-width: 95%;
    }

    .hero-buttons {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
        padding: 0 20px;
        max-width: 100%;
    }
    
    .btn {
        min-width: 160px;
        font-size: 0.95rem;
        padding: 14px 28px;
    }

    .about-content,
    .achievements-content,
    .community-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
    }
    
    .about-image-wrapper,
    .achievements-image-wrapper {
        align-items: center;
        order: -1;
        margin-bottom: 20px;
    }
    
    .about-profile-img,
    .achievements-profile-img {
        max-width: 100%;
    }
    
    .about {
        background-size: cover, auto, auto, auto, auto;
        background-position: center center, 20% 80%, 80% 20%, 40% 40%, 0% 0%;
    }
    
    .read-more-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .btn-instagram {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .testimonials-container {
        gap: 20px;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 10px);
        padding: 30px 20px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .testimonials-navigation {
        gap: 15px;
        margin-top: 30px;
    }
    
    .testimonial-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    @media (max-width: 480px) {
        .testimonial-card {
            flex: 0 0 100%;
            padding: 25px 20px;
        }
        
        .testimonial-content p {
            font-size: 0.95rem;
        }
        
        .quote-icon {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .author-info h4 {
            font-size: 1.1rem;
        }
        
        .author-info span {
            font-size: 0.85rem;
        }
        
        .testimonials-navigation {
            gap: 10px;
            margin-top: 25px;
        }
        
        .testimonial-nav-btn {
            width: 40px;
            height: 40px;
            font-size: 0.9rem;
        }
        
        .testimonial-dot {
            width: 10px;
            height: 10px;
        }
    }

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

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

    .community-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .scroll-indicator {
        display: none;
    }

    .section-decor {
        display: none;
    }

    .banner {
        height: 400px;
    }
    
    .banner h1,
    .banner h2.banner-heading {
        font-size: 32px;
    }
    
    .banner p {
        font-size: 16px;
    }
    
    .banner-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .hero-content {
        min-height: 70vh;
        padding: 150px 0 60px 0;
    }

    .about-image,
    .community-visual {
        height: auto;
        margin-top: 20px;
    }

    .page-section {
        padding: 80px 0 40px 0;
    }

    .hero.page-section {
        padding: 80px 0 40px 0;
    }
}

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

    .nav-container {
        min-height: 45px;
        padding: 0 10px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

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

    .hero-subtitle {
        height: 60px;
    }

    .sliding-text-item {
        font-size: 0.9rem;
        line-height: 1.2;
        padding: 10px 15px;
        max-width: 98%;
        white-space: normal;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .service-card,
    .blog-card,
    .event-card {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }

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

    .hero-content {
        min-height: 60vh;
        padding: 120px 0 40px 0;
    }

    .hero-buttons {
        gap: 15px;
    }

    .btn {
        padding: 16px 28px;
        font-size: 1rem;
        min-height: 52px;
    }
    
    .banner-buttons {
        gap: 16px;
        margin-top: 24px;
        padding: 0 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
        padding: 0 16px;
        max-width: 90%;
    }
    
    .btn {
        width: 100%;
        min-width: auto;
        max-width: 280px;
    }
    
    /* Universal Hero Mobile Styles */
    .dedicated-hero {
        padding: 20px 0 60px 0;
        min-height: 60vh;
        background-size: cover !important;
        overflow: visible;
        align-items: flex-end;
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
    }
    
    .dedicated-hero-content {
        padding: 0 15px 30px 15px;
    }
    
    .dedicated-hero h1 {
        font-size: 1.8rem;
    }
    
    .dedicated-hero .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .dedicated-hero .hero-buttons {
        gap: 16px;
        margin-top: 24px;
        padding: 0 16px;
    }
    
    /* Service Pages Mobile Styles */
    .service-hero {
        padding: 20px 0 60px 0;
        min-height: 60vh;
        background-size: cover !important;
        overflow: visible;
        align-items: flex-end;
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
    }
    
    .service-hero-content {
        padding: 0 15px 30px 15px;
    }
    
    .service-hero h1 {
        font-size: 1.8rem;
    }
    
    .service-hero .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .service-overview {
        padding: 30px 0;
    }
    
    .service-text h2 {
        font-size: 2rem;
    }
    
    .service-text h3 {
        font-size: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step {
        padding: 25px 20px;
    }
    
    .benefits-section {
        padding: 30px 0;
    }
    
    .benefits-section h2 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .packages-section {
        padding: 30px 0;
    }
    
    .packages-section h2 {
        font-size: 2rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-card {
        padding: 30px 20px;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .testimonials-section {
        padding: 30px 0;
    }
    
    .testimonials-section h2 {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .contact-section {
        padding: 30px 0;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-item {
        padding: 20px;
    }
}

/* Universal Hero Section Styles */
.dedicated-hero {
    background-color: #f8f9fa;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: visible;
    padding: 40px 0 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

.dedicated-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 213, 186, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(26, 83, 92, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.dedicated-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 213, 186, 0.05) 0%, rgba(26, 83, 92, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
}

.dedicated-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px 40px 20px;
    width: 100%;
}

.dedicated-hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFFFFF !important;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.dedicated-hero .hero-subtitle {
    font-size: 1rem;
    color: #FFFFFF !important;
    margin-bottom: 25px;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.dedicated-hero .hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 32px;
    padding: 0 20px;
}

/* Position hero content at bottom for all banners */
.service-hero-content-bottom,
.dedicated-hero-content-bottom {
    position: absolute !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    max-width: 800px !important;
    padding: 0 20px !important;
}

.service-hero--coaching,
.dedicated-hero--habit-mastery,
.dedicated-hero--storytelling,
.dedicated-hero--overcome-anxiety,
.dedicated-hero--relationship-mentoring,
.dedicated-hero--public-speaking,
.dedicated-hero--wisdom-vault,
.dedicated-hero--media-coverage,
.dedicated-hero:not(.dedicated-hero--contact) {
    position: relative !important;
    align-items: flex-end !important;
    justify-content: center !important;
}

/* Special handling for contact page - keep its existing styling but add bottom positioning */
.dedicated-hero--contact .dedicated-hero-content-bottom {
    bottom: 80px !important;
}

.dedicated-hero .btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.dedicated-hero .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Fallback styling for pages without a specific banner class */
.dedicated-hero:not([class*="dedicated-hero--"]) {
    background-image:
        linear-gradient(135deg, rgba(168, 213, 186, 0.6) 0%, rgba(26, 83, 92, 0.6) 100%),
        url('./assets/images/img.png');
    background-size: cover, 20px 20px;
    background-position: center, 0 0;
    background-repeat: no-repeat, repeat;
}

/* Service-specific dedicated hero banners */
.dedicated-hero--habit-mastery {
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05)),
        url('assets/images/Banners/habit-mastery.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

.dedicated-hero--overcome-anxiety {
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05)),
        url('assets/images/Banners/overcome-anxiety.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

.dedicated-hero--public-speaking {
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05)),
        url('assets/images/Banners/public-speaking.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

.dedicated-hero--relationship-mentoring {
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05)),
        url('assets/images/Banners/relationship-mentoring.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

.dedicated-hero--storytelling {
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05)),
        url('assets/images/Banners/storytelling.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

.dedicated-hero--wisdom-vault {
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05)),
        url('assets/images/Banners/wisdomvault_bannner.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

.dedicated-hero--contact {
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)),
        url('assets/images/Banners/contact-us.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 80px;
    position: relative;
}

.dedicated-hero--contact::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%) !important;
    z-index: 1;
}

.dedicated-hero--contact .dedicated-hero-content {
    padding-top: 100px;
    padding-bottom: 40px;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 60px 40px;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dedicated-hero--contact h1 {
    color: #FFFFFF !important;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 1), 0 0 30px rgba(0, 0, 0, 0.8), 0 0 60px rgba(0, 0, 0, 0.5) !important;
    font-weight: 700 !important;
    font-size: 2.5rem !important;
    letter-spacing: 0.5px;
}

.dedicated-hero--contact .hero-subtitle {
    color: #FFFFFF !important;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 1), 0 0 25px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 0, 0, 0.5) !important;
    font-weight: 500 !important;
    font-size: 1.1rem !important;
    line-height: 1.6;
}

.dedicated-hero--contact .hero-buttons {
    margin-top: 40px !important;
}

.dedicated-hero--contact .btn {
    background: linear-gradient(135deg, #1A535C 0%, #4ECDC4 100%) !important;
    color: #FFFFFF !important;
    padding: 16px 32px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 30px rgba(26, 83, 92, 0.3) !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.3s ease !important;
}

.dedicated-hero--contact .btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 40px rgba(26, 83, 92, 0.5) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.dedicated-hero--contact .btn-secondary {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #1A535C !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
    text-shadow: none !important;
}

.dedicated-hero--contact .btn-secondary:hover {
    background: #FFFFFF !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5) !important;
}

/* Mobile responsive styles for contact hero */
@media (max-width: 768px) {
    .dedicated-hero--contact .dedicated-hero-content {
        padding: 40px 20px !important;
        margin: 0 15px;
        background: rgba(0, 0, 0, 0.5) !important;
    }
    
    .dedicated-hero--contact h1 {
        font-size: 2rem !important;
    }
    
    .dedicated-hero--contact .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .dedicated-hero--contact .btn {
        padding: 14px 24px !important;
        font-size: 1rem !important;
        width: 100%;
        max-width: 280px;
    }
    
    .dedicated-hero--contact .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px !important;
    }
}

@media (max-width: 480px) {
    .dedicated-hero--contact .dedicated-hero-content {
        padding: 30px 15px !important;
        margin: 0 10px;
    }
    
    .dedicated-hero--contact h1 {
        font-size: 1.75rem !important;
    }
    
    .dedicated-hero--contact .hero-subtitle {
        font-size: 0.95rem !important;
    }
}

.dedicated-hero--about {
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05)),
        url('assets/images/about%20banner%20pallavi%20singh.jpg');
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 500px;
    width: 100%;
    padding: 0;
    margin: 0;
    display: block;
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
}

.dedicated-hero--about::before {
    display: none !important;
}

.dedicated-hero--about::after {
    display: none !important;
}

.dedicated-hero--about .dedicated-hero-content {
    display: none;
}

/* Ensure banner displays properly on all screen sizes */
@media (min-width: 1200px) {
    .dedicated-hero--about {
        min-height: 600px;
        background-size: contain;
        background-position: center top;
    }
}

@media (max-width: 768px) {
    .dedicated-hero--about {
        min-height: 400px;
        background-size: contain;
        background-position: center top;
    }
}

@media (max-width: 480px) {
    .dedicated-hero--about {
        min-height: 300px;
        background-size: contain;
        background-position: center top;
    }
}

/* Service Pages Styles */
.service-hero {
    /* Fallback gradient if a specific banner class is not applied */
    background-color: #f8f9fa;
    background: linear-gradient(135deg, #FAF9F6 0%, #F8F9FA 100%);
    position: relative;
    overflow: visible;
    padding: 40px 0 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 213, 186, 0.5) 0%, rgba(26, 83, 92, 0.5) 100%);
    z-index: 1;
}

.service-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px 40px 20px;
    width: 100%;
}

.service-hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.service-hero .hero-subtitle {
    font-size: 1rem;
    color: #FFFFFF;
    margin-bottom: 25px;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

/* Coaching banner */
.service-hero--coaching {
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05)),
        url('assets/images/Banners/coaching-mentoring-banner.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

.service-overview {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.9);
}

.service-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-text h2 {
    font-size: 2.5rem;
    color: #1A535C;
    margin-bottom: 20px;
    text-align: center;
}

.service-text h3 {
    font-size: 1.8rem;
    color: #1A535C;
    margin: 20px 0 15px 0;
    text-align: center;
}

.service-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #E9ECEF;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #A8D5BA, #1A535C);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h4 {
    font-size: 1.3rem;
    color: #1A535C;
    margin-bottom: 15px;
}

.step p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.benefits-section {
    padding: 40px 0;
    background: rgba(248, 249, 250, 0.9);
}

.benefits-section h2 {
    font-size: 2.5rem;
    color: #1A535C;
    text-align: center;
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #E9ECEF;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-card i {
    font-size: 3rem;
    color: #A8D5BA;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: #1A535C;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.packages-section {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.9);
}

.packages-section h2 {
    font-size: 2.5rem;
    color: #1A535C;
    text-align: center;
    margin-bottom: 30px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 0 20px;
}

.package-card {
    background: white;
    padding: 50px 30px 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #E9ECEF;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    overflow: visible;
    min-height: 500px;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    border: 3px solid #A8D5BA;
    transform: scale(1.05);
    z-index: 1;
}

.package-card.featured.featured-package {
    border: none;
    transform: scale(1.05);
}


.package-card h3 {
    font-size: 1.5rem;
    color: #1A535C;
    margin-bottom: 20px;
}

/* Price styling removed - no longer needed */

.package-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.package-card li {
    padding: 10px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
    text-align: left;
    width: 100%;
    max-width: 200px;
}

.package-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #A8D5BA;
    font-weight: bold;
    font-size: 1.1rem;
}

.package-card .btn {
    margin-top: auto;
    width: 100%;
    max-width: 200px;
    align-self: center;
}

.testimonials-section {
    padding: 40px 0;
    background: rgba(248, 249, 250, 0.9);
}

.testimonials-section h2 {
    font-size: 2.5rem;
    color: #1A535C;
    text-align: center;
    margin-bottom: 30px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #E9ECEF;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.client-info h4 {
    font-size: 1.2rem;
    color: #1A535C;
    margin-bottom: 5px;
}

.client-info span {
    color: #A8D5BA;
    font-weight: 500;
}

.contact-section {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.9);
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #1A535C;
    text-align: center;
    margin-bottom: 15px;
}

.contact-section > p {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 2rem;
    color: #1A535C;
    width: 40px;
}

.contact-item h3 {
    color: #1A535C;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

/* Beautiful Instagram Card Styling */
.contact-item:has(.fab.fa-instagram) {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 50%, #fbcfe8 100%);
    border: 2px solid #ec4899;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
}

.contact-item:has(.fab.fa-instagram)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #fdf2f8, #fce7f3, #fbcfe8, #f9a8d4);
    background-size: 400% 400%;
    animation: instagramGradient 3s ease infinite;
    opacity: 0.3;
    z-index: 0;
}

.contact-item:has(.fab.fa-instagram) > * {
    position: relative;
    z-index: 1;
}

.contact-item:has(.fab.fa-instagram):hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.2);
    border-color: #be185d;
}

.contact-item:has(.fab.fa-instagram) .fab.fa-instagram {
    background: linear-gradient(45deg, #fdf2f8, #fce7f3, #fbcfe8, #f9a8d4, #ec4899, #be185d);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    animation: instagramGradient 3s ease infinite;
    filter: drop-shadow(0 2px 4px rgba(236, 72, 153, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.contact-item:has(.fab.fa-instagram) h3 {
    color: #be185d;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(236, 72, 153, 0.1);
}

.contact-item:has(.fab.fa-instagram) p {
    color: #831843;
    font-weight: 500;
}

.contact-item:has(.fab.fa-instagram) .btn {
    background: linear-gradient(45deg, #ec4899, #be185d);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
    transition: all 0.3s ease;
}

.contact-item:has(.fab.fa-instagram) .btn:hover {
    background: linear-gradient(45deg, #be185d, #9d174d);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

@keyframes instagramGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Instagram Sparkle Effects */
.contact-item:has(.fab.fa-instagram)::after {
    content: '✨';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
    z-index: 2;
}

.contact-item:has(.fab.fa-instagram):hover::after {
    animation: sparkle 0.8s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

/* Instagram Card Glow Effect */
.contact-item:has(.fab.fa-instagram) {
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.15), 
                0 0 0 1px rgba(236, 72, 153, 0.1);
}

.contact-item:has(.fab.fa-instagram):hover {
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.25), 
                0 0 20px rgba(236, 72, 153, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Instagram Icon Responsive Alignment */
@media (max-width: 768px) {
    .contact-item:has(.fab.fa-instagram) .fab.fa-instagram {
        font-size: 2.2rem;
        width: 45px;
        height: 45px;
    }
    
    .contact-item:has(.fab.fa-instagram) {
        padding: 20px;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .contact-item:has(.fab.fa-instagram) .fab.fa-instagram {
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    
    .contact-item:has(.fab.fa-instagram) {
        padding: 18px;
        gap: 12px;
    }
}

/* Special Highlighting Effects */
.highlight-attraction {
    position: relative;
    overflow: hidden;
}

.highlight-attraction::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 213, 186, 0.1), transparent);
    transition: left 0.5s ease;
}

.highlight-attraction:hover::before {
    left: 100%;
}


.glow-effect {
    box-shadow: 0 0 20px rgba(168, 213, 186, 0.3);
    transition: all 0.3s ease;
}

.glow-effect:hover {
    box-shadow: 0 0 30px rgba(168, 213, 186, 0.5);
}

.featured-package {
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.featured-package::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

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

.featured-package h3 {
    color: white;
}

.featured-package li {
    color: rgba(255, 255, 255, 0.9);
}

.featured-package li::before {
    color: white;
}

/* Success Stories Highlight */
.testimonial-card.success-story {
    border-left: 5px solid #A8D5BA;
    background: linear-gradient(135deg, rgba(168, 213, 186, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
}

/* Process Step Animation */
.step.animate-step {
    animation: slideInUp 0.6s ease forwards;
}

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

/* Benefit Card Special Effects */
.benefit-card.premium-benefit {
    background: linear-gradient(135deg, #FAF9F6 0%, #FFFFFF 100%);
    border: 2px solid #A8D5BA;
    position: relative;
}

.benefit-card.premium-benefit::after {
    content: '★';
    position: absolute;
    top: 15px;
    right: 15px;
    color: #A8D5BA;
    font-size: 1.2rem;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animate-left {
    transform: translateX(-50px);
}

.animate-on-scroll.animate-right {
    transform: translateX(50px);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

/* Discovery Journey Styles */
.discovery-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #A8D5BA;
    margin-bottom: 20px;
    font-family: 'Dancing Script', cursive;
}

.step-content h3 {
    color: #1A535C;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Discover Benefits Styles */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    color: #1A535C;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* How It Works Styles */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.process-step h3 {
    color: #1A535C;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Mentorship Benefits Styles */
.mentorship-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-item .benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h3 {
    color: #1A535C;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.benefit-content p {
    color: #666;
    line-height: 1.6;
}

/* Story Tree Content Styles */
.story-tree-content {
    margin-top: 50px;
}

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

.content-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.content-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.content-item h3 {
    color: #1A535C;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.content-item p {
    color: #666;
    line-height: 1.6;
}

/* Values Grid Styles */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.value-card h3 {
    color: #1A535C;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Activities Grid Styles */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.activity-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.activity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 2rem;
}

.activity-card h3 {
    color: #1A535C;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.activity-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.activity-card ul {
    list-style: none;
    padding: 0;
}

.activity-card li {
    color: #666;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.activity-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #A8D5BA;
    font-weight: bold;
}

/* Member Benefits Styles */
.benefits-list {
    margin-top: 50px;
}

.benefits-list .benefit-item {
    margin-bottom: 30px;
}

.benefits-list .benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
    color: white;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 213, 186, 0.1) 0%, rgba(26, 83, 92, 0.1) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: #FFFFFF !important;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.cta-content p {
    color: #FFFFFF !important;
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    margin-right: auto;
}

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

/* Responsive Styles for New Sections */
@media (max-width: 768px) {
    .discovery-steps,
    .benefits-grid,
    .process-steps,
    .mentorship-benefits,
    .content-grid,
    .values-grid,
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-card,
    .benefit-card,
    .process-step,
    .content-item,
    .value-card,
    .activity-card {
        padding: 25px 20px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* FAQ Section Styles */
.faq-section {
    background: #FAF9F6;
    margin-top: 60px;
    padding-bottom: 80px;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    height: fit-content;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    background: linear-gradient(135deg, #A8D5BA 0%, #F8F9FA 100%);
    border: 2px solid #A8D5BA;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-question {
    background: transparent;
}

.faq-item:hover .faq-question h3 {
    color: #1A535C;
}

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

.faq-question h3 {
    color: #1A535C;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    color: #A8D5BA;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item:hover .faq-question i {
    color: #1A535C;
    transform: scale(1.1);
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #F8F9FA;
}

.faq-item:hover .faq-answer {
    background: rgba(168, 213, 186, 0.1);
}

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

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* FAQ Responsive Styles */
@media (max-width: 768px) {
    .faq-section {
        padding-bottom: 60px;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding-bottom: 40px;
    }
    
    .faq-container {
        gap: 15px;
        margin-top: 20px;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px;
    }
}

/* Connect Page Styles */
.quick-contact {
    background: #FAF9F6;
    padding: 80px 0;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #A8D5BA;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.contact-card h3 {
    color: #1A535C;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.social-info-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF9F6 100%);
    padding: 40px;
    border-radius: 20px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 30px rgba(26, 83, 92, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    align-self: start;
    border: 1px solid rgba(168, 213, 186, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.social-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #A8D5BA 0%, #1A535C 50%, #A8D5BA 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.social-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(26, 83, 92, 0.18), 0 4px 12px rgba(0, 0, 0, 0.1);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.social-info-card .social-icons {
    width: 100%;
}

.contact-form h2 {
    color: #1A535C;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-form p {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #1A535C;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #A8D5BA;
    box-shadow: 0 0 0 3px rgba(168, 213, 186, 0.1);
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    accent-color: #A8D5BA;
}

.contact-info {
    background: #FAF9F6;
    padding: 40px;
    border-radius: 15px;
    height: fit-content;
}

.contact-info h3 {
    color: #1A535C;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E5E5E5;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-content h4 {
    color: #1A535C;
    font-size: 1.2rem;
    margin-bottom: 6px;
    font-weight: 600;
    line-height: 1.3;
}

.info-content p {
    color: #333;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.4;
}

.info-content span {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.3;
}

.social-info-card .social-links {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    width: 100%;
}

.social-info-card .social-links h4 {
    color: #1A535C;
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: left;
    position: relative;
    padding-bottom: 15px;
}

.social-info-card .social-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #A8D5BA, #1A535C);
    border-radius: 2px;
}

.social-links h4 {
    color: #1A535C;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #666;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 14px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    border: 1px solid rgba(168, 213, 186, 0.3);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 213, 186, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    color: #1A535C;
    background: linear-gradient(135deg, rgba(168, 213, 186, 0.15) 0%, rgba(168, 213, 186, 0.05) 100%);
    transform: translateX(8px) scale(1.02);
    border-color: #A8D5BA;
    box-shadow: 0 6px 20px rgba(26, 83, 92, 0.15), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.social-link i {
    font-size: 1.4rem;
    margin-right: 15px;
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    color: #FFFFFF;
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(26, 83, 92, 0.2);
}

.social-link:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(26, 83, 92, 0.3);
}

.social-link span {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.social-link:hover span {
    color: #1A535C;
}
}

.discovery-call-section {
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
    padding: 80px 0;
}


.discovery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.discovery-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.discovery-info p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.discovery-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.benefit-item i {
    color: #A8D5BA;
    margin-right: 15px;
    font-size: 1.3rem;
}

.discovery-cta {
    text-align: center;
}

.cta-note {
    margin-top: 15px;
    opacity: 0.8;
    font-size: 0.95rem;
}

.discovery-image {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 15px;
}

.discovery-image img,
.discovery-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.image-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.image-placeholder span {
    opacity: 0.7;
    font-size: 1rem;
}

.location-section {
    padding: 80px 0;
    background: #FAF9F6;
}

.location-section h2 {
    text-align: center;
    color: #1A535C;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.location-info h3 {
    color: #1A535C;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.location-info p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.location-options {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.option {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.option:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.option i {
    font-size: 2rem;
    color: #A8D5BA;
    margin-right: 20px;
    margin-top: 5px;
}

.option h4 {
    color: #1A535C;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.option p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.location-map {
    display: flex;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    justify-content: center;
    align-items: center;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: white;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #E5E5E5;
}

.map-placeholder i {
    font-size: 4rem;
    color: #A8D5BA;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 1.5rem;
    color: #1A535C;
    font-weight: 600;
    margin-bottom: 10px;
}

.map-placeholder span {
    color: #666;
    font-size: 1.1rem;
}

.contact-faq {
    padding: 80px 0;
    background: white;
}

.contact-faq h2 {
    text-align: center;
    color: #1A535C;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-faq .faq-item {
    background: #FAF9F6;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-faq .faq-item:hover {
    border-color: #A8D5BA;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-faq .faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.contact-faq .faq-question:hover {
    background: #FAF9F6;
}

.contact-faq .faq-question h4 {
    color: #1A535C;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.contact-faq .faq-question i {
    color: #A8D5BA;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-faq .faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.contact-faq .faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #FAF9F6;
}

.contact-faq .faq-item.active .faq-answer {
    padding: 25px;
    max-height: 200px;
}

.contact-faq .faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Connect Page Responsive Styles */
@media (max-width: 768px) {
    .quick-contact {
        padding: 60px 0;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social-info-card {
        padding: 30px 20px;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form h2 {
        font-size: 2rem;
    }
    
    .discovery-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .discovery-info h2 {
        font-size: 2rem;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-section h2 {
        font-size: 2rem;
    }
    
    .location-info h3 {
        font-size: 1.5rem;
    }
    
    .contact-faq h2 {
        font-size: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .quick-contact {
        padding: 40px 0;
    }
    
    .contact-card {
        padding: 25px 15px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-card h3 {
        font-size: 1.3rem;
    }
    
    .contact-form h2 {
        font-size: 1.8rem;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
    
    .discovery-info h2 {
        font-size: 1.8rem;
    }
    
    .image-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .location-section h2 {
        font-size: 1.8rem;
    }
    
    .contact-faq h2 {
        font-size: 1.8rem;
    }
}

/* Why Work With Me Section Styles */
.why-work-with-me {
    background: #fffdf9;
    padding: 80px 0;
}

.why-work-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-work-left {
    flex: 1;
}

.why-work-left h4 {
    font-size: 28px;
    font-style: italic;
    color: #A8D5BA;
    margin: 0 0 20px;
    font-weight: 500;
}

.why-work-left h2 {
    font-size: 56px;
    font-weight: 700;
    margin: 0 0 30px;
    line-height: 1.1;
    color: #2c2c2c;
}

.why-work-left h2 span {
    color: #1A535C;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
    color: #fff;
    padding: 14px 28px;
    font-size: 18px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 2px solid #1A535C;
    box-shadow: 0 4px 12px rgba(168, 213, 186, 0.3);
}

.cta-btn:hover {
    background: linear-gradient(135deg, #B8E5C5 0%, #2A636C 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 213, 186, 0.4);
    border: 2px solid #2A636C;
}

.why-work-right {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(168, 213, 186, 0.2);
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature:hover .feature-icon {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(168, 213, 186, 0.3);
}

.feature h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
}

.feature p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #444;
}

/* Why Work With Me Responsive Styles */
@media (max-width: 900px) {
    .why-work-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .why-work-right {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-work-left h2 {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .why-work-with-me {
        padding: 60px 0;
    }
    
    .why-work-content {
        gap: 30px;
    }
    
    .why-work-left h2 {
        font-size: 40px;
    }
    
    .why-work-left h4 {
        font-size: 24px;
    }
    
    .cta-btn {
        font-size: 16px;
        padding: 12px 24px;
    }
    
    .feature h3 {
        font-size: 18px;
    }
    
    .feature p {
        font-size: 14px;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
    }
    
    .feature-icon i {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .why-work-with-me {
        padding: 40px 0;
    }
    
    .why-work-left h2 {
        font-size: 32px;
    }
    
    .why-work-left h4 {
        font-size: 20px;
    }
    
    .cta-btn {
        font-size: 15px;
        padding: 10px 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
    
    .feature h3 {
        font-size: 16px;
    }
    
    .feature p {
        font-size: 13px;
    }
}

/* Services Overview Styles */
.services-overview {
    background: #FAF9F6;
}



.service-card.featured {
    border: 2px solid #A8D5BA;
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    color: #1A535C;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.service-card li {
    color: #666;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #A8D5BA;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Why Mentorship Styles */
.why-mentorship {
    background: white;
}

/* Success Stories Styles */
.success-stories {
    background: #FAF9F6;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content p {
    color: #666;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author h4 {
    color: #1A535C;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #A8D5BA;
    font-weight: 500;
}

/* About Story Tree Styles */
.about-story-tree {
    background: white;
}

/* Community Values Styles */
.community-values {
    background: #FAF9F6;
}

/* Community Activities Styles */
.community-activities {
    background: white;
}

/* Member Benefits Styles */
.member-benefits {
    background: #FAF9F6;
}

/* Newsletter Section Styles */
.newsletter-section {
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.newsletter-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: 0 auto 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    background: white;
    color: #1A535C;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #F8F9FA;
    transform: translateY(-2px);
}

.newsletter-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Styles for New Sections */
@media (max-width: 768px) {
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .service-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    .newsletter-content h2 {
        font-size: 2rem;
    }
}

/* Featured Posts Styles */
.featured-posts {
    background: white;
    padding: 80px 0;
}

.featured-posts h2 {
    text-align: center;
    color: #1A535C;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.featured-post {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.post-image {
    height: 200px;
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.image-placeholder {
    color: white;
    font-size: 3rem;
}

.post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.category {
    background: #A8D5BA;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.date {
    color: #666;
    font-size: 0.9rem;
}

.post-content h3 {
    color: #1A535C;
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.post-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #1A535C;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #A8D5BA;
}

/* Blog Header Styles */
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-header h2 {
    color: #1A535C;
    font-size: 2.5rem;
    margin: 0;
}

.blog-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #A8D5BA;
    background: transparent;
    color: #1A535C;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #A8D5BA;
    color: white;
}

/* Responsive Styles for Featured Posts */
@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .featured-post {
        margin: 0 10px;
    }
    
    .post-content {
        padding: 25px 20px;
    }
    
    .blog-header {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-header h2 {
        font-size: 2rem;
    }
    
    .blog-filters {
        justify-content: center;
    }
}

/* Blog Pagination Styles */
.blog-pagination {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
}

/* Events Calendar Section Styles */
.events-calendar-section {
    background: #FAF9F6;
    padding: 80px 0;
}

.events-calendar-section h2 {
    text-align: center;
    color: #1A535C;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.calendar-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.calendar-filters .filter-btn {
    padding: 12px 24px;
    border: 2px solid #A8D5BA;
    background: transparent;
    color: #1A535C;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
}

.calendar-filters .filter-btn:hover,
.calendar-filters .filter-btn.active {
    background: #A8D5BA;
    color: white;
    transform: translateY(-2px);
}

/* Event Card Enhanced Styles */
.event-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-card.featured {
    border: 2px solid #A8D5BA;
    transform: scale(1.02);
}

.event-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.event-date {
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
    color: white;
    padding: 20px;
    text-align: center;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date .month {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 5px;
}

.event-details {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-details h3 {
    color: #1A535C;
    font-size: 1.4rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.event-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.event-meta span {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-meta i {
    color: #A8D5BA;
    width: 16px;
}

.event-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature {
    background: #F8F9FA;
    color: #1A535C;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.event-actions {
    padding: 0 25px 25px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.event-actions .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.9rem;
}

/* Registration Section Styles */
.registration-section {
    background: white;
    padding: 80px 0;
}

.registration-section h2 {
    text-align: center;
    color: #1A535C;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.registration-content {
    max-width: 800px;
    margin: 0 auto;
}

.registration-form {
    background: #FAF9F6;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    color: #1A535C;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E9ECEF;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #A8D5BA;
}

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

.payment-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    border: 2px solid #E9ECEF;
}

.payment-section h3 {
    color: #1A535C;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border: 2px solid #E9ECEF;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover,
.payment-option.selected {
    border-color: #A8D5BA;
    background: #F8F9FA;
}

.payment-option input[type="radio"] {
    margin: 0;
    width: auto;
}

.payment-option label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
}

/* Registration Info Styles */
.registration-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.registration-info h3 {
    color: #1A535C;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.registration-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.registration-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #666;
    font-size: 1rem;
}

.registration-info li i {
    color: #A8D5BA;
    font-size: 1.1rem;
    width: 20px;
}

.cancellation-policy {
    background: #F8F9FA;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #A8D5BA;
}

.cancellation-policy h4 {
    color: #1A535C;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.cancellation-policy p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Payment Methods Styles */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 2px solid #E9ECEF;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.payment-method:hover {
    border-color: #A8D5BA;
    background: #F8F9FA;
}

.payment-method input[type="radio"] {
    margin: 0;
    width: auto;
    accent-color: #A8D5BA;
}

.payment-method input[type="radio"]:checked + .checkmark {
    background: #A8D5BA;
    border-color: #A8D5BA;
}

.payment-method input[type="radio"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.checkmark {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid #E9ECEF;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.payment-method span:not(.checkmark) {
    color: #1A535C;
    font-weight: 500;
    font-size: 1rem;
}

/* Registration Content Layout */
.registration-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Section Styles */
.contact-section {
    background: #FAF9F6;
    padding: 80px 0;
}

.contact-section h2 {
    text-align: center;
    color: #1A535C;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: #1A535C;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

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

.contact-item i {
    color: #A8D5BA;
    font-size: 1.2rem;
    width: 20px;
}

.contact-item span {
    color: #666;
    font-size: 1rem;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #1A535C;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

/* Responsive Styles for Collaborate Page */
@media (max-width: 768px) {
    .events-calendar-section h2,
    .registration-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .calendar-filters {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .calendar-filters .filter-btn {
        width: 200px;
    }
    
    .event-card {
        margin: 0 10px;
    }
    
    .event-card.featured {
        transform: none;
    }
    
    .event-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .registration-form {
        padding: 25px 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info,
    .contact-form {
        padding: 25px 20px;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .event-actions {
        flex-direction: column;
    }
    
    .event-actions .btn {
        flex: none;
    }
    
    .registration-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .registration-info {
        margin-top: 0;
        padding: 25px 20px;
    }
    
    .payment-methods {
        gap: 10px;
    }
    
    .payment-method {
        padding: 12px;
    }
}

/* Past Events Gallery Styles */
.past-events {
    background: white;
    padding: 80px 0;
}

.past-events h2 {
    text-align: center;
    color: #1A535C;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.gallery-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    height: 200px;
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.gallery-image img,
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.gallery-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-image::before {
    opacity: 1;
}

.gallery-image .image-placeholder {
    color: white;
    font-size: 3rem;
    z-index: 2;
    position: relative;
    transition: transform 0.3s ease;
}

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

.gallery-caption {
    padding: 25px;
    text-align: center;
}

.gallery-caption h3 {
    color: #1A535C;
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.gallery-caption p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.gallery-caption .date {
    color: #A8D5BA;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Styles for Past Events Gallery */
@media (max-width: 768px) {
    .past-events h2 {
        font-size: 2rem;
    }
    
    .events-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item {
        margin: 0 10px;
    }
    
    .gallery-caption {
        padding: 20px;
    }
    
    .gallery-caption h3 {
        font-size: 1.2rem;
    }
}

/* Work With Pallavi Section Styles */
.work-with-pallavi {
    background: #FAF9F6;
    padding: 80px 0;
}

.work-with-pallavi h2 {
    text-align: center;
    color: #1A535C;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.work-opportunities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.opportunity-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.opportunity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.opportunity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
}

.opportunity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #A8D5BA 0%, #1A535C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.opportunity-card h3 {
    color: #1A535C;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.opportunity-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.opportunity-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.opportunity-card li {
    color: #666;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.opportunity-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #A8D5BA;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Event Testimonials Section Styles */
.event-testimonials {
    background: white;
    padding: 80px 0;
}

.event-testimonials h2 {
    text-align: center;
    color: #1A535C;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

/* Section Subtitle Styles */
.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles for Work With Pallavi and Event Testimonials */
@media (max-width: 768px) {
    .work-with-pallavi h2,
    .event-testimonials h2 {
        font-size: 2rem;
    }
    
    .work-opportunities {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .opportunity-card {
        padding: 30px 20px;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

/* Video Feedbacks Section Styles */
.video-feedbacks {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.video-feedbacks .section-header h2 {
    color: #1A535C;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.video-feedbacks .section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.video-feedbacks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-feedback-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.video-container {
    width: 100%;
    max-width: 100%;
}

.video-container .instagram-media {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}

/* Video Feedbacks Responsive */
@media (max-width: 768px) {
    .video-feedbacks {
        padding: 60px 0;
    }
    
    .video-feedbacks .section-header h2 {
        font-size: 2rem;
    }
    
    .video-feedbacks-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .video-feedback-card {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .video-feedbacks {
        padding: 50px 0;
    }
    
    .video-feedbacks .section-header h2 {
        font-size: 1.8rem;
    }
    
    .video-feedbacks .section-header p {
        font-size: 1rem;
    }
    
    .video-feedbacks-grid {
        padding: 0 15px;
    }
}

/* ========================================
   JOURNEY POPUP FORM STYLES
   ======================================== */

/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

/* Popup Form Container */
.popup-form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8) translateY(50px);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-form-container {
    transform: scale(1) translateY(0);
}

/* Popup Form */
.popup-form {
    padding: 40px;
}

/* Popup Header */
.popup-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.popup-header h2 {
    color: #1A535C;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.popup-header p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Close Button */
.popup-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    border: none;
    background: #1A535C;
    color: white;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.popup-close:hover {
    background: #A8D5BA;
    color: #1A535C;
    transform: scale(1.1);
}

/* Popup Form Groups */
.popup-form .form-group {
    margin-bottom: 25px;
}

.popup-form .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1A535C;
    font-weight: 600;
    font-size: 1rem;
}

.popup-form .form-group input,
.popup-form .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E9ECEF;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.popup-form .form-group input:focus,
.popup-form .form-group textarea:focus {
    outline: none;
    border-color: #A8D5BA;
    box-shadow: 0 0 0 3px rgba(168, 213, 186, 0.1);
}

.popup-form .form-group input::placeholder,
.popup-form .form-group textarea::placeholder {
    color: #999;
}

/* Error Messages */
.popup-form .error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    display: none;
}

.popup-form .form-group.error .error-message {
    display: block;
}

.popup-form .form-group.error input,
.popup-form .form-group.error textarea {
    border-color: #dc3545;
}

/* Checkbox Styling */
.popup-form .checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}

.popup-form .checkbox-item input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 2px;
}

.popup-form .checkbox-item label {
    margin: 0;
    font-weight: normal;
    cursor: pointer;
    line-height: 1.4;
}

.popup-form .checkbox-item a {
    color: #1A535C;
    text-decoration: underline;
}

.popup-form .checkbox-item a:hover {
    color: #A8D5BA;
}

/* Form Actions */
.popup-form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.popup-form-actions .btn {
    flex: 1;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.popup-form-actions .btn-secondary {
    background: #f8f9fa;
    color: #1A535C;
    border: 2px solid #E9ECEF;
}

.popup-form-actions .btn-secondary:hover {
    background: #E9ECEF;
    border-color: #1A535C;
}

/* Success Message */
.popup-success {
    text-align: center;
    padding: 40px;
}

.popup-success i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.popup-success h3 {
    color: #1A535C;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.popup-success p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .popup-form-container {
        width: 95%;
        margin: 20px;
    }
    
    .popup-form {
        padding: 30px 20px;
    }
    
    .popup-header h2 {
        font-size: 1.5rem;
    }
    
    .popup-form-actions {
        flex-direction: column;
    }
    
    .popup-form-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .popup-form {
        padding: 20px 15px;
    }
    
    .popup-header h2 {
        font-size: 1.3rem;
    }
    
    .popup-close {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

/* ========================================
   BOOK NOW FORM SPECIFIC STYLES
   ======================================== */

/* Book Now Form Container - Slightly larger */
#bookNowPopup .popup-form-container {
    max-width: 600px;
    max-height: 95vh;
}

/* Book Now Form - More spacing for longer form */
#bookNowPopup .popup-form {
    padding: 50px 40px;
}

/* Form Row Styling for Book Now */
#bookNowPopup .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Date Input Styling */
#bookNowPopup input[type="date"] {
    position: relative;
}

#bookNowPopup input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

/* Select Dropdown Styling */
#bookNowPopup select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    appearance: none;
}

/* Success Message for Book Now */
#bookNowPopup .popup-success ul {
    list-style: none;
    padding: 0;
}

#bookNowPopup .popup-success li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

#bookNowPopup .popup-success li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Mobile Responsive for Book Now */
@media (max-width: 768px) {
    #bookNowPopup .popup-form-container {
        width: 95%;
        margin: 10px;
    }
    
    #bookNowPopup .popup-form {
        padding: 30px 20px;
    }
    
    #bookNowPopup .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 480px) {
    #bookNowPopup .popup-form {
        padding: 20px 15px;
    }
    
    #bookNowPopup .popup-form-container {
        max-height: 98vh;
    }
}

/* Scroll Indicator Styles */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 8;
}

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

.scroll-dot:hover,
.scroll-dot.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

/* Dynamic Quotes Section */
.quotes-section {
    background: linear-gradient(135deg, #1A535C 0%, #A8D5BA 50%, #1A535C 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.quotes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="floating-particles" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"><animate attributeName="cy" values="25;75;25" dur="6s" repeatCount="indefinite"/></circle><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.08)"><animate attributeName="cy" values="75;25;75" dur="8s" repeatCount="indefinite"/></circle><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.06)"><animate attributeName="cy" values="10;90;10" dur="10s" repeatCount="indefinite"/></circle></pattern></defs><rect width="100" height="100" fill="url(%23floating-particles)"/></svg>');
    opacity: 0.4;
    z-index: 1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.quotes-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    perspective: 1000px;
}

.quote-content {
    margin-bottom: 50px;
    position: relative;
}

.quote-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}


.quote-icon {
    font-size: 3rem;
    color: #A8D5BA;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

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

.quote-text {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    color: #1A535C;
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(30px) rotateX(90deg);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.quote-text.active {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

.quote-text::before {
    content: '"';
    position: absolute;
    left: -20px;
    top: -10px;
    font-size: 4rem;
    color: #A8D5BA;
    opacity: 0.3;
    font-family: serif;
}

.quote-text::after {
    content: '"';
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 4rem;
    color: #A8D5BA;
    opacity: 0.3;
    font-family: serif;
}

.quote-author {
    font-size: 1.3rem;
    color: #666;
    font-style: italic;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.3s;
    font-weight: 500;
    position: relative;
}

.quote-author.active {
    opacity: 1;
    transform: translateY(0);
}

.quote-author::before {
    content: '—';
    margin-right: 10px;
    color: #A8D5BA;
    font-weight: bold;
}

.quote-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #A8D5BA, #1A535C);
    border-radius: 2px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(168, 213, 186, 0.5);
}

.quote-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.quote-btn {
    background: linear-gradient(135deg, #A8D5BA, #1A535C);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 30px rgba(26, 83, 92, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.quote-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quote-btn:hover {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 15px 40px rgba(26, 83, 92, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.quote-btn:hover::before {
    opacity: 1;
}

.quote-btn:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 10px 30px rgba(26, 83, 92, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 3px rgba(168, 213, 186, 0.3);
}

.quote-btn:active {
    transform: translateY(0) scale(0.95);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 5px 15px rgba(26, 83, 92, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.quote-dots {
    display: flex;
    gap: 15px;
    align-items: center;
}

.quote-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.quote-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #A8D5BA, #1A535C);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.quote-dot:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.quote-dot.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.4);
    border-color: #A8D5BA;
    box-shadow: 
        0 0 15px rgba(168, 213, 186, 0.6),
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.quote-dot.active::before {
    width: 8px;
    height: 8px;
}

/* Responsive Design for Quotes */
@media (max-width: 768px) {
    .quotes-section {
        padding: 60px 0;
    }
    
    .quote-text {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .quote-author {
        font-size: 1.1rem;
    }
    
    .quote-controls {
        gap: 20px;
    }
    
    .quote-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Highlight Join Now button */
.join-now-btn {
	background: linear-gradient(135deg, #F7B801 0%, #FFD23F 100%);
	color: #0F2C32;
	border-color: #FFD23F;
	box-shadow: 0 10px 28px rgba(247, 184, 1, 0.35), 0 0 0 0 rgba(247, 184, 1, 0.35);
	position: relative;
}
.join-now-btn:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(247, 184, 1, 0.45), 0 0 0 8px rgba(247, 184, 1, 0.12);
	background: linear-gradient(135deg, #FFD23F 0%, #F7B801 100%);
}
.join-now-btn:focus {
	outline: 3px solid rgba(247, 184, 1, 0.45);
	outline-offset: 3px;
}
/* Subtle pulse to draw attention */
@keyframes joinPulse { 0%{ transform: scale(1); box-shadow: 0 0 0 0 rgba(247,184,1,.0)} 50%{ transform: scale(1.02); box-shadow: 0 0 0 10px rgba(247,184,1,.12)} 100%{ transform: scale(1); box-shadow: 0 0 0 0 rgba(247,184,1,.0)} }
.hero-buttons .join-now-btn { animation: joinPulse 2.6s ease-in-out infinite; }

/* Ensure hero video overlay does not block clicks */
.hero-video-overlay {
	pointer-events: none;
}

/* Ensure hero content and buttons are above video/overlay */
.hero {
	position: relative;
}
.hero-content,
.hero .container,
.hero-buttons {
	position: relative;
	z-index: 3;
}

/* The hero::after overlay should never block clicks or sit above buttons */
#hero::after {
	pointer-events: none !important;
	z-index: 1 !important;
}

/* Keep floating decorative elements behind content */
.hero-floating-elements {
	position: relative;
	z-index: 1;
	pointer-events: none;
}

/* Smooth reveal animations */
@media (prefers-reduced-motion: no-preference) {
	.page-section {
		opacity: 0;
		transform: translateY(24px);
		transition: opacity 600ms ease, transform 600ms ease;
	}
	.page-section.is-visible {
		opacity: 1;
		transform: translateY(0);
	}
	/* Ensure blog sections are visible - fallback if observer doesn't trigger */
	.blog.page-section,
	#blog.page-section,
	.blog-feed {
		opacity: 1 !important;
		transform: translateY(0) !important;
	}

	/* Card stagger */
	.blog-card, .service-card, .event-card {
		opacity: 0;
		transform: translateY(16px);
		transition: opacity 500ms ease, transform 500ms ease;
	}
	.blog-card.is-visible, .service-card.is-visible, .event-card.is-visible {
		opacity: 1;
		transform: translateY(0);
	}
	/* Ensure blog cards are visible after a delay - fallback */
	.blog-grid .blog-card {
		animation: fadeInBlogCard 0.6s ease forwards;
		animation-delay: 0.1s;
	}
	@keyframes fadeInBlogCard {
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	/* Hero intro */
	.hero-content {
		opacity: 0;
		transform: translateY(20px);
		transition: opacity 700ms ease, transform 700ms ease;
	}
	.hero-content.show {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Reduce section spacing on home page only */
body.home-page .page-section {
	padding: 20px 0 15px 0;
}

/* Keep hero section with original padding on home page */
body.home-page .hero.page-section {
	padding: 100px 0 60px 0;
}

/* Reduce spacing for testimonials sections on home page */
body.home-page .testimonials.page-section {
	padding: 20px 0 10px 0;
}

body.home-page .video-testimonials.page-section {
	padding: 10px 0 15px 0;
}

/* Reduce decorative image size on home page */
body.home-page .section-decor-image {
	height: 150px;
	max-width: 200px;
}

/* Reduce section header margins on home page */
body.home-page .section-header {
	margin-top: 0;
	margin-bottom: 20px;
}

body.home-page .section-header h2 {
	margin-bottom: 10px;
}

body.home-page .section-header p {
	margin: 15px auto 0 auto;
}
