/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* .navbar {
    padding: 1rem 0;
} */

.navbar{
    background-color: #fff !important;
}


.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #004aad;
}

.nav-logo .logo-image {
    height: 110px;
    width: 200px;
    margin-right: 10rem;
    border-radius: 0px;
    object-fit: contain;
    padding: 20px;
}

.logo-image{
    margin-left: -3rem !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #004aad;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #004aad;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Search Bar */
.nav-search {
    display: flex;
    align-items: center;
    margin-left: 10rem;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 250px;
    padding: 10px 45px 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 0.9rem;
    background: white;
    color: #333;
    transition: all 0.3s ease;
    outline: none;
}

.search-input:focus {
    border-color: #004aad;
    box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.1);
    width: 300px;
}

.search-input::placeholder {
    color: #999;
    font-size: 0.9rem;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: #004aad;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #003a8a;
    transform: translateY(-50%) scale(1.1);
}

.search-btn i {
    font-size: 0.9rem;
}

/* Search Highlight */
.search-highlight {
    background-color: #ffd700;
    color: #333;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 74, 173, 0.8), rgba(0, 102, 204, 0.8)), 
                url('/assets/index/children-2142646_1280.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 20px 50px;
    position: relative;
    overflow: hidden;
}


.hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
    animation: fadeInUp 1s ease-out;
    text-align: left;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: slideInDown 1.2s ease-out 0.3s both;
}

.hero h1 .highlight {
    color: #ffd700;
    text-decoration: underline;
    text-decoration-color: #ffd700;
    text-underline-offset: 12px;
    text-decoration-thickness: 3px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1.4s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s ease-out 0.9s both;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
    animation: fadeInUp 1.8s ease-out 1.2s both;
}

.hero-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 74, 173, 0.15), 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 420px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #004aad, #0066cc, #ffd700);
    border-radius: 25px 25px 0 0;
}

.hero-card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 74, 173, 0.1);
}

.hero-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #004aad, #0066cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 25px rgba(0, 74, 173, 0.3);
    animation: float 3s ease-in-out infinite;
}

.hero-card-icon i {
    font-size: 1.5rem;
    color: white;
}

.hero-card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.5px;
}

.hero-card-header p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.hero-form .form-group {
    margin-bottom: 0;
}

.hero-form input,
.hero-form select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e8ecf0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    color: #2c3e50;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hero-form input:focus,
.hero-form select:focus {
    outline: none;
    border-color: #004aad;
    box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.1), 0 4px 12px rgba(0, 74, 173, 0.15);
    transform: translateY(-1px);
}

.hero-form input::placeholder {
    color: #999;
    font-weight: 400;
}

