/* Custom CSS for JVS Tax Services Landing Page */

/* Root Variables */
:root {
    --primary-color: #2c5aa0;
    --secondary-color: #f8f9fa;
    --accent-color: #20B2AA;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --gradient-primary: linear-gradient(135deg, #ffffff 0%, #eef2f7 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: linear-gradient(135deg, #e8f4f8 0%, #e6f2ff 40%, #e0f7f4 100%);
}

/* Global Image Responsiveness */
img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Ensure all images are responsive by default */
.person-svg,
.tree-logo,
.watermark-svg,
.portrait-svg,
.service-card img,
.commitment-media img,
.transparency-media img,
.alt-media img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Exclude specific card images from general rule */
.card-image img:not(.protection-logo-img):not(.business-svg):not(.couple-svg):not(.family-svg) {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Top Bar Styles */
.top-bar {
    background: #20B2AA;
    color: white;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.top-bar-info span {
    margin-right: 2rem;
    display: inline-block;
    font-weight: 500;
}

.top-bar-info i {
    color: white;
    margin-right: 0.5rem;
}

.top-bar-social .social-link {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: transparent;
    color: white;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    margin-left: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.top-bar-social .social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
}

/* Main Navigation Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    transition: all 0.3s ease;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    top: 40px;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    top: 0;
}

/* Brand/Logo Styles */
.brand-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand-container:hover {
    text-decoration: none;
}

.logo-circle {
    width: auto;
    height: 70px;   
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.logo-circle:hover {
    transform: scale(1.05);
}

.tree-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
    line-height: 1;
}

.brand-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #20B2AA;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* Navigation Links */
.navbar-nav {
    margin: 0 3rem;
}

.navbar-nav .nav-link {
    color: #2c3e50 !important;
    font-weight: 600;
    margin: 0 0.25rem;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover {
    color: #20B2AA !important;
    background: rgba(32, 178, 170, 0.1);
}

.navbar-nav .nav-link.active {
    color: #20B2AA !important;
    background: rgba(32, 178, 170, 0.15);
    font-weight: 700;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 2px;
    background: #20B2AA;
    border-radius: 1px;
}

/* Dropdown Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    background: white;
    min-width: 200px;
}

/* Mobile Dropdown - Make scrollable */
@media (max-width: 991px) {
    .dropdown-menu {
        max-height: 70vh;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        position: absolute !important;
        will-change: transform;
    }
    
    .dropdown-menu.show {
        display: block !important;
    }
    
    .dropdown-item {
        white-space: nowrap;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .dropdown-menu::-webkit-scrollbar {
        width: 6px;
    }
    
    .dropdown-menu::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .dropdown-menu::-webkit-scrollbar-thumb {
        background: #20B2AA;
        border-radius: 10px;
    }
    
    .dropdown-menu::-webkit-scrollbar-thumb:hover {
        background: #17a2b8;
    }
    
    /* Ensure dropdown doesn't get cut off */
    .navbar-collapse {
        max-height: 90vh;
        overflow-y: auto;
    }
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: rgba(32, 178, 170, 0.1);
    color: #20B2AA;
}

.dropdown-item.active,
.dropdown-item:active {
    background: #20B2AA;
    color: white;
}

.dropdown-item.active i,
.dropdown-item:active i {
    color: white;
}

.dropdown-item i {
    color: #20B2AA;
    width: 18px;
    margin-right: 0.5rem;
}

/* Call-to-Action Buttons */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-signin,
.btn-appointment {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 80px;
    height: 50px;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-signin {
    background: #20B2AA;
    color: white;
}

.btn-signin:hover {
    background: #1a9b94;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 178, 170, 0.3);
}

.btn-appointment {
    background: linear-gradient(135deg, #20B2AA, #00ff88, #20B2AA);
    background-size: 200% 200%;
    animation: buttonGradient 3s ease-in-out infinite;
    color: white;
    min-width: 120px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-appointment:hover {
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(32, 178, 170, 0.45);
}
.btn-appointment::before,
.btn-signin::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: buttonShine 2s ease-in-out infinite;
}

/* Global brand button look for site custom buttons */
.btn-card,
.btn-card-small,
.btn-poster,
.btn-fcard {
    background: linear-gradient(135deg, #20B2AA, #00ff88, #20B2AA);
    background-size: 200% 200%;
    animation: buttonGradient 3s ease-in-out infinite;
    border: none;
    color: white !important;
    padding: 0.85rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(32, 178, 170, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-card::before,
.btn-card-small::before,
.btn-poster::before,
.btn-fcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: buttonShine 2s ease-in-out infinite;
}

.btn-card:hover,
.btn-card-small:hover,
.btn-poster:hover,
.btn-fcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(32, 178, 170, 0.45);
}

/* Small variant size tweak */
.btn-card-small {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}


.btn-signin i,
.btn-appointment i {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.btn-signin span,
.btn-appointment span {
    font-size: 0.7rem;
    line-height: 1;
    font-weight: 600;
}

/* Mobile Toggle Button */
.custom-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    background: transparent;
}

.custom-toggler:focus {
    box-shadow: none;
}

.custom-toggler .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%2832, 178, 170, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .navbar {
        top: 0;
        background: rgba(255, 255, 255, 0.95) !important;
    }
    
    .top-bar {
        display: none;
    }
    
    .navbar-nav {
        margin: 1rem 0;
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
        padding: 1rem !important;
    }
    
    .navbar-actions {
        flex-direction: row;
        gap: 1rem;
        margin-top: 1rem;
        justify-content: center;
    }
    
    .btn-signin,
    .btn-appointment {
        min-width: 100px;
        height: 50px;
    }
    
    .brand-container {
        flex-direction: row;
        text-align: left;
    }
    
    .logo-circle {
        margin-right: 1rem;
        margin-bottom: 0;
    }
    
    /* Tablet Image Adjustments - Show Hero Image */
    .hero-image {
        height: auto;
        min-height: 350px;
        padding: 1rem;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .person-image {
        width: 100%;
        max-width: 400px;
        height: auto;
        min-height: 220px;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .person-svg {
        width: 100%;
        height: auto;
        max-width: 100%;
        max-height: 350px;
        object-fit: contain;
        display: block !important;
    }
    
    /* Show hero image column on tablets */
    .hero-section .col-lg-6:last-child {
        display: block !important;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    /* Tablet hero button alignment */
    .hero-buttons {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .hero-buttons .btn {
        flex: 1;
        min-width: 200px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    /* Medium Mobile Adjustments */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-image {
        height: 450px;
    }
    
    .person-image {
        max-width: 350px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    /* Service cards on medium screens */
    .service-card {
        margin-bottom: 2rem;
    }
    
    .card-image img:not(.protection-logo-img):not(.business-svg):not(.couple-svg):not(.family-svg) {
        max-width: 150px;
    }
    
    /* Ensure all four service card images fill container */
    .protection-logo-img,
    .business-svg,
    .couple-svg,
    .family-svg {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 576px) {
    .navbar-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-signin,
    .btn-appointment {
        width: 100%;
        min-width: auto;
    }
}

/* Hero Section */
.hero-section {
    background: #000000;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 120px; /* Account for top bar + navbar */
    padding-bottom: 3rem;
}

/* Floating animation overlay for hero section */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: 3;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Home hero gradient style (match contact aesthetic) */
.hero-gradient {
    background: transparent;
    position: relative;
}

/* Overlay to hide background dots */
.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1e3c72;
    z-index: 1;
}

/* Second overlay layer for complete coverage */
.hero-gradient::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #20B2AA 0%, #48CAE4 25%, #20B2AA 50%, #17A2B8 75%, #20B2AA 100%);
    background-size: 400% 400%;
    z-index: 2;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    position: relative;
    z-index: 4;
    color: white;
    padding: 2rem 0;
    text-align: left;
    margin-left: 2rem;
}

.hero-content.text-left {
    text-align: left;
}

/* Small badge above title */
.home-hero-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 10px 18px;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
}

.hero-subtitle {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    min-width: 200px;
    text-align: center;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #20B2AA, #00ff88, #20B2AA);
    background-size: 200% 200%;
    animation: buttonGradient 3s ease-in-out infinite;
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 30px rgba(32, 178, 170, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: buttonShine 2s ease-in-out infinite;
}

.btn-hero-primary:hover {
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(32, 178, 170, 0.45);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.btn-hero-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: buttonShine 2s ease-in-out infinite;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(255, 255, 255, 0.2);
}

@keyframes buttonGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes buttonShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Hero Image with Professional Woman */
.hero-image {
    position: relative;
    z-index: 4;
    height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0; /* remove extra gap under image */
}

.hero-person {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.person-image {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.person-svg {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 600px;
    object-fit: cover;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Logo avatar presentation in hero */
.hero-logo-avatar {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    padding: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Guarantee section portrait image */
.portrait-svg {
    width: 100%;
    height: auto;
    max-width: 420px;
    max-height: 520px;
    object-fit: cover;
    border-radius: 18px;
}

/* Floating animation for the person */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive adjustments for hero section */
@media (max-width: 768px) {
    .hero-content {
        margin-left: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        min-width: auto;
        max-width: 300px;
    }
    
    .person-image {
        width: 250px;
        height: 400px;
        min-height: 400px;
        padding: 0;
    }

    .portrait-svg {
        max-width: 360px;
        max-height: 420px;
        object-fit: cover;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: auto;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    
    .hero-content {
        margin-left: 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .person-image {
        width: 200px;
        height: 350px;
        min-height: 350px;
        padding: 0;
    }

    .portrait-svg {
        max-width: 280px;
        max-height: 320px;
        object-fit: cover;
    }
    
    /* Remove spacing between hero and service cards on mobile */
    #services.py-5 {
        padding-top: 3rem !important;
    }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Card Images */
.card-image {  
    background: #f8f9fa;
    display: flex;
    align-items: stretch;
    justify-content: stretch;  
    position: relative;
    overflow: hidden;
    height: 250px;
    min-height: 250px;
}

/* Protection Plus Logo */
.protection-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #87CEEB, #5F9EA0);
    border-radius: 10px;
}

.logo-container {
    text-align: center;
    color: #2c3e50;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
}

.plus-symbol {
    font-size: 1.2rem;
    color: #20B2AA;
}

.main-text {
    font-size: 1.8rem;
}

.sub-text {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    margin-bottom: 0.5rem;
}

.logo-line {
    width: 100px;
    height: 2px;
    background: #20B2AA;
    margin: 0 auto;
    border-radius: 1px;
}

/* Business Woman SVG */
.business-svg,
.couple-svg,
.family-svg {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
}

/* Card Content */
.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Card Buttons */
.btn-card {
    background: #20B2AA;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-card:hover {
    background: #1a9b94;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
}

.btn-card-small {
    background: #20B2AA;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    margin: 0 0.25rem;
}

.btn-card-small:hover {
    background: #1a9b94;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(32, 178, 170, 0.3);
}

.card-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-image {
        height: 150px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .main-text {
        font-size: 1.4rem;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .card-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-card-small {
        margin: 0;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .service-card {
        margin-bottom: 1rem;
    }
    
    .card-image {
        height: 120px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .main-text {
        font-size: 1.2rem;
    }
}

/* About Section */
.about-content {
    padding-right: 2rem;
}

/* About Page - Professional Enhancements */
.about-hero {
    position: relative;
    background: radial-gradient(1000px 400px at 10% -10%, rgba(32,178,170,.25), transparent 40%), #000;
    padding-top: 140px;
    padding-bottom: 80px;
    overflow: hidden;
}

.about-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(32,178,170,.12);
    color: #9fd9d6;
    border: 1px solid rgba(32,178,170,.25);
    padding: .4rem .8rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .85rem;
}

.about-hero h1 {
    color: #20B2AA;
    font-weight: 800;
    letter-spacing: -.5px;
}

.about-hero .lead {
    color: #cfeeee;
}

.about-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-decoration::before,
.about-decoration::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: .18;
}

.about-decoration::before {
    width: 280px; height: 280px; background: #20B2AA; top: -60px; right: -60px;
}

.about-decoration::after {
    width: 220px; height: 220px; background: #48CAE4; bottom: -60px; left: -60px;
}

.about-section {
    background: #eef7fb;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.value-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    transition: transform .25s ease, box-shadow .25s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0,0,0,.10);
}

.value-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: grid; place-items: center; margin-bottom: .75rem;
    background: linear-gradient(135deg, #eaf7f7, #ffffff);
    box-shadow: inset 0 0 0 1px rgba(32,178,170,0.12);
    color: #20B2AA; font-size: 1.2rem;
}

.value-title { font-weight: 700; color: #2c3e50; margin-bottom: .25rem; }
.value-text { color: #5b6b7e; font-size: .95rem; }

.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.stat-card { background:#fff; border:1px solid rgba(0,0,0,.06); border-radius:14px; padding:1.25rem; text-align:center; box-shadow:0 8px 24px rgba(0,0,0,.06); }
.stat-number { color:#20B2AA; font-weight:800; font-size:2rem; }
.stat-label { color:#5b6b7e; font-weight:600; }

.timeline { position: relative; margin-left: .5rem; padding-left: 1.25rem; }
.timeline::before { content:""; position:absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: rgba(32,178,170,.25); }
.timeline-item { position: relative; padding-left: 1rem; margin-bottom: 1.25rem; }
.timeline-item::before { content:""; position:absolute; left: -1px; top: .25rem; width: 10px; height: 10px; border-radius: 50%; background:#20B2AA; box-shadow: 0 0 0 4px rgba(32,178,170,.15); }
.timeline-year { font-weight: 800; color:#2c3e50; margin-bottom: .25rem; }
.timeline-text { color:#5b6b7e; }

.about-cta { background: linear-gradient(135deg, #20B2AA, #48CAE4); color:#fff; border-radius:16px; padding: 2rem; box-shadow: 0 16px 36px rgba(32,178,170,.25); }
.about-cta .btn { background:#fff; color:#20B2AA; font-weight:800; border:none; border-radius:10px; padding:.75rem 1.25rem; }
.about-cta .btn:hover { transform: translateY(-2px); box-shadow:0 8px 18px rgba(255,255,255,.35); }

@media (max-width: 576px) {
    .about-hero { padding-bottom: 60px; }
}

/* Features Quad (Appointment & Help) */
.features-quad {
    background: #eef7fb;
    position: relative;
}

.fcard {
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform 300ms ease, box-shadow 300ms ease;
    position: relative;
    overflow: hidden;
}

.fcard::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(120px 60px at var(--mx,80%) -20%, rgba(32,178,170,.12), transparent 60%);
    pointer-events: none;
    transition: 200ms ease;
}

.fcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}

.ficon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #eaf7f7, #ffffff);
    box-shadow: inset 0 0 0 1px rgba(32,178,170,0.08);
    position: relative;
}

.ficon svg { width: 40px; height: 40px; }

.fcard-title { font-weight: 700; color: #2c3e50; margin: 0.5rem 0; }
.fcard-text { color: #5b6b7e; line-height: 1.6; margin-bottom: 1rem; }

.btn-fcard {
    display: inline-block;
    background: #20B2AA;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    letter-spacing: .2px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-fcard:hover { background: #1a9b94; transform: translateY(-2px); box-shadow: 0 8px 18px rgba(32,178,170,.25); }

/* Subtle parallax hover for icons */
.fcard:hover .ficon { transform: translateY(-2px) scale(1.02); transition: 250ms ease; }

/* Cursor reactive glow */
.fcard:hover { --mx: 50%; }

@media (max-width: 991.98px) {
    .fcard { padding: 1.5rem 1.25rem; }
}

/* Promo Posters */
.promo-posters { background: #eaf2ef; }
.poster-card { background: #fff; border-radius: 16px; padding: 1.25rem; box-shadow: 0 10px 24px rgba(0,0,0,.08); }
.poster { border-radius: 12px; width: 100%; height: auto; min-height: 400px; background-size: contain; background-position: center; background-repeat: no-repeat; box-shadow: inset 0 0 0 1px rgba(0,0,0,.06); }
.poster-a { background-image: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?q=80&w=1200&auto=format&fit=crop'); }
.poster-b { background-image: url('https://images.unsplash.com/photo-1554224155-1696413565d3?q=80&w=1200&auto=format&fit=crop'); }
.btn-poster { background:#20B2AA; color:#fff; border-radius:10px; font-weight:700; padding:.85rem 1.25rem; }
.btn-poster:hover { background:#1a9b94; color:#fff; box-shadow:0 8px 18px rgba(32,178,170,.25); transform: translateY(-2px); }

/* Fade motion (up on enter, down/out on exit) */
.fade-motion { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.2,1); }
.fade-motion.is-visible { opacity: 1; transform: translateY(0); }
.fade-motion.is-exit { opacity: .2; transform: translateY(40px) scale(.98); }

/* We Guarantee Section */
.guarantee-section {
    background: white;
    position: relative;
}

.guarantee-title {
    font-size: 3rem;
    font-weight: 700;
    color: #20B2AA;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    margin-bottom: 0;
}

.guarantee-subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    color: #20B2AA;
    display: block;
    margin-top: 0.5rem;
}

.guarantee-image {
    text-align: center;
    padding: 2rem 0;
}

.professional-portrait {
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    padding: 30px;
}

.portrait-svg {
    width: 100%;
    height: auto;
    max-height: 500px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.guarantee-accordion {
    padding: 2rem 0;
}

.accordion {
    border: none;
}

.accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.accordion-item.active {
    background: rgba(32, 178, 170, 0.1);
    border-color: #20B2AA;
}

.accordion-button {
    background: white;
    border: none;
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: #20B2AA;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: rgba(32, 178, 170, 0.1);
    color: #20B2AA;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    display: none;
}

.guarantee-text {
    font-weight: 700;
    color: #20B2AA;
    font-size: 1.2rem;
}

.guarantee-icon {
    color: #20B2AA;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) .guarantee-icon {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 1.5rem 2rem;
    background: white;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Illustration inside accordion body */
.accordion-illustration {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    display: inline-block;
}

.accordion-body p {
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .guarantee-title {
        font-size: 2.2rem;
    }
    
    .guarantee-subtitle {
        font-size: 1.8rem;
    }
    
    .accordion-button {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1.25rem 1.5rem;
    }
    
    .guarantee-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .guarantee-title {
        font-size: 1.8rem;
    }
    
    .guarantee-subtitle {
        font-size: 1.5rem;
    }
    
    .accordion-button {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 1rem 1.25rem;
    }
    
    .guarantee-text {
        font-size: 1rem;
    }
}

/* Other Services section */
.other-services .section-title {
    font-weight: 700;
    color: #2c3e50;
}

.os-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.os-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.os-thumb {
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    background: #f8f9fa;
}

.os-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.os-title {
    font-weight: 600;
    margin: 0.5rem 0 0.25rem;
    color: #2c3e50;
}

.os-text {
    color: #6b7a90;
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    flex-grow: 1;
}

.features-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: var(--gradient-primary);
    color: white;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    margin: 0;
    font-weight: 500;
    opacity: 0.9;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
}

.contact-form .btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 50%, #34495e 100%);
    color: #ecf0f1;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #20B2AA;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #20B2AA, transparent);
}

.footer-section {
    margin-bottom: 3rem;
    position: relative;
}

.footer-heading {
    color: #20B2AA;
    font-weight: 800;
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #20B2AA, transparent);
    border-radius: 2px;
}

.footer-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #20B2AA, transparent);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #ecf0f1;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.footer-contact .contact-item:hover {
    background: rgba(32, 178, 170, 0.1);
    padding-left: 1rem;
    transform: translateX(5px);
}

.footer-contact .contact-item i {
    color: #20B2AA;
    margin-right: 1rem;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-hours .hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #ecf0f1;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid #20B2AA;
    transition: all 0.3s ease;
}

.footer-hours .hours-item:hover {
    background: rgba(32, 178, 170, 0.1);
    transform: translateX(5px);
}

.footer-hours .day {
    font-weight: 600;
    color: #20B2AA;
}

.footer-hours .time {
    color: #bdc3c7;
    font-weight: 500;
}

.footer-logo {
    text-align: center;
    margin-top: 2rem;
}

.logo-watermark {
    position: relative;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-watermark:hover {
    opacity: 1;
    transform: scale(1.05);
}

.watermark-svg {
    width: 140px;
    height: 90px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    object-fit: contain;
    border-radius: 0;
}

.watermark-text {
    text-align: center;
}

.watermark-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #20B2AA;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.watermark-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ecf0f1;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-sitemap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
    justify-items: center;
}

.sitemap-link {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    line-height: 1.4;
    position: relative;
    border-left: 2px solid transparent;
}

.sitemap-link:hover {
    color: #20B2AA;
    background: rgba(32, 178, 170, 0.1);
    border-left-color: #20B2AA;
    transform: translateX(5px);
    text-decoration: none;
}

.bbb-accreditation {
    margin-top: 2rem;
    text-align: center;
    display: flex;
    justify-content: center;
}

.bbb-badge {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(32, 178, 170, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.bbb-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: #20B2AA;
}

.bbb-logo {
    margin-right: 1.5rem;
}

.bbb-square {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0070ba, #0056b3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 112, 186, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.bbb-text {
    flex: 1;
}

.bbb-title {
    color: #ecf0f1;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.bbb-rating {
    color: #20B2AA;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.bbb-date {
    color: #95a5a6;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.bbb-link {
    color: #20B2AA;
    font-size: 0.85rem;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bbb-link:hover {
    color: #1a9b94;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link.facebook {
    background: linear-gradient(135deg, #3b5998, #2d4373);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 89, 152, 0.3);
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.footer-copyright {
    text-align: center;
    padding: 2.5rem 0 2rem;
    border-top: 1px solid rgba(32, 178, 170, 0.2);
    background: rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.footer-copyright p {
    color: #95a5a6;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}


/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(135deg, #e8f4f8 0%, #dfe8ed 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(32, 178, 170, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(32, 178, 170, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.how-it-works-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(32, 178, 170, 0.1);
}

.how-it-works-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #20B2AA, #17a2b8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.how-it-works-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(32, 178, 170, 0.2);
    border-color: #20B2AA;
}

.how-it-works-card:hover::before {
    transform: scaleX(1);
}

.step-number-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #20B2AA 0%, #17a2b8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(32, 178, 170, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.how-it-works-card:hover .step-number {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 10px 35px rgba(32, 178, 170, 0.5);
}

.step-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid rgba(32, 178, 170, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.step-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.7;
    text-align: center;
    margin: 0;
}

/* Refund CTA Section */
.refund-cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
    overflow: hidden;
}

.refund-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(32, 178, 170, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.refund-cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(23, 162, 184, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.refund-cta-box {
    position: relative;
    z-index: 1;
}

.cta-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.cta-subheading {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #20B2AA, #17a2b8);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    box-shadow: 0 8px 25px rgba(32, 178, 170, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    white-space: nowrap;
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, #17a2b8, #138496);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(32, 178, 170, 0.6);
    color: white;
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid white;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    white-space: nowrap;
}

.btn-cta-secondary:hover {
    background: white;
    color: #20B2AA;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Responsive Design for How It Works & CTA */
@media (max-width: 991px) {
    .cta-heading {
        font-size: 2rem;
    }
    
    .cta-subheading {
        font-size: 1.05rem;
    }
    
    .cta-buttons {
        justify-content: center;
        margin-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    .how-it-works-card {
        padding: 2rem 1.25rem;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .step-title {
        font-size: 1.25rem;
    }
    
    .step-description {
        font-size: 0.95rem;
    }
    
    .cta-heading {
        font-size: 1.75rem;
    }
    
    .cta-subheading {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        font-size: 1.15rem;
    }
    
    .cta-heading {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #20B2AA, #1a9b94);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #1a9b94, #20B2AA);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(32, 178, 170, 0.5);
}

.scroll-to-top i {
    font-size: 24px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 4rem 0 3rem;
    }
    
    .footer-heading {
        font-size: 1.2rem;
        letter-spacing: 1.5px;
    }
    
    .footer-heading::after {
        width: 60px;
    }
    
    .footer-divider {
        width: 60px;
    }
    
    .footer-contact .contact-item,
    .footer-hours .hours-item {
        font-size: 0.95rem;
        padding: 0.4rem 0.8rem;
    }
    
    .footer-sitemap {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .sitemap-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .bbb-badge {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .bbb-logo {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .bbb-square {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }
    
    .watermark-svg {
        width: 120px;
        height: 75px;
    }
    
    .watermark-title {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
    
    .watermark-subtitle {
        font-size: 1rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-section {
        margin-bottom: 2.5rem;
    }
    
    .footer-heading {
        font-size: 1.1rem;
        letter-spacing: 1px;
        margin-bottom: 1.25rem;
    }
    
    .footer-heading::after {
        width: 50px;
        height: 2px;
    }
    
    .footer-divider {
        width: 50px;
        height: 2px;
    }
    
    .footer-contact .contact-item {
        font-size: 0.9rem;
        padding: 0.3rem 0;
    }
    
    .footer-hours .hours-item {
        font-size: 0.9rem;
        padding: 0.4rem 0.6rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-sitemap {
        gap: 0.4rem;
        margin-bottom: 1.5rem;
    }
    
    .sitemap-link {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
    }
    
    .bbb-badge {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .bbb-square {
        width: 45px;
        height: 45px;
        font-size: 0.8rem;
    }
    
    .bbb-title {
        font-size: 0.8rem;
    }
    
    .bbb-rating {
        font-size: 0.9rem;
    }
    
    .watermark-svg {
        width: 100px;
        height: 60px;
    }
    
    .watermark-title {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    .watermark-subtitle {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 0.6rem;
        margin-top: 1.5rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-copyright {
        padding: 2rem 0 1.5rem;
        margin-top: 1.5rem;
    }
    
    .footer-copyright p {
        font-size: 0.9rem;
    }
    
    
    .scroll-to-top {
        bottom: 85px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
    
    .scroll-to-top i {
        font-size: 22px;
    }
}

/* Image Styling */
.protection-logo-img,    
.business-svg,
.couple-svg,
.family-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
}

.portrait-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
}


.portrait-svg {
    max-height: 400px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.person-svg {
    width: 100%;
    height: auto;
    max-width: 560px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    object-fit: cover;
    border-radius: 10px;
}

.poster-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.poster:hover .poster-image {
    transform: scale(1.02);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
    opacity: 0;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-card {
        position: relative;
        margin: 1rem 0;
        animation: none;
    }
    
    .hero-image {
        height: auto;
        margin-top: 2rem;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .contact-form {
        padding: 2rem 1rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* About - Customer Commitment */
.about-commitment { background:#eaf2ef; }
.commitment-title { color:#20B2AA; font-weight:800; }
.commitment-text { color:#2c3e50; font-size:1.05rem; }
.commitment-list { list-style:none; padding:0; margin:0; }
.commitment-list li { display:flex; align-items:center; gap:.5rem; color:#5b6b7e; margin-bottom:.5rem; font-weight:500; }
.commitment-list i { color:#20B2AA; }
.commitment-media img { border:1px solid rgba(0,0,0,.06); }

/* About - Transparency */
.about-transparency { background:#eef7fb; }
.transparency-title { color:#20B2AA; font-weight:800; text-align:left; }
.transparency-text { color:#2c3e50; font-size:1.05rem; }
.transparency-list { list-style:none; padding:0; margin:0; }
.transparency-list li { display:flex; align-items:center; gap:.5rem; color:#5b6b7e; margin-bottom:.5rem; font-weight:500; }
.transparency-list i { color:#20B2AA; }
.transparency-media img { border:1px solid rgba(0,0,0,.06); }

/* About - Alternating Sections */
.about-alt { background:#dfeee8; }
.about-improvement { background:#eef7fb; }
.alt-title { color:#20B2AA; font-weight:800; }
.alt-text { color:#2c3e50; font-size:1.05rem; }
.alt-media img { border:1px solid rgba(0,0,0,.06); width:100%; height:auto; max-width:640px; }
.commitment-media img, .transparency-media img { width:100%; height:auto; max-width:640px; }
.alt-list { list-style:none; padding:0; margin:0; }
.alt-list li { display:flex; align-items:center; gap:.5rem; color:#5b6b7e; margin-bottom:.5rem; font-weight:500; }
.alt-list i { color:#20B2AA; }

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .service-card {
        padding: 2rem 1rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    /* Mobile - Hide Hero Image */
    .hero-image {
        display: none !important;
    }
    
    .person-image {
        display: none !important;
    }
    
    .person-svg {
        display: none !important;
    }
    
    .hero-person {
        display: none !important;
    }
    
    /* Hide the entire hero image column on mobile */
    .hero-section .col-lg-6:last-child {
        display: none !important;
    }
    
    /* Adjust hero section for mobile without image */
    .hero-section {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 2rem;
    }
    
    .hero-content {
        padding: 1rem 0;
        text-align: center;
        width: 100%;
    }
    
    /* Center align hero buttons on mobile */
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    /* Make hero content take full width on mobile */
    .hero-section .col-lg-6:first-child {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    /* Service card images */
    .card-image img:not(.protection-logo-img):not(.business-svg):not(.couple-svg):not(.family-svg) {
        width: 100%;
        height: auto;
        max-width: 200px;
        object-fit: contain;
    }
    
    /* Ensure all four service card images fill container */
    .protection-logo-img,
    .business-svg,
    .couple-svg,
    .family-svg {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* About page images */
    .commitment-media img,
    .transparency-media img,
    .alt-media img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: cover;
        border-radius: 10px;
    }
    
    /* Portrait images */
    .portrait-svg {
        width: 100%;
        height: auto;
        max-width: 250px;
        object-fit: contain;
    }
    
    .professional-portrait {
        text-align: center;
        padding: 1rem;
    }
    
    /* Logo images */
    .tree-logo {
        height: 56px;
        width: auto;
        object-fit: contain;
    }
    
    .watermark-svg {
        width: 100%;
        height: auto;
        max-width: 80px;
        object-fit: contain;
    }
    
    /* Footer images */
    .footer-logo img {
        width: 100%;
        height: auto;
        max-width: 100px;
        object-fit: contain;
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   REVIEWS PREVIEW SECTION
   ======================================== */

.reviews-preview {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.reviews-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #20B2AA, transparent);
}

.overall-rating-preview {
    background: linear-gradient(135deg, #20B2AA, #17a2b8);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(32, 178, 170, 0.2);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.overall-rating-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.overall-rating-preview .rating-stars {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.overall-rating-preview .rating-score {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.overall-rating-preview .rating-count {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.review-card-preview {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(32, 178, 170, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.review-card-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #20B2AA, #17a2b8);
}

.review-card-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(32, 178, 170, 0.15);
    border-color: #20B2AA;
}

.review-card-preview .review-header {
    margin-bottom: 1.5rem;
}

.review-card-preview .reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-card-preview .reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #20B2AA, #17a2b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
}

.review-card-preview .reviewer-name {
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    font-size: 1.1rem;
}

.review-card-preview .review-rating {
    color: #20B2AA;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.review-card-preview .review-content {
    color: #6c757d;
    line-height: 1.6;
    font-style: italic;
    position: relative;
}

.review-card-preview .review-content::before {
    content: '"';
    font-size: 3rem;
    color: #20B2AA;
    position: absolute;
    top: -10px;
    left: -10px;
    opacity: 0.3;
    font-family: serif;
}

/* ========================================
   FEEDBACK BUTTON AND MODAL STYLING
   ======================================== */

.btn-feedback {
    background: linear-gradient(135deg, #20B2AA, #17a2b8);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-feedback::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-feedback:hover::before {
    left: 100%;
}

.btn-feedback:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.4);
    color: white;
}

.btn-feedback:active {
    transform: translateY(0);
}

/* Feedback Modal Styling */
.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #20B2AA, #17a2b8);
    color: white;
    border: none;
    padding: 1.5rem 2rem;
}

.modal-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

.modal-body {
    padding: 2rem;
    background: #f8f9fa;
}

.modal-footer {
    background: white;
    border: none;
    padding: 1.5rem 2rem;
}

/* Star Rating Input */
.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
    margin-top: 0.5rem;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input .star-label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
    user-select: none;
}

.rating-input .star-label:hover,
.rating-input .star-label:hover ~ .star-label,
.rating-input input[type="radio"]:checked ~ .star-label {
    color: #20B2AA;
}

.rating-input input[type="radio"]:checked ~ .star-label {
    animation: starPulse 0.3s ease;
}

@keyframes starPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Form Styling */
.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #20B2AA;
    box-shadow: 0 0 0 0.2rem rgba(32, 178, 170, 0.25);
}

.form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-check-input:checked {
    background-color: #20B2AA;
    border-color: #20B2AA;
}

.form-check-input:focus {
    border-color: #20B2AA;
    box-shadow: 0 0 0 0.2rem rgba(32, 178, 170, 0.25);
}

/* Submit Button */
#submitFeedback {
    background: linear-gradient(135deg, #20B2AA, #17a2b8);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#submitFeedback:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.3);
}

/* Cancel Button - Professional Senior Level Styling */
.modal-footer .btn-secondary {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    border: 2px solid #6c757d;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.2);
}

.modal-footer .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.modal-footer .btn-secondary:hover::before {
    left: 100%;
}

.modal-footer .btn-secondary:hover {
    background: linear-gradient(135deg, #5a6268, #495057);
    border-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.3);
    color: white;
}

.modal-footer .btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(108, 117, 125, 0.2);
}

.modal-footer .btn-secondary:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.25);
    outline: none;
}

/* Enhanced Modal Footer Styling */
.modal-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid rgba(32, 178, 170, 0.1);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.modal-footer .btn {
    min-width: 140px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Responsive Modal Footer */
@media (max-width: 768px) {
    .modal-footer {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modal-footer .btn {
        width: 100%;
        min-width: auto;
    }
}

/* Success Message */
.feedback-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .btn-feedback {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin-top: 1rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-footer {
        padding: 1rem 1.5rem;
    }
    
    .rating-input .star-label {
        font-size: 1.5rem;
    }
}

/* ========================================
   REVIEWS SECTION - SENIOR LEVEL STYLING
   ======================================== */

.reviews-section {
    background: linear-gradient(135deg, #e8f4f8 0%, #dfe8ed 50%, #e5eff2 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(44, 90, 160, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(32, 178, 170, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(32, 178, 170, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.reviews-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="subtle-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="%23ffffff" opacity="0.4"/><circle cx="10" cy="10" r="0.5" fill="%23ffffff" opacity="0.2"/><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23subtle-pattern)"/></svg>');
    pointer-events: none;
    opacity: 0.3;
}

/* Section Header */
.reviews-section .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, #20B2AA 50%, #17a2b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.reviews-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), #20B2AA);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 0;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

/* Overall Rating - Premium Design */
.overall-rating {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    display: inline-block;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.overall-rating:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(32, 178, 170, 0.15),
        0 10px 20px rgba(32, 178, 170, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(32, 178, 170, 0.3);
}

.overall-rating::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), #20B2AA, #17a2b8);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.1;
}

.rating-stars {
    font-size: 2.5rem;
    color: #20B2AA;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    filter: drop-shadow(0 2px 4px rgba(32, 178, 170, 0.3));
}

.rating-stars i {
    text-shadow: 0 2px 4px rgba(32, 178, 170, 0.4);
    transition: transform 0.3s ease;
}

.rating-stars i:hover {
    transform: scale(1.1);
}

.rating-score {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), #20B2AA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 4px 8px rgba(44, 90, 160, 0.2);
}

.rating-count {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Review Cards - Premium Design */
.review-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), #20B2AA);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.12),
        0 10px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.review-card:hover::before {
    opacity: 1;
}

.review-header {
    margin-bottom: 1.5rem;
    position: relative;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #20B2AA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 
        0 8px 16px rgba(44, 90, 160, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.reviewer-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.review-card:hover .reviewer-avatar::before {
    animation: shimmer 0.8s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.review-rating {
    display: flex;
    gap: 0.15rem;
    font-size: 1rem;
    color: #20B2AA;
    filter: drop-shadow(0 1px 2px rgba(32, 178, 170, 0.3));
}

.review-rating i {
    transition: transform 0.2s ease;
}

.review-rating i:hover {
    transform: scale(1.1);
}

.review-content {
    flex: 1;
    margin-bottom: 1.5rem;
    position: relative;
}

.review-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.review-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 900;
    opacity: 0.3;
    line-height: 1;
}

.review-content p::after {
    content: '"';
    position: absolute;
    right: 0;
    bottom: -1rem;
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 900;
    opacity: 0.3;
    line-height: 1;
}

.review-date {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
    text-align: right;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    letter-spacing: 0.3px;
}

/* Reviews CTA - Premium Design */
.reviews-cta {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 4rem 3rem;
    border-radius: 25px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.reviews-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(44, 90, 160, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(32, 178, 170, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-buttons .btn:hover::before {
    left: 100%;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #20B2AA);
    border: none;
    color: white;
    box-shadow: 
        0 8px 20px rgba(44, 90, 160, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 30px rgba(44, 90, 160, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: white;
}

.cta-buttons .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    position: relative;
    overflow: hidden;
}

.cta-buttons .btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #20B2AA);
    transition: width 0.4s ease;
    z-index: -1;
}

.cta-buttons .btn-outline-primary:hover {
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(44, 90, 160, 0.3);
    border-color: transparent;
}

.cta-buttons .btn-outline-primary:hover::before {
    width: 100%;
}

/* Responsive Design for Reviews */
@media (max-width: 1200px) {
    .reviews-section .section-title {
        font-size: 3rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .reviews-preview {
        padding: 3rem 0;
    }
    
    .overall-rating-preview {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .overall-rating-preview .rating-stars {
        font-size: 1.5rem;
    }
    
    .overall-rating-preview .rating-score {
        font-size: 2.5rem;
    }
    
    .overall-rating-preview .rating-count {
        font-size: 1rem;
    }
    
    .review-card-preview {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .review-card-preview .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .review-card-preview .reviewer-name {
        font-size: 1rem;
    }
    
    .review-card-preview .review-content {
        font-size: 0.95rem;
    }
    
    .review-card-preview .review-content::before {
        font-size: 2rem;
        top: -5px;
        left: -5px;
    }
    
    .reviews-section {
        padding: 4rem 0;
    }
    
    .reviews-section .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .overall-rating {
        padding: 2rem 1.5rem;
    }
    
    .rating-stars {
        font-size: 2rem;
    }
    
    .rating-score {
        font-size: 3rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .reviewer-info {
        gap: 1rem;
    }
    
    .reviewer-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .reviewer-name {
        font-size: 1.1rem;
    }
    
    .review-content p {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-subtitle {
        font-size: 1.2rem;
    }
    
    .reviews-cta {
        padding: 3rem 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .reviews-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .overall-rating {
        padding: 1.5rem 1rem;
    }
    
    .rating-score {
        font-size: 2.5rem;
    }
    
    .review-card {
        padding: 1.25rem;
    }
    
    .review-content p::before,
    .review-content p::after {
        font-size: 2rem;
    }
}

/* ==========================================
   LARGE SCREEN OPTIMIZATIONS (1440p & 4K)
   ========================================== */

/* 1440p Resolution (2560px width) */
@media (min-width: 2560px) {
    .container,
    .container-fluid {
        max-width: 2200px;
        margin: 0 auto;
    }
    
    /* Hero Section Optimization */
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    /* Navigation */
    .navbar {
        padding: 1.5rem 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.6rem 1.2rem;
    }
    
    /* Service Cards */
    .service-card {
        padding: 2.5rem;
    }
    
    .card-description {
        font-size: 1.1rem;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 3.5rem;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
    }
    
    /* Footer */
    .footer {
        font-size: 1.1rem;
    }
    
    /* Buttons */
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-appointment {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
    }
}

/* 4K Resolution (3840px width) */
@media (min-width: 3840px) {
    .container,
    .container-fluid {
        max-width: 3200px;
        margin: 0 auto;
    }
    
    /* Hero Section Optimization */
    .hero-title {
        font-size: 6rem;
    }
    
    .hero-subtitle {
        font-size: 2.5rem;
    }
    
    /* Navigation */
    .navbar {
        padding: 2rem 0;
    }
    
    .tree-logo {
        height: 70px;
    }
    
    .nav-link {
        font-size: 1.3rem;
        padding: 0.8rem 1.5rem;
    }
    
    /* Service Cards */
    .service-card {
        padding: 3.5rem;
    }
    
    .card-image img:not(.protection-logo-img):not(.business-svg):not(.couple-svg):not(.family-svg) {
        max-width: 280px;
    }
    
    /* Ensure all four service card images fill container */
    .protection-logo-img,
    .business-svg,
    .couple-svg,
    .family-svg {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .card-description {
        font-size: 1.3rem;
        line-height: 1.8;
    }
    
    /* Icons */
    .contact-icon,
    .feature-icon,
    .category-icon {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 5rem;
        margin-bottom: 2rem;
    }
    
    .section-subtitle {
        font-size: 2rem;
    }
    
    /* Cards */
    .contact-card,
    .feature-card,
    .category-card {
        padding: 3.5rem;
    }
    
    .contact-title-card,
    .feature-title,
    .category-title {
        font-size: 2rem;
    }
    
    /* Footer */
    .footer {
        font-size: 1.3rem;
        padding: 4rem 0;
    }
    
    .footer-heading {
        font-size: 2rem;
    }
    
    /* Buttons */
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-appointment,
    .btn-card,
    .btn-submit {
        font-size: 1.3rem;
        padding: 1.3rem 3rem;
    }
    
    /* Form Elements */
    .form-control {
        font-size: 1.2rem;
        padding: 1.2rem 1.5rem;
    }
    
    .form-label {
        font-size: 1.2rem;
    }
    
    /* Top Bar */
    .top-bar {
        font-size: 1.1rem;
    }
    
    /* Spacing Adjustments */
    section {
        padding: 8rem 0;
    }
}
