/* ========================================
   GLOBAL ELITE HOSTESSING AGENCY - STYLES
   Modern, Classy, Responsive Design
   Standard Colors: White & Purple
   ======================================== */

/* ===== CSS VARIABLES - Easy Color & Spacing Management ===== */
:root {
    /* Purple color palette */
    --primary-purple: #7b2cbf;
    --light-purple: #9d4edd;
    --dark-purple: #5a189a;
    --purple-gradient: linear-gradient(135deg, #7b2cbf 0%, #9d4edd 100%);
    
    /* White and neutral colors */
    --pure-white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --text-gray: #495057;
    --dark-text: #212529;
    
    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Effects */
    --shadow-sm: 0 2px 10px rgba(123, 44, 191, 0.1);
    --shadow-md: 0 5px 20px rgba(123, 44, 191, 0.15);
    --shadow-lg: 0 10px 40px rgba(123, 44, 191, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== GLOBAL RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-gray);
    line-height: 1.8;
    background-color: var(--pure-white);
    overflow-x: hidden;
    position: relative;
    padding-top: 80px;
}

/* ===== BACKGROUND PATTERN - FIXED FOR MOBILE ===== */
.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/img/27.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

/* ===== CUSTOM CONTAINER WITH PADDING ===== */
.container-custom {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
}

/* ===== PURPLE RAIN EFFECT ===== */
.purple-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.raindrop {
    position: absolute;
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, transparent, var(--primary-purple));
    opacity: 0.4;
    animation: falling linear infinite;
}

@keyframes falling {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* ===== FIXED NAVIGATION BAR ===== */
.navbar {
    transition: var(--transition);
    padding: 0.3rem 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.navbar-brand {
    transition: var(--transition);
}

.logo-img {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

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

.nav-link {
    font-weight: 500;
    color: var(--text-gray) !important;
    margin: 0 1rem;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

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

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

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

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../assets/img/1.jpeg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    overflow: hidden;
    opacity: 0;
    animation: fadeInHero 1.5s ease-out forwards;
    margin-top: 0;
    padding: 2rem;
}

@keyframes fadeInHero {
    to {
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.65), rgba(157, 78, 221, 0.45));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--pure-white);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 2.5rem;
    color: var(--pure-white);
    font-weight: 300;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.fade-in-hero {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.fade-in-hero-delay {
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.fade-in-hero-delay-2 {
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.5s forwards;
}

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

/* ===== CALL-TO-ACTION BUTTONS ===== */
.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--purple-gradient);
    color: var(--pure-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
    color: var(--pure-white);
}

.cta-button-outline {
    display: inline-block;
    padding: 1rem 3rem;
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.cta-button-outline:hover {
    background: var(--pure-white);
    color: var(--primary-purple);
    transform: translateY(-5px) scale(1.05);
}

/* Service Icon Cards */
.service-icon-card {
    display: block;
    background: var(--pure-white);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
    text-decoration: none;
    color: inherit;
}

.service-icon-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-purple);
    background: var(--purple-gradient);
    color: var(--pure-white);
    text-decoration: none;
}

.service-icon-card i {
    font-size: 3rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-icon-card:hover i {
    color: var(--pure-white);
    transform: scale(1.2) rotate(360deg);
}

.service-icon-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-purple);
    transition: var(--transition);
}

.service-icon-card:hover h4 {
    color: var(--pure-white);
}

.learn-more-btn,
.learn-more-btn-outline,
.cta-button-secondary,
.service-link {
    display: none;
}

/* ===== DECORATIVE DIVIDERS ===== */
.decorative-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--spacing-lg) 0;
    padding: 0 2rem;
    position: relative;
    min-height: 120px;
}

.decorative-bg-1 {
    background-image: url('../assets/img/28.jpg');
    background-size: cover;
    background-position: center;
}

.decorative-bg-2 {
    background-image: url('../assets/img/29.png');
    background-size: cover;
    background-position: center;
}

.decorative-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(123, 44, 191, 0.7);
    z-index: 1;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--pure-white), transparent);
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

.divider-icon {
    color: var(--pure-white);
    font-size: 2.5rem;
    margin: 0 2rem;
    animation: pulse 2s infinite;
    position: relative;
    z-index: 2;
}

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

/* ===== SECTION TITLES & TEXT ===== */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(123, 44, 191, 0.1);
    line-height: 1.3;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-left {
    color: var(--primary-purple);
    font-size: 2rem;
    transition: var(--transition);
}

.icon-right {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.icon-right-small {
    margin-left: 0.3rem;
    font-size: 0.9em;
}

.hover-color-change:hover {
    color: var(--light-purple);
    transform: translateX(5px);
}

.hover-color-change:hover .icon-left {
    color: var(--light-purple);
    transform: scale(1.1) rotate(5deg);
}

.hover-text-effect {
    transition: var(--transition);
}

.hover-text-effect:hover {
    color: var(--primary-purple);
    transform: translateY(-2px);
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    text-align: left;
}

.main-heading {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-purple);
    text-shadow: 2px 2px 4px rgba(123, 44, 191, 0.1);
    margin-bottom: 1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.sub-heading {
    font-size: 1.3rem;
    color: var(--light-purple);
    font-weight: 300;
    margin-bottom: 3rem;
}

.text-purple {
    color: var(--primary-purple) !important;
}

.text-content {
    padding: 1.5rem;
}

/* ===== INTRO SECTION ===== */
.intro-section {
    padding: var(--spacing-lg) 0;
    padding-top: 3rem;
}

/* ===== SERVICES ICONS SECTION ===== */
.services-icons-section {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.05) 0%, rgba(157, 78, 221, 0.05) 100%);
    padding: var(--spacing-lg) 0;
}

/* ===== SECTION IMAGES ===== */
.section-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center top;
    border-radius: 15px;
    transition: var(--transition);
}

.section-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.hover-bounce {
    animation: none;
    transition: var(--transition);
}

.hover-bounce:hover {
    animation: bounce 0.6s ease-in-out;
    transform: scale(1.05);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) scale(1.05);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.hover-sway {
    animation: none;
    transition: var(--transition);
}

.hover-sway:hover {
    animation: sway 1s ease-in-out infinite;
    transform: scale(1.05);
}

@keyframes sway {
    0%, 100% {
        transform: rotate(0deg) scale(1.05);
    }
    25% {
        transform: rotate(2deg) scale(1.05);
    }
    75% {
        transform: rotate(-2deg) scale(1.05);
    }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s ease-out;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ABOUT PREVIEW SECTION ===== */
.about-preview-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* ===== SERVICES PREVIEW SECTION ===== */
.services-preview-section {
    padding: var(--spacing-xl) 0;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(123, 44, 191, 0.1);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.05) 0%, rgba(157, 78, 221, 0.05) 100%);
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
    background: var(--pure-white);
    padding: var(--spacing-lg) 0;
}

.testimonial-card {
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    border: 2px solid var(--light-purple);
}

