/* ===============================================
   Harmonious Community Care - Custom Styles
   Color Theme: Coral Orange (#F47B56) + Teal (#2DADA5)
   =============================================== */

/* CSS Variables */
:root {
    --primary-coral: #F47B56;
    --primary-coral-light: #FF9A7B;
    --primary-coral-dark: #E05A35;
    --secondary-teal: #2DADA5;
    --secondary-teal-light: #4FC9C1;
    --secondary-teal-dark: #1E8C85;
    --text-dark: #2D3436;
    --text-light: #636E72;
    --text-muted: #B2BEC3;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --cream: #FFF8F5;
    --gradient-coral: linear-gradient(135deg, #F47B56 0%, #FF9A7B 100%);
    --gradient-teal: linear-gradient(135deg, #2DADA5 0%, #4FC9C1 100%);
    --gradient-hero: linear-gradient(135deg, #2DADA5 0%, #F47B56 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.15);
    --shadow-coral: 0 10px 40px rgba(244, 123, 86, 0.3);
    --shadow-teal: 0 10px 40px rgba(45, 173, 165, 0.3);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Nunito', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--white);
}

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

a {
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

/* Section Padding */
.section-padding {
    padding: 100px 0;
}

/* ===============================================
   Preloader
   =============================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.heart-loader {
    font-size: 60px;
    color: var(--white);
    animation: heartbeat 1.2s infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    40% {
        transform: scale(1);
    }
    60% {
        transform: scale(1.1);
    }
}

/* ===============================================
   Navigation
   =============================================== */
.navbar {
    padding: 15px 0;
    transition: var(--transition-medium);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
    padding: 10px 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.navbar .logo {
    height: 60px;
    transition: var(--transition-fast);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar.scrolled .logo {
    height: 50px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    padding: 10px 20px;
    position: relative;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    width: 0;
    height: 2px;
    background: var(--primary-coral);
    transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 40px);
}

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

.navbar-toggler {
    border: none;
    padding: 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2845, 52, 54, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2845, 52, 54, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

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

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: var(--gradient-hero);
    transform: translateY(0);
    will-change: transform;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: -1;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background: var(--white);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 10%;
    animation: float 10s ease-in-out infinite;
}

.shape-4 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 30%;
    animation: float 7s ease-in-out infinite reverse;
}

.shape-5 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 20%;
    animation: float 9s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.2;
}

.title-line {
    display: block;
}

.hero-title .highlight {
    color: var(--primary-coral-light);
    text-shadow: 2px 2px 20px rgba(244, 123, 86, 0.3);
    display: inline;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: var(--white);
    color: var(--secondary-teal);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-fast);
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--white);
    transition: var(--transition-fast);
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--secondary-teal);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    display: inline-block;
}

.image-wrapper img {
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1) saturate(0.7) contrast(0.95);
    opacity: 0.95;
    transition: var(--transition-medium);
}

.image-wrapper:hover img {
    filter: brightness(1.15) saturate(0.75) contrast(1);
    opacity: 1;
}

.rounded-custom {
    border-radius: 30px;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-coral-light);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.5;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.scroll-indicator a {
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 6px;
    height: 10px;
    background: var(--white);
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 25px;
        opacity: 0;
    }
}

.scroll-indicator span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===============================================
   Section Headers
   =============================================== */
.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-coral);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
}

.section-title {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-coral);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.title-underline::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--secondary-teal);
    border-radius: 50%;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    animation: pulse 2s infinite;
}

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

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 20px auto 0;
}

/* ===============================================
   About Section
   =============================================== */
.about-section {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="0" cy="0" r="40" fill="%232DADA5" opacity="0.03"/></svg>');
    background-size: 80px;
}

.about-image-wrapper {
    position: relative;
    padding: 30px;
}

.about-img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.main-img {
    width: 100%;
    max-width: 450px;
}

.floating-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    border: 5px solid var(--white);
    animation: floatImage 5s ease-in-out infinite;
}

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

.experience-badge {
    position: absolute;
    top: 50px;
    left: 0;
    background: var(--gradient-coral);
    color: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-coral);
    animation: floatImage 6s ease-in-out infinite reverse;
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.experience-badge .text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    padding-left: 30px;
}

.about-heading {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 400;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.about-text {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.highlight-text {
    color: var(--text-dark);
    font-weight: 400;
}

.about-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-teal);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: var(--shadow-teal);
}

.feature-text h5 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-weight: 700;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Mission Card */
.mission-section {
    margin-top: 80px;
}

.mission-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    box-shadow: 0 10px 40px rgba(45, 173, 165, 0.15);
    border-left: 5px solid var(--secondary-teal);
    position: relative;
    overflow: hidden;
    transition: var(--transition-medium);
}

.mission-card:hover {
    box-shadow: 0 15px 50px rgba(45, 173, 165, 0.2);
    transform: translateY(-5px);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--gradient-teal);
    opacity: 0.08;
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-teal);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    flex-shrink: 0;
    box-shadow: var(--shadow-teal);
}

.mission-content h4 {
    font-size: 1.5rem;
    color: var(--secondary-teal);
    margin-bottom: 15px;
}

.mission-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

/* ===============================================
   Services Section
   =============================================== */
.services-section {
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.parallax-services {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="60" fill="%23F47B56" opacity="0.03"/><circle cx="20" cy="80" r="50" fill="%232DADA5" opacity="0.03"/></svg>');
    background-size: cover;
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.service-category {
    margin-bottom: 60px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--off-white);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-coral);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: var(--shadow-coral);
}