.hero-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.btn-hero-submit {
    background: linear-gradient(135deg, #004aad, #0066cc);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-hero-submit::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-hero-submit:hover::before {
    left: 100%;
}

.btn-hero-submit:hover {
    background: linear-gradient(135deg, #0066cc, #004aad);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 74, 173, 0.4);
}

.btn-hero-submit i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-hero-submit:hover i {
    transform: translateX(3px);
}

.hero-form-footer {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 74, 173, 0.1);
}

.hero-form-footer small {
    color: #666;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.hero-form-footer i {
    color: #27ae60;
    font-size: 0.9rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #004aad;
    color: white;
    border-color: #004aad;
}

.btn-primary:hover {
    background: #003a8a;
    border-color: #003a8a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 74, 173, 0.4);
    animation: bounce 0.6s ease;
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #004aad;
    transform: translateY(-2px);
    animation: bounce 0.6s ease;
}

.btn-outline {
    background: transparent;
    color: #004aad;
    border-color: #004aad;
}

.btn-outline:hover {
    background: #004aad;
    color: white;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Page Header */
.page-header {
    margin-top: 80px;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #004aad 0%, #0066cc 100%);
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Home page header */
.page-header.home {
    background: linear-gradient(rgba(0, 74, 173, 0.8), rgba(0, 102, 204, 0.8)), 
                url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=2074&q=80');
}

/* Services page header */
.page-header.services {
    background: transparent;
    position: relative;
    overflow: visible;
    z-index: 10;
}

.page-header.services .container {
    position: relative;
    z-index: 10;
}

.page-header.services h1,
.page-header.services p {
    position: relative;
    z-index: 10;
}

/* Services Page Wrapper - Contains both page-header and services section */
.services-page-wrapper {
    position: relative;
    overflow: hidden;
}

/* Background Slideshow - Shared styles for page-header and services */
.services-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.page-header.about {
    background: linear-gradient(rgba(0, 74, 173, 0.8), rgba(0, 102, 204, 0.8)), 
                url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

/* Process page header */
.page-header.process {
    background: linear-gradient(rgba(0, 74, 173, 0.8), rgba(0, 102, 204, 0.8)), 
                url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}


/* Contact page header */
.page-header.contact {
    background: linear-gradient(rgba(0, 74, 173, 0.8), rgba(0, 102, 204, 0.8)), 
                url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?ixlib=rb-4.0.3&auto=format&fit=crop&w=2074&q=80');
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Detailed Section */
.services-detailed {
    padding: 100px 0;
    background: white;
}

.service-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
    padding: 0 2rem;
}

.service-section:last-child {
    margin-bottom: 0;
}

.service-section.reverse {
    flex-direction: row-reverse;
}

.service-section.highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    margin: 0 -2rem 6rem -2rem;
}

.service-content {
    flex: 1;
    max-width: 500px;
}

.service-number {
    font-size: 1rem;
    font-weight: 700;
    color: #004aad;
    background: rgba(0, 74, 173, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.service-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.service-content p:last-of-type {
    margin-bottom: 2rem;
}

.service-image {
    flex: 1;
    max-width: 500px;
}

.service-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive Services Detailed */
@media (max-width: 1024px) {
    .nav-logo .logo-image {
        height: 80px;
        width: 200px;
        margin-right: 10rem;
        border-radius: 0px;
        object-fit: contain;
        padding: 20px;
    }

    .hero{
        margin-top: 50px;
    }

    .service-section {
        gap: 3rem;
    }
    
    .service-content h2 {
        font-size: 2rem;
    }
    
    .service-content p {
        font-size: 1rem;
    }
    
    .service-image img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .services-detailed {
        padding: 60px 0;
    }
    
    .service-section {
        flex-direction: column !important;
        gap: 2rem;
        margin-bottom: 4rem;
        padding: 0 1rem;
    }
    
    .service-section.highlight {
        padding: 3rem 1rem;
        margin: 0 -1rem 4rem -1rem;
    }
    
    .service-content {
        max-width: 100%;
        text-align: center;
    }
    
    .service-content h2 {
        font-size: 1.8rem;
    }
    
    .service-content p {
        font-size: 0.95rem;
    }
    
    .service-image {
        max-width: 100%;
    }
    
    .service-image img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .services-detailed {
        padding: 40px 0;
    }
    
    .service-section {
        margin-bottom: 3rem;
        padding: 0 0.5rem;
    }
    
    .service-section.highlight {
        padding: 2rem 0.5rem;
        margin: 0 -0.5rem 3rem -0.5rem;
    }
    
    .service-content h2 {
        font-size: 1.5rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
    }
    
    .service-image img {
        height: 200px;
        border-radius: 10px;
    }
    
    .service-number {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

/* Services Page Wrapper - Contains both page-header and services section */
.services-page-wrapper {
    position: relative;
    overflow: hidden;
}

/* Background Slideshow - Shared styles for page-header and services */
.services-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.background-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    animation: slideShow 25s infinite;
}

.background-slide:nth-child(1) {
    background-image: url('assets/slider/bavi.jpg');
    animation-delay: 0s;
}

.background-slide:nth-child(2) {
    background-image: url('assets/slider/CatBaResort.jpg');
    animation-delay: 5s;
}

.background-slide:nth-child(3) {
    background-image: url('assets/slider/serena.jpg');
    animation-delay: 10s;
}

.background-slide:nth-child(4) {
    background-image: url('assets/slider/FLC_HaLong.jpg');
    animation-delay: 15s;
}

.background-slide:nth-child(5) {
    background-image: url('assets/slider/FLC_DaiLai.jpg');
    animation-delay: 20s;
}

@keyframes slideShow {
    0% { opacity: 0; transform: scale(1); }
    4% { opacity: 1; transform: scale(1.05); }
    20% { opacity: 1; transform: scale(1.1); }
    24% { opacity: 0; transform: scale(1.15); }
    100% { opacity: 0; transform: scale(1); }
}

/* Overlay gradient - Shared for both sections */
.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* background: linear-gradient(rgba(0, 74, 173, 0.8), rgba(0, 102, 204, 0.8)); */
    pointer-events: none;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: transparent;
    position: relative;
    overflow: visible;
    z-index: 10;
}

.services .container {
    position: relative;
    z-index: 10;
}

.services .section-header {
    position: relative;
    z-index: 10;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-family: 'Inter', sans-serif;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 1);
}

.service-card.featured {
    border-color: #e74c3c;
    transform: scale(1.05);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 20px 50px rgba(231, 76, 60, 0.3);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
    box-shadow: 0 30px 60px rgba(231, 76, 60, 0.4);
}

.service-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066cc, #004aad);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
    letter-spacing: -0.5px;
    text-align: center;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #004aad;
    margin: 0 auto 1.5rem auto;
    text-align: center;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    border: 2px solid #004aad;
    letter-spacing: -0.3px;
    display: inline-block;
    white-space: nowrap;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    padding-left: 0;
    text-align: left;
}

.service-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:hover {
    background-color: #f8f9fa;
    padding-left: 0.5rem;
    border-radius: 8px;
    border-bottom: 1px solid transparent;
}

.service-features i {
    color: #27ae60;
    margin-right: 0.75rem;
    font-size: 1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.service-card .btn {
    margin-top: 1rem;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: white;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #004aad;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: #004aad;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.3);
}

.timeline-content {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    width: 45%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-right: 5%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-left: 5%;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    color: #ffd700;
    margin-bottom: 1rem;
}

.stars i {
    margin-right: 0.2rem;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info h4 {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: #7f8c8d;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.3rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: #004aad;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-item h4 {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.2rem;
}

.contact-item p {
    color: #666;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #004aad;
}

/* Package price display */
.package-price-display {
    margin-top: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border-left: 4px solid #004aad;
    font-weight: 600;
    color: #2c3e50;
    display: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.package-price-display.show {
    display: block;
    animation: fadeInUp 0.3s ease-out;
}

.package-price-display i {
    color: #004aad;
    margin-right: 0.5rem;
}

.package-price-display strong {
    color: #004aad;
    font-size: 1.1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: #004aad;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo .footer-logo-image {
    height: 35px;
    width: auto;
    margin-right: 0.5rem;
    border-radius: 6px;
    object-fit: contain;
}

.footer-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-main-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e74c3c;
}

.footer-section ul li i {
    color: #fff;
    margin-right: 0.5rem;
    width: 16px;
    text-align: center;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 10px 15px;
    background: white;
    color: #004aad;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid transparent;
}

.social-links a:hover {
    background: #004aad;
    color: white;
    border: 2px solid white;
    transform: translateX(5px);
}

.social-links a i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.social-links a span {
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-search {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-image {
        margin-top: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-top: 2rem;
    }
    
    .hero-card {
        max-width: 100%;
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .hero-card-header h3 {
        font-size: 1.2rem;
    }
    
    .hero-card-header p {
        font-size: 0.9rem;
    }
    
    .hero-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .hero-card-icon i {
        font-size: 1.2rem;
    }
    
    .hero-form input,
    .hero-form select {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .btn-hero-submit {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .hero-form-footer small {
        font-size: 0.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .price {
        font-size: 1.2rem;
        padding: 0.6rem 1rem;
        letter-spacing: -0.2px;
    }

    .service-card.featured {
        transform: none;
    }

    .service-card.featured:hover {
        transform: translateY(-10px);
    }

    .process-timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column !important;
        padding-left: 60px;
    }

    .timeline-number {
        left: 30px;
        transform: translateX(-50%);
    }

    .timeline-content {
        width: 100%;
        margin: 0 !important;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .price {
        font-size: 1.1rem;
        padding: 0.5rem 0.8rem;
        letter-spacing: -0.1px;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
    
    .footer-main-logo {
        height: 80px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(-2px);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #34495e;
    color: white;
    text-align: center;
}

/* Services & Process page CTA Section - White background */
.services-page-wrapper ~ .cta-section,
.page-header.process ~ .process ~ .cta-section {
    background: white;
    color: #004aad;
}

.services-page-wrapper ~ .cta-section h2,
.page-header.process ~ .process ~ .cta-section h2 {
    color: #004aad;
}

.services-page-wrapper ~ .cta-section p,
.page-header.process ~ .process ~ .cta-section p {
    color: #004aad;
    opacity: 0.85;
}

.services-page-wrapper ~ .cta-section .btn-primary,
.page-header.process ~ .process ~ .cta-section .btn-primary {
    background: #004aad;
    color: white;
    border-color: #004aad;
}

.services-page-wrapper ~ .cta-section .btn-primary:hover,
.page-header.process ~ .process ~ .cta-section .btn-primary:hover {
    background: #003a8a;
    color: white;
    border-color: #003a8a;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* CTA Section Button Override */
.cta-section .btn-primary {
    background: white;
    color: #004aad;
    border-color: white;
    font-weight: 700;
}

.cta-section .btn-primary:hover {
    background: #f8f9fa;
    color: #003a8a;
    border-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Timeline Details */
.timeline-details {
    list-style: none;
    margin-top: 1rem;
}

.timeline-details li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #666;
}

.timeline-details i {
    color: #004aad;
    margin-right: 0.5rem;
    width: 16px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc, #004aad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Testimonial Author */
.author-avatar {
    width: 50px;
    height: 50px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.author-avatar i {
    color: white;
    font-size: 1.2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.package-used {
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
    text-align: center;
    min-width: 80px;
}

/* Màu sắc cho từng gói */
.package-basic {
    background: #3498db;
}

.package-premium {
    background: #f39c12;
}

.package-vip {
    background: #9b59b6;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 74, 173, 0.1) 0%, rgba(52, 73, 94, 0.1) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1rem;
    opacity: 1;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #ecf0f1;
}

/* Counter animation enhancement */
.stat-number.animated {
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Stats Section */
@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Contact Features */
.contact-features {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-features h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-features ul {
    list-style: none;
}

.contact-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #666;
}

.contact-features i {
    color: #27ae60;
    margin-right: 0.5rem;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.map-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.map-embed {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.map-embed:hover {
    transform: scale(1.02);
}

.map-embed iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 15px 15px 0 0;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem;
    color: white;
}

.map-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.map-info i {
    font-size: 1.5rem;
    color: #e74c3c;
}

.map-info p {
    margin: 0;
    font-size: 1.1rem;
}

.map-info small {
    opacity: 0.8;
    font-size: 0.9rem;
}

.map-actions {
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    background: white;
}

.map-actions .btn {
    flex: 1;
    max-width: 200px;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #004aad;
}

.faq-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Active Navigation */
.nav-menu a.active {
    color: #004aad;
}

.nav-menu a.active::after {
    width: 100%;
}

/* About Us Styles */
.about-stats {
    padding: 80px 0;
    background: #2c3e50;
    color: white;
}

.about-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.about-stats .stat-item {
    padding: 2rem;
}

.about-stats .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #004aad;
    margin-bottom: 0.5rem;
}

.about-stats .stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.about-intro {
    padding: 100px 0;
    background: white;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.team-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vision-mission {
    padding: 100px 0;
    background: #f8f9fa;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.vm-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc, #004aad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.vm-icon i {
    font-size: 2rem;
    color: white;
}

.vm-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.vm-card ul {
    list-style: none;
    text-align: left;
}

.vm-card li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
    position: relative;
    padding-left: 2rem;
}

.vm-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #004aad;
    font-weight: bold;
}

.vm-card li:last-child {
    border-bottom: none;
}

.core-values {
    padding: 100px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0066cc, #004aad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.8rem;
    color: white;
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.our-team {
    padding: 100px 0;
    background: #f8f9fa;
}

.team-grid {
    margin-top: 3rem;
}

.team-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-row:last-child {
    margin-bottom: 0;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    flex: 1;
    max-width: 320px;
    min-height: 450px;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.member-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 74, 173, 0.9), rgba(0, 102, 204, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.member-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.member-social a:hover {
    background: white;
    color: #004aad;
    transform: scale(1.1);
}

.member-info {
    padding: 2rem 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.member-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.member-info span {
    color: #004aad;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: block;
}

.member-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Join Team Card */
.team-member-placeholder {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px dashed #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member-placeholder:hover {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    border-color: #004aad;
}

.join-team {
    text-align: center;
    padding: 2rem;
}

.join-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc, #004aad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.team-member-placeholder:hover .join-icon {
    transform: scale(1.1) rotate(90deg);
}

.join-icon i {
    font-size: 2rem;
    color: white;
}

.join-team h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.join-team p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.quote-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #004aad 0%, #0066cc 100%);
    color: white;
    text-align: center;
}

.quote-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quote-content cite {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffd700;
    display: block;
    margin-bottom: 1rem;
}

.quote-content p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design for About Us */
@media (max-width: 768px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-text h2 {
        font-size: 2rem;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vm-card {
        padding: 2rem;
    }
    
    .team-row {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .team-member {
        max-width: 300px;
        width: 100%;
        min-height: auto;
    }
    
    .member-image {
        height: 220px;
    }
    
    .member-info {
        padding: 1.5rem;
    }
    
    .quote-content blockquote {
        font-size: 1.2rem;
    }
    
    .about-stats .stat-number {
        font-size: 2.5rem;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #004aad;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #003a8a;
}

.footer-section ul li i {
    color: #fff !important; 
    margin-right: 0.5rem;
    width: 16px;
    text-align: center;
}


/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    animation: float 3s ease-in-out infinite;
}

.call-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.call-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ffb300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    margin-right: 15px;
    transition: all 0.3s ease;
}

.call-icon i {
    font-size: 1.5rem;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.call-number {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.call-btn:hover .call-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.call-btn:hover .call-number {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Pulse animation for phone icon */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .floating-call-btn {
        bottom: 20px;
        left: 20px;
    }
    
    .call-icon {
        width: 50px;
        height: 50px;
        margin-right: 12px;
    }
    
    .call-icon i {
        font-size: 1.3rem;
    }
    
    .call-number {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}