.stars {
    color: #ffd700;
    font-size: 1.8rem;
}

.stars i {
    margin: 0 0.2rem;
    animation: twinkle 2s infinite;
}

.stars i:nth-child(2) { animation-delay: 0.2s; }
.stars i:nth-child(3) { animation-delay: 0.4s; }
.stars i:nth-child(4) { animation-delay: 0.6s; }
.stars i:nth-child(5) { animation-delay: 0.8s; }

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.testimonial-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-style: italic;
    line-height: 2;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-purple);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.testimonial-event {
    color: var(--light-purple);
    font-size: 0.95rem;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    background: var(--purple-gradient);
    color: var(--pure-white);
    padding: var(--spacing-xl) 0;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ===== FOOTER SECTION ===== */
.footer-section {
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-purple) 100%);
    color: var(--pure-white);
    position: relative;
    z-index: 10000;
}

.footer-logo {
    height: 100px;
    width: auto;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--pure-white);
}

.footer-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    z-index: 10001;
}

.footer-links a:hover {
    color: var(--pure-white);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact i {
    margin-right: 1rem;
    margin-top: 0.2rem;
    color: var(--pure-white);
    min-width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link-fixed {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--pure-white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.3rem;
    position: relative;
    z-index: 10001;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.social-link-fixed:hover {
    background: var(--pure-white);
    color: var(--primary-purple);
    transform: translateY(-5px) rotate(360deg);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.and-more-link {
    color: var(--light-purple) !important;
    font-weight: 600;
    text-decoration: none !important;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    z-index: 10001;
}

.and-more-link:hover {
    color: var(--pure-white) !important;
    transform: translateX(10px);
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--purple-gradient);
    color: var(--pure-white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(123, 44, 191, 0.4);
}

/* ===== VIEW ALL SERVICES BUTTON ===== */
.view-all-services {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--purple-gradient);
    color: var(--pure-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.view-all-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
}

.view-all-services:hover::before {
    left: 100%;
}

.view-all-services:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
    color: var(--pure-white);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    /* FIXED: Background pattern for mobile */
    .background-pattern {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
    }
    
    .navbar {
        padding: 0.2rem 0;
    }
    
    .logo-img {
        height: 55px;
    }
    
    /* FIXED: Hero section for mobile */
    .hero-section {
        min-height: 100vh;
        height: auto;
        padding-top: 100px;
        padding-bottom: 100px;
        background-attachment: scroll;
        background-position: center top;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .hero-overlay {
        position: absolute;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .intro-section {
        padding-top: 2.5rem;
    }
    
    .section-image {
        object-position: center top;
    }
    
    /* FIXED: Decorative dividers for mobile */
    .decorative-bg-1,
    .decorative-bg-2 {
        background-attachment: scroll;
    }
    
    /* CRITICAL FIX: Lower purple rain z-index */
    .purple-rain {
        z-index: 99;
    }
    
    .social-links {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .social-link-fixed {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        z-index: 10001;
    }
    
    .footer-section {
        position: relative;
        z-index: 10000;
    }
    
    .footer-section .container-custom {
        position: relative;
        z-index: 10000;
    }
    
    .footer-section .container-custom > .row > div {
        position: relative;
        z-index: 10001;
    }
    
    .footer-links a,
    .footer-contact li,
    .social-link-fixed,
    .and-more-link {
        position: relative;
        z-index: 10001;
        pointer-events: auto !important;
    }
    
    .footer-links li {
        padding: 5px 0;
    }
    
    .footer-links a {
        padding: 10px 5px;
        display: inline-block;
        min-height: 44px;
        line-height: 24px;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 60px;
    }
    
    /* FIXED: Background pattern for small mobile */
    .background-pattern {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
    }
    
    .navbar {
        padding: 0.15rem 0;
    }
    
    .logo-img {
        height: 45px;
    }
    
    /* FIXED: Hero section for small mobile */
    .hero-section {
        padding-top: 80px;
        padding-bottom: 80px;
        background-attachment: scroll;
        background-position: center top;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .main-heading {
        font-size: 1.8rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .intro-section {
        padding-top: 2rem;
    }
    
    .section-image {
        object-position: center top;
    }
    
    /* FIXED: Decorative dividers for small mobile */
    .decorative-bg-1,
    .decorative-bg-2 {
        background-attachment: scroll;
    }
    
    .purple-rain {
        z-index: 99;
    }
    
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .social-link-fixed {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        z-index: 10001;
    }
    
    .footer-section {
        position: relative;
        z-index: 10000;
    }
    
    .footer-links a,
    .footer-contact li,
    .and-more-link {
        min-height: 44px;
        line-height: 24px;
        display: inline-block;
        padding: 10px 5px;
        position: relative;
        z-index: 10001;
        pointer-events: auto !important;
    }
}

/* ===== ABOUT PREVIEW SECTION ===== */
.about-preview-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* ===== SERVICES PREVIEW SECTION ===== */
.services-preview-section {
    padding: var(--spacing-xl) 0;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(123, 44, 191, 0.1);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.05) 0%, rgba(157, 78, 221, 0.05) 100%);
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
    background: var(--pure-white);
    padding: var(--spacing-lg) 0;
}

.testimonial-card {
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    border: 2px solid var(--light-purple);
}

.stars {
    color: #ffd700;
    font-size: 1.8rem;
}

.stars i {
    margin: 0 0.2rem;
    animation: twinkle 2s infinite;
}

.stars i:nth-child(2) { animation-delay: 0.2s; }
.stars i:nth-child(3) { animation-delay: 0.4s; }
.stars i:nth-child(4) { animation-delay: 0.6s; }
.stars i:nth-child(5) { animation-delay: 0.8s; }

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.testimonial-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-style: italic;
    line-height: 2;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-purple);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.testimonial-event {
    color: var(--light-purple);
    font-size: 0.95rem;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    background: var(--purple-gradient);
    color: var(--pure-white);
    padding: var(--spacing-xl) 0;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ===== FOOTER SECTION ===== */
.footer-section {
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-purple) 100%);
    color: var(--pure-white);
    position: relative;
    z-index: 10000;
}

.footer-logo {
    height: 100px;
    width: auto;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--pure-white);
}

.footer-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    z-index: 10001;
}

.footer-links a:hover {
    color: var(--pure-white);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact i {
    margin-right: 1rem;
    margin-top: 0.2rem;
    color: var(--pure-white);
    min-width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link-fixed {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--pure-white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.3rem;
    position: relative;
    z-index: 10001;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.social-link-fixed:hover {
    background: var(--pure-white);
    color: var(--primary-purple);
    transform: translateY(-5px) rotate(360deg);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.and-more-link {
    color: var(--light-purple) !important;
    font-weight: 600;
    text-decoration: none !important;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    z-index: 10001;
}

.and-more-link:hover {
    color: var(--pure-white) !important;
    transform: translateX(10px);
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--purple-gradient);
    color: var(--pure-white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(123, 44, 191, 0.4);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .navbar {
        padding: 0.2rem 0;
    }
    
    .logo-img {
        height: 55px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .intro-section {
        padding-top: 2.5rem;
    }
    
    /* CRITICAL FIX: Lower purple rain z-index */
    .purple-rain {
        z-index: 99;
    }
    
    .social-links {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .social-link-fixed {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        z-index: 10001;
    }
    
    .footer-section {
        position: relative;
        z-index: 10000;
    }
    
    .footer-section .container-custom {
        position: relative;
        z-index: 10000;
    }
    
    .footer-section .container-custom > .row > div {
        position: relative;
        z-index: 10001;
    }
    
    .footer-links a,
    .footer-contact li,
    .social-link-fixed,
    .and-more-link {
        position: relative;
        z-index: 10001;
        pointer-events: auto !important;
    }
    
    .footer-links li {
        padding: 5px 0;
    }
    
    .footer-links a {
        padding: 10px 5px;
        display: inline-block;
        min-height: 44px;
        line-height: 24px;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 60px;
    }
    
    .navbar {
        padding: 0.15rem 0;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .hero-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .main-heading {
        font-size: 1.8rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .intro-section {
        padding-top: 2rem;
    }
    
    .purple-rain {
        z-index: 99;
    }
    
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .social-link-fixed {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        z-index: 10001;
    }
    
    .footer-section {
        position: relative;
        z-index: 10000;
    }
    
    .footer-links a,
    .footer-contact li,
    .and-more-link {
        min-height: 44px;
        line-height: 24px;
        display: inline-block;
        padding: 10px 5px;
        position: relative;
        z-index: 10001;
        pointer-events: auto !important;
    }
}

/* ===== FIX FOR VIEW ALL SERVICES BUTTON ===== */
.view-all-services {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--purple-gradient);
    color: var(--pure-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.view-all-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
}

.view-all-services:hover::before {
    left: 100%;
}

.view-all-services:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
    color: var(--pure-white);
}
/* ===== ABOUT PAGE SPECIFIC STYLES ===== */

/* About Hero Section */
.about-hero-section {
    position: relative;
    height: 70vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../assets/img/17.jpg'); /* FIXED: Changed from .jpeg to .jpg */
    background-size: cover;
    background-position: center center; /* FIXED: Changed to show top of image (faces) */
    background-repeat: no-repeat;
    background-attachment: scroll; /* FIXED: Changed from fixed to scroll for mobile compatibility */
    overflow: hidden;
    margin-top: 0;
}

/* ABOUT HERO SECTION RESPONSIVE FIX - Make scrollable on mobile */
@media (max-width: 768px) {
    .about-hero-section {
        min-height: 100vh;
        height: auto;
        padding-top: 150px;
        padding-bottom: 150px;
        background-attachment: scroll;
        background-position: center top; /* Keep faces visible */
        display: flex;
        align-items: flex-start;
        overflow-y: auto;
    }
    
    .about-hero-content {
        padding: 2rem 1rem;
        margin: auto 0;
    }
    
    /* FIX: Ensure overlay covers entire scrollable area */
    .about-hero-overlay {
        position: absolute; /* Changed from fixed to absolute */
        height: 100%;
        min-height: 100vh;
    }
}

@media (max-width: 576px) {
    .about-hero-section {
        padding-top: 120px;
        padding-bottom: 120px;
        min-height: 100vh;
        height: auto;
        background-position: center top; /* Keep faces visible on small mobile */
    }
    
    .about-hero-content {
        padding: 1.5rem 0.5rem;
    }
    
    /* FIX: Ensure overlay covers entire scrollable area */
    .about-hero-overlay {
        position: absolute; /* Changed from fixed to absolute */
        height: 100%;
        min-height: 100vh;
    }
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.75), rgba(157, 78, 221, 0.6));
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: var(--pure-white);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.about-hero-subtitle {
    font-size: 1.8rem;
    color: var(--pure-white);
    font-weight: 300;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.about-hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    flex: 0 0 auto;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--pure-white);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label {
    color: var(--pure-white);
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Mission & Vision Section */
.mission-vision-section {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.03) 0%, rgba(157, 78, 221, 0.03) 100%);
}

.mission-vision-card {
    background: var(--pure-white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--purple-gradient);
    opacity: 0.1;
    transition: var(--transition);
    z-index: 1;
}

.mission-vision-card:hover::before {
    left: 0;
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-purple);
}

.card-icon {
    font-size: 3.5rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.mission-vision-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--light-purple);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.mission-vision-card:hover .card-title {
    color: var(--light-purple);
}

.card-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

/* Values Section */
.values-section {
    background: var(--pure-white);
}

.value-card {
    background: var(--pure-white);
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-purple);
    background: var(--purple-gradient);
    color: var(--pure-white);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    color: var(--pure-white);
    transform: scale(1.2) rotate(360deg);
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.value-card:hover .value-title {
    color: var(--pure-white);
}

.value-text {
    color: var(--text-gray);
    line-height: 1.7;
    transition: var(--transition);
}

.value-card:hover .value-text {
    color: var(--pure-white);
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.02) 0%, rgba(157, 78, 221, 0.02) 100%);
}

.team-card {
    background: var(--pure-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

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

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* ADDED: Show faces at top */
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.8), rgba(157, 78, 221, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 1rem;
}

/* FIXED SOCIAL MEDIA LINKS FOR TEAM SECTION - GUARANTEED TO WORK */
.social-link-fixed {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--pure-white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.3rem;
    position: relative;
    z-index: 100;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.social-link-fixed:hover {
    background: var(--pure-white);
    color: var(--primary-purple);
    transform: translateY(-5px) rotate(360deg);
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--light-purple);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.team-bio {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Fix for founder image - ensure head is not cut off */
.team-image img[src*="11.jpeg"] {
    object-position: top center;
}

/* Training Section */
.training-section {
    background: var(--pure-white);
}

.training-features {
    margin: 2rem 0;
}

.training-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.8rem 0;
    transition: var(--transition);
}

.training-feature:hover {
    transform: translateX(10px);
}

.training-feature i {
    color: var(--primary-purple);
    font-size: 1.2rem;
    margin-right: 1rem;
    transition: var(--transition);
}

.training-feature:hover i {
    color: var(--light-purple);
    transform: scale(1.2);
}

.training-feature span {
    color: var(--text-gray);
    font-weight: 500;
    transition: var(--transition);
}

.training-feature:hover span {
    color: var(--primary-purple);
}

/* Community Section */
.community-section {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.03) 0%, rgba(157, 78, 221, 0.03) 100%);
}

.impact-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.impact-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--pure-white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    min-width: 120px;
}

.impact-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--purple-gradient);
    color: var(--pure-white);
}

.impact-stat:hover .impact-number,
.impact-stat:hover .impact-label {
    color: var(--pure-white);
}

.impact-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.impact-label {
    color: var(--text-gray);
    font-weight: 600;
    transition: var(--transition);
}

/* About CTA Section */
.about-cta-section {
    background: var(--purple-gradient);
    color: var(--pure-white);
}

.about-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

/* ===== FOOTER SECTION ===== */
.footer-section {
    background: linear-gradient(135deg, #2d1b40 0%, #1a0f29 100%);
    color: var(--pure-white);
    padding-top: var(--spacing-lg);
}

/* Footer logo - INCREASED SIZE FOR BETTER VISIBILITY */
.footer-logo {
    height: 180px; /* INCREASED from 150px to 180px */
    width: auto;
    margin-bottom: 1rem;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--purple-gradient);
    transition: var(--transition);
    transform: translateX(-50%);
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--light-purple);
    transform: translateX(5px);
}