.category-header h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin: 0;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: var(--transition-medium);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-teal);
    transform: scaleX(0);
    transition: var(--transition-fast);
}

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

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

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--secondary-teal);
    font-size: 32px;
    transition: var(--transition-fast);
}

.service-card:hover .card-icon {
    background: var(--gradient-teal);
    color: var(--white);
    transform: rotateY(360deg);
}

.service-card h5 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.service-card.featured {
    background: var(--gradient-teal);
}

.service-card.featured .card-icon {
    background: var(--white);
    color: var(--secondary-teal);
}

.service-card.featured h5,
.service-card.featured p {
    color: var(--white);
}

.service-card.featured:hover .card-icon {
    background: var(--white);
    color: var(--secondary-teal);
}

.card-hover-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(45, 173, 165, 0.05);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-medium);
}

.service-card:hover .card-hover-effect {
    width: 300px;
    height: 300px;
}

/* Services Note */
.services-note {
    margin-top: 60px;
}

.note-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 25px;
    align-items: center;
    border-left: 5px solid var(--primary-coral);
}

.note-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: var(--shadow-coral);
}

.note-card p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

/* ===============================================
   Stats Section
   =============================================== */
.stats-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.parallax-stats {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150%;
    background: var(--gradient-hero);
    transform: translateY(0);
    will-change: transform;
    z-index: -1;
}

.stat-item {
    padding: 30px;
    position: relative;
}

.stat-icon {
    font-size: 50px;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0.9;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

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

.value-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-teal);
    transition: var(--transition-medium);
    z-index: 0;
}

.value-card:hover::before {
    height: 100%;
}

.value-card > * {
    position: relative;
    z-index: 1;
    transition: var(--transition-fast);
}

.value-icon {
    width: 100px;
    height: 100px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--primary-coral);
    font-size: 40px;
    transition: var(--transition-fast);
}

.value-card:hover .value-icon {
    background: var(--white);
    transform: scale(1.1);
}

.value-card h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

.value-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.value-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* ===============================================
   Contact Section
   =============================================== */
.contact-section {
    background: var(--white);
    position: relative;
}

.contact-info {
    padding: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--off-white);
    border-radius: 15px;
    transition: var(--transition-fast);
    overflow: hidden;
}

.contact-text {
    overflow: hidden;
    min-width: 0;
    flex: 1;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-coral);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: var(--shadow-coral);
}

.contact-text h5 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-weight: 700;
}

.contact-text p {
    color: var(--text-light);
    margin: 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-text p a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-fast);
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-text p a[href^="mailto:"] {
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
}

.contact-text p a:hover {
    color: var(--primary-coral);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding: 0 25px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-teal);
    font-size: 18px;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--gradient-teal);
    color: var(--white);
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--off-white);
    border-radius: 20px;
    padding: 50px;
}

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

.form-control {
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 18px 20px;
    font-size: 15px;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--secondary-teal);
    background: var(--white);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    resize: none;
}

select.form-control {
    cursor: pointer;
}

.focus-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-teal);
    transition: var(--transition-fast);
}

.form-control:focus ~ .focus-border {
    width: 100%;
    left: 0;
}

.btn-submit {
    background: var(--gradient-teal);
    color: var(--white);
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-teal);
    transition: var(--transition-fast);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(45, 173, 165, 0.4);
}

.btn-submit i {
    transition: var(--transition-fast);
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* ===============================================
   Footer
   =============================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding-top: 0;
    position: relative;
}

.footer-wave {
    color: var(--text-dark);
    margin-bottom: -5px;
}

.footer-wave svg {
    display: block;
}

.footer .container {
    padding-top: 60px;
    padding-bottom: 30px;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-title {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 25px;
    font-family: var(--font-body);
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-coral);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    display: inline-block;
}

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

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 15px 25px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-newsletter {
    background: var(--gradient-coral);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    border: none;
    transition: var(--transition-fast);
}

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

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.footer-bottom {
    padding-top: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gradient-coral);
    transform: translateY(-3px);
}

/* ===============================================
   Back to Top Button
   =============================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    box-shadow: var(--shadow-coral);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-fast);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(244, 123, 86, 0.4);
}

/* ===============================================
   Responsive Styles
   =============================================== */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
        box-shadow: var(--shadow-lg);
    }
    
    .navbar-nav .nav-link {
        color: var(--text-dark);
        padding: 10px 15px;
    }
    
    .hero-section {
        padding-top: 90px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        margin-top: 50px;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 50px;
    }
    
    .about-image-wrapper {
        padding: 20px;
    }
    
    .floating-img {
        width: 150px;
    }
    
    .mission-card {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-features {
        flex-direction: column;
    }
    
    .experience-badge {
        position: relative;
        display: inline-block;
        margin-bottom: 20px;
    }
    
    .floating-img {
        display: none;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
    }
    
    .note-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 20px;
    }
    
    .copyright {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .navbar .logo {
        height: 40px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* ===============================================
   Animation Classes
   =============================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glowing effect for important elements */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(244, 123, 86, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(244, 123, 86, 0.5);
    }
}

/* Typewriter effect for hero */
.typewriter {
    overflow: hidden;
    border-right: 3px solid var(--white);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--white); }
}

/* Ripple effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:active::after {
    width: 200px;
    height: 200px;
}

/* Shimmer effect */
.shimmer {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