/* "And More..." link styling */
.and-more-link {
    color: var(--light-purple) !important;
    font-weight: 600;
    font-style: italic;
    cursor: pointer;
}

.and-more-link:hover {
    color: var(--pure-white) !important;
    transform: translateX(10px);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--light-purple);
    margin-right: 1rem;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

/* Social media icons */
.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--pure-white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.3rem;
    cursor: pointer;
}

.social-icon:hover {
    background: var(--purple-gradient);
    transform: translateY(-5px) rotate(360deg);
    color: var(--pure-white);
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-tagline {
    color: var(--light-purple);
    font-style: italic;
    margin-top: 0.5rem;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--purple-gradient);
    color: var(--pure-white);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: var(--shadow-lg);
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */

/* Large tablets and small laptops (992px and down) */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .main-heading {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 1.8rem;
    }
    
    /* Stack images and text vertically on tablets */
    .row.align-items-center .col-lg-6 {
        margin-bottom: 2rem;
    }
    
    /* Center text content in responsive mode */
    .text-content {
        text-align: center;
        padding: 1rem;
    }
    
    .section-text {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .learn-more-btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
    
    /* Extra padding for smallest screens */
    .container-custom {
        padding-left: 25px;
        padding-right: 25px;
    }
    
    /* ENSURE ALL HOVER EFFECTS WORK ON MOBILE */
    .hover-bounce:hover,
    .hover-bounce:active,
    .hover-sway:hover,
    .hover-sway:active,
    .hover-color-change:hover,
    .hover-color-change:active {
        animation: bounce 0.6s ease-in-out;
        transform: scale(1.02);
    }
    
    .hover-text-effect:hover,
    .hover-text-effect:active {
        color: var(--primary-purple);
        transform: translateY(-2px);
    }
    
    .section-image:hover,
    .section-image:active {
        transform: scale(1.02);
        box-shadow: var(--shadow-lg);
    }
    
    /* Adjust decorative dividers for mobile */
    .decorative-divider {
        min-height: 80px;
    }
    
    .divider-icon {
        font-size: 2rem;
    }
    
    /* Adjust service icons */
    .service-icon-card {
        padding: 2rem 1rem;
    }
    
    .service-icon-card i {
        font-size: 2.5rem;
    }
    
    /* About page specific responsive fixes */
    .about-hero-title {
        font-size: 2.8rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.4rem;
    }
    
    .about-hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .mission-vision-card {
        padding: 2rem 1.5rem;
    }
    
    .card-icon {
        font-size: 3rem;
    }
    
    .card-title {
        font-size: 1.6rem;
    }
    
    .value-card {
        padding: 2rem 1rem;
    }
    
    .value-icon {
        font-size: 2.5rem;
    }
    
    .team-image {
        height: 250px;
    }
    
    .team-info {
        padding: 1.5rem;
    }
    
    .impact-stats {
        gap: 1rem;
    }
    
    .impact-stat {
        padding: 1rem;
        min-width: 100px;
    }
    
    .impact-number {
        font-size: 2rem;
    }
    
    /* FIXED SOCIAL MEDIA FOR MOBILE IN TEAM SECTION */
    .team-social {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .social-link-fixed {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        z-index: 100;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .purple-rain,
    .navbar,
    .scroll-top-btn,
    .cta-button,
    .learn-more-btn {
        display: none;
    }

    /* Center text for print */
    body {
        text-align: center;
    }

    /* Increase container padding for print */
    .container-custom {
        padding-left: 25px;
        padding-right: 25px;
    }
}

/* Tablets (768px and down) */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .hero-section {
        min-height: 700px;
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .main-heading {
        font-size: 2.2rem;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .section-title {
        font-size: 1.9rem;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .service-title {
        font-size: 1.7rem;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .section-text {
        font-size: 1.05rem;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-text {
        font-size: 1.15rem;
    }
    
    /* Center all buttons */
    .learn-more-btn,
    .learn-more-btn-outline {
        display: flex;
        justify-content: center;
        text-align: center;
        margin: 1rem auto;
    }
    
    /* Adjust navigation spacing */
    .nav-link {
        margin: 0.5rem 0;
        text-align: center;
    }
    
    /* Reduce padding on sections */
    .testimonial-card {
        padding: 2.5rem 1.5rem;
    }
    
    /* Increase container padding for more breathing room */
    .container-custom {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    /* Center align images */
    .section-image {
        display: block;
        margin: 0 auto;
    }
    
    /* NAVBAR LOGO - INCREASED SIZE FOR TABLET */
    .logo-img {
        height: 130px; /* INCREASED from 110px to 130px */
    }
    
    /* FOOTER LOGO - INCREASED SIZE FOR TABLET */
    .footer-logo {
        height: 160px; /* INCREASED from 130px to 160px */
    }
    
    /* Adjust service icons for mobile */
    .service-icon-card {
        margin-bottom: 1rem;
    }
    
    /* ENSURE MOBILE HOVER EFFECTS */
    .service-icon-card:hover,
    .service-icon-card:active {
        transform: translateY(-5px) scale(1.02);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-purple);
        background: var(--purple-gradient);
        color: var(--pure-white);
    }
    
    .service-icon-card:hover i,
    .service-icon-card:active i {
        color: var(--pure-white);
        transform: scale(1.1) rotate(360deg);
    }
    
    .service-icon-card:hover h4,
    .service-icon-card:active h4 {
        color: var(--pure-white);
    }
    
    /* About page mobile fixes */
    .about-hero-section {
        min-height: 500px;
        height: 50vh;
    }
    
    .mission-vision-card {
        margin-bottom: 2rem !important;
    }
    
    .training-feature,
    .footer-links li,
    .social-icon {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .training-feature {
        padding: 1rem 0 !important;
    }
    
    /* FIXED SOCIAL MEDIA FOR MOBILE IN TEAM SECTION */
    .team-social {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .social-link-fixed {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Mobile phones (576px and down) */
@media (max-width: 576px) {
    .hero-section {
        min-height: 600px;
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .main-heading {
        font-size: 1.9rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.7rem;
        text-align: center;
    }
    
    .service-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .section-text {
        font-size: 1rem;
        text-align: center;
    }
    
    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .learn-more-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }
    
    /* NAVBAR LOGO - INCREASED SIZE FOR MOBILE */
    .logo-img {
        height: 120px; /* INCREASED from 100px to 120px */
    }
    
    /* FOOTER LOGO - INCREASED SIZE FOR MOBILE */
    .footer-logo {
        height: 145px; /* INCREASED from 120px to 145px */
    }
    
    .testimonial-card {
        padding: 2rem 1rem;
    }
    
    .testimonial-text {
        font-size: 1.05rem;
    }
    
    /* Make dividers more compact */
    .decorative-divider {
        margin: 2.5rem 0;
        min-height: 60px;
    }
    
    .divider-icon {
        margin: 0 1rem;
        font-size: 1.5rem;
    }
    
    /* Adjust scroll to top button position */
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
    
    /* Stack footer columns */
    .footer-section .col-lg-4,
    .footer-section .col-lg-2,
    .footer-section .col-lg-3 {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Center social icons on mobile */
    .social-icons {
        justify-content: center;
    }
    
    /* Increase container padding for maximum breathing room */
    .container-custom {
        padding-left: 35px;
        padding-right: 35px;
    }
    
    /* Adjust service icons for small mobile */
    .service-icon-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon-card i {
        font-size: 2rem;
    }
    
    .service-icon-card h4 {
        font-size: 1rem;
    }
    
    /* About page small mobile fixes */
    .about-hero-section {
        min-height: 400px;
        height: 40vh;
    }
    
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-hero-stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .mission-vision-card {
        padding: 1.5rem 1rem;
    }
    
    .training-feature {
        padding: 0.6rem 0;
    }
    
    .impact-stats {
        justify-content: center;
    }
    
    .impact-stat {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .learn-more-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* FIXED SOCIAL MEDIA FOR SMALL MOBILE IN TEAM SECTION */
    .team-social {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .social-link-fixed {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }
}

/* Extra small phones (400px and down) */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .main-heading {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-text {
        font-size: 1rem;
    }
    
    .container-custom {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .decorative-divider {
        min-height: 50px;
    }
    
    .divider-icon {
        font-size: 1.3rem;
    }
    
    .learn-more-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* NAVBAR LOGO - INCREASED SIZE FOR EXTRA SMALL MOBILE */
    .logo-img {
        height: 110px; /* INCREASED from previous size */
    }
    
    /* FOOTER LOGO - INCREASED SIZE FOR EXTRA SMALL MOBILE */
    .footer-logo {
        height: 135px; /* INCREASED from previous size */
    }
    
    /* About page extra small fixes */
    .about-hero-stats {
        gap: 1rem !important;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 0.5rem) !important;
    }
    
    .impact-stats {
        gap: 0.5rem !important;
    }
    
    .impact-stat {
        flex: 0 0 calc(50% - 0.5rem) !important;
        min-width: auto !important;
    }
    
    /* FIXED SOCIAL MEDIA FOR EXTRA SMALL MOBILE IN TEAM SECTION */
    .team-social {
        gap: 0.5rem !important;
    }
    
    .social-link-fixed {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
}

/* ENSURE ALL HOVER EFFECTS WORK ON TOUCH DEVICES */
@media (hover: none) and (pointer: coarse) {
    .hover-bounce:active,
    .hover-sway:active,
    .hover-color-change:active {
        animation: bounce 0.6s ease-in-out;
        transform: scale(1.02);
    }
    
    .section-image:active {
        transform: scale(1.02);
    }
    
    .service-icon-card:active {
        transform: translateY(-5px) scale(1.02);
        background: var(--purple-gradient);
        color: var(--pure-white);
        border-color: var(--primary-purple);
    }
    
    .service-icon-card:active i {
        color: var(--pure-white);
        transform: scale(1.1) rotate(360deg);
    }
    
    .service-icon-card:active h4 {
        color: var(--pure-white);
    }
    
    .hover-text-effect:active {
        color: var(--primary-purple);
        transform: translateY(-2px);
    }
    
    .learn-more-btn:active {
        transform: translateY(-5px) scale(1.05);
        box-shadow: var(--shadow-lg);
    }
    
    .learn-more-btn:active::before {
        left: 100%;
    }
    
    .social-icon:active {
        background: var(--purple-gradient);
        transform: translateY(-5px) rotate(360deg);
    }
    
    .footer-links a:active {
        color: var(--light-purple);
        transform: translateX(5px);
    }
    
    .and-more-link:active {
        color: var(--pure-white) !important;
        transform: translateX(10px);
    }
    
    /* About page specific touch effects */
    .mission-vision-card:active {
        transform: translateY(-5px);
        border-color: var(--primary-purple);
        box-shadow: var(--shadow-lg);
    }
    
    .value-card:active {
        transform: translateY(-5px);
        background: var(--purple-gradient);
        color: var(--pure-white);
        border-color: var(--primary-purple);
    }
    
    .value-card:active .value-icon,
    .value-card:active .value-title,
    .value-card:active .value-text {
        color: var(--pure-white);
    }
    
    .value-card:active .value-icon {
        transform: scale(1.1) rotate(360deg);
    }
    
    .team-card:active .team-overlay {
        opacity: 1;
    }
    
    .team-card:active .team-image img {
        transform: scale(1.05);
    }
    
    .training-feature:active {
        transform: translateX(10px);
    }
    
    .training-feature:active i {
        color: var(--light-purple);
        transform: scale(1.2);
    }
    
    .training-feature:active span {
        color: var(--primary-purple);
    }
    
    .impact-stat:active {
        transform: translateY(-5px);
        background: var(--purple-gradient);
        box-shadow: var(--shadow-md);
    }
    
    .impact-stat:active .impact-number,
    .impact-stat:active .impact-label {
        color: var(--pure-white);
    }
    
    /* FIXED SOCIAL MEDIA TOUCH EFFECTS FOR TEAM SECTION */
    .social-link-fixed:active {
        background: var(--pure-white);
        color: var(--primary-purple);
        transform: translateY(-5px) rotate(360deg);
    }
}

/* Smooth animations for all elements */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Background pattern adjustment for mobile */
@media (max-width: 768px) {
    .background-pattern {
        background-attachment: scroll;
        opacity: 0.1;
    }
    
    .decorative-bg-1,
    .decorative-bg-2 {
        background-attachment: scroll;
    }
}

/* Fix for team card overlay on mobile */
.team-overlay {
    pointer-events: none;
}

.team-social {
    pointer-events: auto;
}

/* Ensure all links in footer work properly */
.footer-links a,
.and-more-link {
    position: relative;
    z-index: 10;
}

/* FIX FOR VIEW ALL SERVICES BUTTON IN ABOUT PAGE */
.view-all-services {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--purple-gradient);
    color: var(--pure-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.view-all-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
}

.view-all-services:hover::before {
    left: 100%;
}

.view-all-services:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
    color: var(--pure-white);
}

/* ===== SERVICES PAGE SPECIFIC STYLES ===== */

/* Services Hero Section */
.services-hero-section {
    position: relative;
    height: 70vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../assets/img/13.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    margin-top: 0;
}

/* SERVICES HERO SECTION RESPONSIVE FIX - Make scrollable on mobile */
@media (max-width: 768px) {
    .services-hero-section {
        min-height: 100vh;
        height: auto;
        padding-top: 150px;
        padding-bottom: 150px;
        background-attachment: scroll;
        display: flex;
        align-items: flex-start;
        overflow-y: auto;
    }
    
    .services-hero-content {
        padding: 2rem 1rem;
        margin: auto 0;
    }
    
    /* FIX: Ensure overlay covers entire scrollable area */
    .services-hero-overlay {
        position: fixed;
        height: 100%;
        min-height: 100vh;
    }
}

@media (max-width: 576px) {
    .services-hero-section {
        padding-top: 120px;
        padding-bottom: 120px;
        min-height: 100vh;
        height: auto;
    }
    
    .services-hero-content {
        padding: 1.5rem 0.5rem;
    }
    
    /* FIX: Ensure overlay covers entire scrollable area */
    .services-hero-overlay {
        position: fixed;
        height: 100%;
        min-height: 100vh;
    }
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.75), rgba(157, 78, 221, 0.6));
    z-index: 1;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.services-hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: var(--pure-white);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.services-hero-subtitle {
    font-size: 1.8rem;
    color: var(--pure-white);
    font-weight: 300;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.services-hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}

/* Services Introduction Section */
.services-intro-section {
    background: var(--pure-white);
}

/* Core Services Section */
.core-services-section {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.03) 0%, rgba(157, 78, 221, 0.03) 100%);
}

.service-feature-card {
    background: var(--pure-white);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--purple-gradient);
    opacity: 0.1;
    transition: var(--transition);
    z-index: 1;
}

.service-feature-card:hover::before {
    left: 0;
}

.service-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-purple);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.service-feature-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--light-purple);
}

.service-feature-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 1rem;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.service-feature-card:hover .service-feature-title {
    color: var(--light-purple);
}

.service-feature-text {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

.service-features-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    color: var(--text-gray);
    transition: var(--transition);
}

.service-features-list li i {
    color: var(--primary-purple);
    margin-right: 0.8rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-feature-card:hover .service-features-list li {
    color: var(--text-gray);
}

.service-feature-card:hover .service-features-list li i {
    color: var(--light-purple);
}

/* Event Types Section */
.event-types-section {
    background: var(--pure-white);
}

.event-type-card {
    background: var(--pure-white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
}

.event-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-purple);
    background: var(--purple-gradient);
    color: var(--pure-white);
}

.event-type-card.special-card {
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    color: var(--pure-white);
    border: 2px solid var(--light-purple);
}

.event-type-card.special-card:hover {
    background: linear-gradient(135deg, var(--light-purple), var(--primary-purple));
    transform: translateY(-5px) scale(1.02);
}

.event-icon {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.event-type-card:hover .event-icon {
    color: var(--pure-white);
    transform: scale(1.1) rotate(360deg);
}

.event-type-card.special-card .event-icon {
    color: var(--pure-white);
}

.event-type-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.event-type-card:hover .event-type-title {
    color: var(--pure-white);
}

.event-type-card.special-card .event-type-title {
    color: var(--pure-white);
}

.event-type-text {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    transition: var(--transition);
}

.event-type-card:hover .event-type-text {
    color: var(--pure-white);
}

.event-type-card.special-card .event-type-text {
    color: var(--pure-white);
}

/* Service Process Section */
.service-process-section {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.02) 0%, rgba(157, 78, 221, 0.02) 100%);
}

.process-steps {
    margin-top: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--pure-white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--purple-gradient);
    color: var(--pure-white);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(360deg);
}

.step-content h5 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.process-step:hover .step-content h5 {
    color: var(--primary-purple);
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Services CTA Section */
.services-cta-section {
    background: var(--purple-gradient);
    color: var(--pure-white);
}

.services-cta-content {
    max-width: 800px;
    margin: 0 auto;
}
/* ===== BLOG PAGE SPECIFIC STYLES ===== */

/* Blog Hero Section - FIXED */
.blog-hero-section {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../assets/img/26.jpg');
    background-size: cover;
    background-position: center top; /* FIXED - Show top of image */
    background-repeat: no-repeat;
    background-attachment: scroll; /* FIXED - Changed from fixed for mobile compatibility */
    overflow: hidden;
    margin-top: 0;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.75), rgba(157, 78, 221, 0.6));
    z-index: 1;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    padding-top: 3rem; /* ADDED - Extra top padding to avoid navbar overlap */
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.blog-hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--pure-white);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.blog-hero-subtitle {
    font-size: 1.3rem;
    color: var(--pure-white);
    font-weight: 300;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Main Blog Section */
.main-blog-section {
    background: var(--pure-white);
}

/* Featured Article */
.featured-article {
    position: relative;
    background: var(--pure-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 4rem;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--purple-gradient);
    color: var(--pure-white);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
}

.article-header {
    margin-bottom: 3rem;
    padding-top: 1rem;
}

.article-main-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-purple);
    font-size: 0.95rem;
}

.article-image-main {
    position: relative;
    margin-bottom: 2rem;
    text-align: center;
}

.article-image-main img {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    object-position: center top; /* ADDED - Show top of images */
    border-radius: 15px;
    margin: 0 auto;
}

.image-caption {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.article-content .lead {
    font-size: 1.2rem;
    color: var(--dark-purple);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

/* Article Stats - FIXED: Purple Numbers and Perfect Centering */
.article-stats {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.05) 0%, rgba(157, 78, 221, 0.05) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
}

.stat-box {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-purple); /* PURPLE COLOR FIXED */
    margin-bottom: 0.5rem;
    text-align: center;
    width: 100%;
}

.stat-label {
    color: var(--primary-purple);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
    
}

/* Article Body */
.article-body h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-purple);
    text-align: center;
}

.article-body h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin: 1.5rem 0 0.5rem 0;
    text-align: left;
}

.article-body p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    text-align: left;
}

.article-body ul {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    text-align: left;
}

.article-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Approach Steps */
.approach-steps {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-purple);
    text-align: left;
}

.approach-step {
    margin-bottom: 1.5rem;
}

.approach-step:last-child {
    margin-bottom: 0;
}

.approach-step h4 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.approach-step h4 i {
    color: var(--primary-purple);
}

.approach-step p {
    margin: 0;
    padding-left: 2.2rem;
}

/* Testimonial Box */
.testimonial-box {
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    color: var(--pure-white);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    position: relative;
    text-align: center;
}

.testimonial-content i.fa-quote-left {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
    display: block;
}

.testimonial-content p {
    color: var(--pure-white);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.testimonial-author {
    text-align: center;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.article-conclusion {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-purple);
    border-left: 4px solid var(--primary-purple);
    padding-left: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

/* Article Actions */
.article-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: var(--purple-gradient);
    color: var(--pure-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--pure-white);
}

.cta-button-outline {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.cta-button-outline:hover {
    background: var(--primary-purple);
    color: var(--pure-white);
    transform: translateY(-3px);
}

/* Recent Articles Section */
.section-subtitle {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 3rem;
    text-align: center;
}

/* Blog Article Cards */
.blog-article-card {
    background: var(--pure-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    margin: 0 auto;
    max-width: 500px;
}

.blog-article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-article-card .article-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-article-card .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* ADDED - Show top of images */
    transition: var(--transition);
}

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

.article-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--purple-gradient);
    color: var(--pure-white);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-article-card .article-content {
    padding: 2rem;
    text-align: center;
}

.blog-article-card .article-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 1rem;
    line-height: 1.4;
    text-align: center;
}

.blog-article-card .article-excerpt {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Article Highlights */
.article-highlights {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    text-align: center;
}

.highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.highlight i {
    color: var(--primary-purple);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.highlight span {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Client Feedback */
.client-feedback {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.05) 0%, rgba(157, 78, 221, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-purple);
    text-align: center;
}

.client-feedback p {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    text-align: center;
}

.client-name {
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    gap: 0.5rem;
    justify-content: center;
    width: 100%;
}

.read-more-link:hover {
    color: var(--light-purple);
    transform: translateX(5px);
}

/* Newsletter Section */
.newsletter-section {
    margin-top: 4rem;
}

.newsletter-card {
    background: var(--purple-gradient);
    color: var(--pure-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.newsletter-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    margin-top: 1.5rem;
    text-align: center;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    min-width: 200px;
}

.newsletter-btn {
    background: var(--dark-purple);
    color: var(--pure-white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--pure-white);
    color: var(--primary-purple);
    transform: translateY(-2px);
}

.form-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0.5rem 0 0 0;
    text-align: center;
}

.form-message {
    margin-top: 1rem;
    padding: 0.5rem;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid #4caf50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid #f44336;
}

/* Footer Social Links */
.footer-section .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-section .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--purple-gradient);
    color: var(--pure-white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.3rem;
}

.footer-section .social-link:hover {
    transform: translateY(-5px) rotate(360deg);
    color: var(--pure-white);
    box-shadow: var(--shadow-md);
}

/* Responsive Design */
@media (max-width: 992px) {
    .blog-hero-title {
        font-size: 2.5rem;
    }
    
    .article-main-title {
        font-size: 2rem;
    }
    
    .article-stats .row {
        gap: 1rem;
    }
    
    .article-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button, .cta-button-outline {
        width: 200px;
        justify-content: center;
    }
    
    .newsletter-card {
        padding: 2rem;
    }
    
    /* FIXED: Ensure stats are properly centered on tablet */
    .stat-box {
        margin-bottom: 1rem;
    }
    
    /* FIXED: Blog hero on tablet */
    .blog-hero-section {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    /* FIXED: Blog hero section on tablet/mobile */
    .blog-hero-section {
        height: auto; /* CHANGED from 40vh */
        min-height: 350px; /* INCREASED from 300px */
        padding-top: 100px; /* ADDED - Space for navbar */
        padding-bottom: 60px; /* ADDED */
        background-attachment: scroll; /* FIXED - For mobile compatibility */
        background-position: center top; /* FIXED - Show top of image */
        background-size: cover;
    }
    
    .blog-hero-content {
        padding-top: 1.5rem; /* REDUCED since hero has padding now */
    }
    
    .blog-hero-title {
        font-size: 2rem;
    }
    
    .blog-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .featured-article {
        padding: 2rem 1.5rem;
    }
    
    .article-main-title {
        font-size: 1.7rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .article-image-main img {
        height: 250px;
        object-position: center top; /* ADDED */
    }
    
    .article-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .highlight {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-btn {
        justify-content: center;
    }
    
    .featured-badge {
        top: -10px;
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }
    
    /* FIXED: Stats are perfectly centered on mobile */
    .article-stats .row {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .stat-box {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .footer-section .social-links {
        gap: 0.8rem;
    }
    
    .footer-section .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    /* FIXED: Blog hero section on small mobile */
    .blog-hero-section {
        height: auto;
        min-height: 300px;
        padding-top: 80px; /* ADDED - Space for smaller navbar */
        padding-bottom: 50px;
        background-attachment: scroll;
        background-position: center top;
    }
    
    .blog-hero-content {
        padding: 1rem;
        padding-top: 1rem;
    }
    
    .blog-hero-title {
        font-size: 1.8rem;
    }
    
    .blog-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .featured-article {
        padding: 1.5rem 1rem;
    }
    
    .article-main-title {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .article-body h3 {
        font-size: 1.5rem;
    }
    
    .testimonial-box {
        padding: 1.5rem;
    }
    
    .article-actions {
        gap: 1rem;
    }
    
    .cta-button, .cta-button-outline {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .featured-badge {
        top: -8px;
        padding: 0.5rem 1.2rem;
        font-size: 0.75rem;
    }
    
    .article-header {
        padding-top: 0.5rem;
    }
    
    /* FIXED: Stats are perfectly centered on small mobile */
    .article-stats {
        padding: 1.5rem 1rem;
    }
    
    .stat-box {
        padding: 0.8rem;
    }
    
    .footer-section .social-links {
        gap: 0.6rem;
    }
    
    .footer-section .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Touch Hover Effects for Mobile */
@media (hover: none) and (pointer: coarse) {
    .blog-article-card:active {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
    }
    
    .cta-button:active, .cta-button-outline:active {
        transform: translateY(-3px);
    }
    
    .read-more-link:active {
        transform: translateX(5px);
    }
    
    .footer-section .social-link:active {
        transform: translateY(-5px) rotate(360deg);
    }
}

/* ===== CONTACT PAGE SPECIFIC STYLES - UPDATED ===== */

/* Contact Hero Section - UPDATED BACKGROUND TO 16.jpg */
.contact-hero-section {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../assets/img/16.jpg');
    background-size: cover;
    background-position: center top ;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    margin-top: 0;
}

/* CONTACT HERO SECTION RESPONSIVE FIX - Make scrollable on mobile */
@media (max-width: 768px) {
    .contact-hero-section {
        min-height: 100vh;
        height: auto;
        padding-top: 150px;
        padding-bottom: 150px;
        background-attachment: scroll;
        display: flex;
        align-items: flex-start;
        overflow-y: auto;
    }
    
    .contact-hero-content {
        padding: 2rem 1rem;
        margin: auto 0;
    }
    
    /* FIX: Ensure overlay covers entire scrollable area */
    .contact-hero-overlay {
        position: fixed;
        height: 100%;
        min-height: 100vh;
    }
}

@media (max-width: 576px) {
    .contact-hero-section {
        padding-top: 120px;
        padding-bottom: 120px;
        min-height: 100vh;
        height: auto;
    }
    
    .contact-hero-content {
        padding: 1.5rem 0.5rem;
    }
    
    /* FIX: Ensure overlay covers entire scrollable area */
    .contact-hero-overlay {
        position: fixed;
        height: 100%;
        min-height: 100vh;
    }
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.75), rgba(157, 78, 221, 0.6));
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.contact-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--pure-white);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.contact-hero-subtitle {
    font-size: 1.5rem;
    color: var(--pure-white);
    font-weight: 300;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.contact-hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}

/* FIXED: Counter numbers and labels are now WHITE */
.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--pure-white); /* CHANGED TO WHITE */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label {
    color: var(--pure-white); /* CHANGED TO WHITE */
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Contact Form Section */
.contact-form-section {
    background: var(--pure-white);
}

.contact-form-card {
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--light-gray);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-purple);
}

.form-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Form Styles */
.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--dark-purple);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--pure-white);
}

.form-control:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(123, 44, 191, 0.25);
    background: var(--pure-white);
}

.form-control::placeholder {
    color: var(--text-gray);
    opacity: 0.7;
}

.form-error {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: none;
}

.form-error.show {
    display: block;
}

/* Submit Button */
.form-submit {
    margin-top: 2rem;
}

.submit-btn {
    background: var(--purple-gradient);
    color: var(--pure-white);
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-btn .btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-message {
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid #4caf50;
    display: block;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid #f44336;
    display: block;
}

/* Contact Info Cards */
.contact-info-card {
    background: var(--pure-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    border: 2px solid transparent;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-info-card.whatsapp-card {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--pure-white);
    text-align: center;
    border: none;
}

.contact-info-card.whatsapp-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-info-card.whatsapp-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.contact-info-card.whatsapp-card p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--pure-white);
    color: #25D366;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin-bottom: 1rem;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: #25D366;
}

.whatsapp-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-info-card.details-card h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--dark-purple);
    margin-bottom: 1.5rem;
}

/* FIXED: Contact detail text centering - COMPLETELY CENTERED */
.contact-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
    text-align: center;
}

.contact-detail:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: var(--purple-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    color: var(--pure-white);
    font-size: 1.2rem;
}

.detail-content {
    text-align: center;
    width: 100%;
}

.detail-content h5 {
    font-weight: 600;
    color: var(--dark-purple);
    margin-bottom: 0.3rem;
    text-align: center;
}

.detail-content p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
    text-align: center;
}

.contact-info-card.social-card {
    text-align: center;
}

.contact-info-card.social-card h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--dark-purple);
    margin-bottom: 0.5rem;
}

.contact-info-card.social-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* FIXED: Social media icons in Follow Us section - NOW VISIBLE */
.social-link-fixed {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--pure-white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.3rem;
    position: relative;
    z-index: 100;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    background: var(--purple-gradient);
}

.social-link-fixed:hover {
    background: var(--pure-white);
    color: var(--primary-purple);
    transform: translateY(-5px) rotate(360deg);
}

/* Map Section */
.map-section {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.03) 0%, rgba(157, 78, 221, 0.03) 100%);
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    display: block;
    border: none;
}

/* Service Areas */
.service-areas {
    margin-top: 3rem;
}

.areas-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--dark-purple);
    margin-bottom: 2rem;
}

.areas-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.area-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--pure-white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    min-width: 120px;
    text-align: center;
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--purple-gradient);
    color: var(--pure-white);
}

.area-item:hover i {
    color: var(--pure-white);
}

.area-item i {
    font-size: 2rem;
    color: var(--primary-purple);
    transition: var(--transition);
}

.area-item span {
    font-weight: 600;
    text-align: center;
}

/* Contact CTA Section */
.contact-cta-section {
    background: var(--purple-gradient);
    color: var(--pure-white);
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.cta-btn.primary {
    background: var(--pure-white);
    color: var(--primary-purple);
}

.cta-btn.primary:hover {
    background: var(--dark-purple);
    color: var(--pure-white);
    transform: translateY(-3px);
}

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

.cta-btn.secondary:hover {
    background: var(--pure-white);
    color: var(--primary-purple);
    transform: translateY(-3px);
}

/* Footer Social Links */
.footer-section .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-section .social-link-fixed {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--purple-gradient);
    color: var(--pure-white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.3rem;
    position: relative;
    z-index: 100;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.footer-section .social-link-fixed:hover {
    transform: translateY(-5px) rotate(360deg);
    color: var(--pure-white);
    box-shadow: var(--shadow-md);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-hero-title {
        font-size: 2.8rem;
    }
    
    .contact-form-card {
        padding: 2.5rem;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .areas-grid {
        gap: 1.5rem;
    }
    
    .area-item {
        min-width: 100px;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        height: 50vh;
        min-height: 400px;
    }
    
    .contact-hero-title {
        font-size: 2.2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-hero-stats {
        gap: 2rem;
    }
    
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    /* FIXED: Contact details are now properly centered on mobile */
    .contact-detail {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .detail-icon {
        align-self: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 200px;
        justify-content: center;
    }
    
    .areas-grid {
        gap: 1rem;
    }
    
    .area-item {
        flex: 0 0 calc(50% - 0.5rem);
        min-width: auto;
    }
    
    .footer-section .social-links {
        gap: 0.8rem;
    }
    
    .footer-section .social-link-fixed {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    /* FIXED: Social media icons responsive sizing */
    .social-link-fixed {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .contact-hero-title {
        font-size: 1.8rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-hero-stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .contact-form-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-info-card {
        padding: 1.5rem 1rem;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .social-link-fixed {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .areas-grid {
        gap: 0.8rem;
    }
    
    .area-item {
        flex: 0 0 calc(50% - 0.4rem);
        padding: 1rem 0.5rem;
    }
    
    .area-item i {
        font-size: 1.5rem;
    }
    
    .area-item span {
        font-size: 0.9rem;
    }
    
    .footer-section .social-links {
        gap: 0.6rem;
    }
    
    .footer-section .social-link-fixed {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Touch Hover Effects for Mobile */
@media (hover: none) and (pointer: coarse) {
    .contact-info-card:active {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
    }
    
    .whatsapp-btn:active {
        transform: translateY(-2px);
    }
    
    .social-link-fixed:active {
        transform: translateY(-5px) rotate(360deg);
    }
    
    .area-item:active {
        transform: translateY(-5px);
        background: var(--purple-gradient);
        color: var(--pure-white);
    }
    
    .area-item:active i {
        color: var(--pure-white);
    }
    
    .cta-btn:active {
        transform: translateY(-3px);
    }
    
    .submit-btn:active:not(:disabled) {
        transform: translateY(-3px);
    }
    
    .footer-section .social-link-fixed:active {
        transform: translateY(-5px) rotate(360deg);
    }
}