/* Homepage Redesign - Hero Section */
.hero-section {
    position: relative;
    height: 91vh;
    padding: 60px 0;
    background: linear-gradient(135deg, #fff 0%, var(--form-bg-color) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 5;
}

/* Title & Description */
.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: 8px;
    box-shadow: none;
}

.hero-btn-secondary {
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.hero-btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Section Headers */
.section-header {
    text-align: left;
    margin-bottom: 50px;
    width: 100%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e1a4d;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.7;
    line-height: 1.6;
}

/* Destinations Grid */
.destinations-section {
    padding: 100px 0;
    background: #fff;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.destination-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    aspect-ratio: 4/3;
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
}

.destination-name {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background: #ddd;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: var(--form-bg-color);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

.partner-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    min-width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    box-shadow: none;
    border: 1px solid var(--form-border-color);
}

.partner-logo-placeholder {
    font-weight: 800;
    font-size: 0.9rem;
    color: #999;
    text-align: center;
}

@media (max-width: 992px) {
    .partners-grid { justify-content: center; }
    .partner-card { flex: 0 0 180px; }
}

@media (max-width: 600px) {
    .partner-card { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 1200px) {
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #fff;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    text-align: left;
}

.slider-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.testimonial-prev, .testimonial-next {
    position: static;
    width: 45px;
    height: 45px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    color: #1e1a4d;
    margin: 0;
    transition: all 0.3s ease;
}

.testimonial-prev:after, .testimonial-next:after {
    font-size: 1.2rem;
    font-weight: 900;
}

.testimonial-prev:hover, .testimonial-next:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.testimonial-slider {
    padding: 20px 0;
    overflow: hidden;
}

.testimonial-card {
    background: #fff;
    color: #333;
    padding: 50px 40px 40px;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #f0f0f0;
    box-shadow: none;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-quote-mark {
    position: absolute;
    top: 10px;
    right: 30px;
    font-size: 8rem;
    line-height: 1;
    font-family: serif;
    color: rgba(58, 51, 147, 0.05);
    pointer-events: none;
}

.testimonial-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 40px;
    flex-grow: 1;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid #f5f5f5;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #fff;
    box-shadow: none;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-placeholder {
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
}

.author-country {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .testimonials-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .testimonial-card { padding: 30px; }
}

.hero-main-image {
    position: relative;
    height: 91vh;
    display: flex;
    align-items: flex-end;
}

.hero-main-image img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    margin-left: auto;
}

/* Stats Section */
.stats-section {
    background: #fff;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #3a3393;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dark);
    opacity: 0.7;
    font-weight: 500;
}

/* BG Shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    bottom: -50px;
    left: -50px;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 80px 0;
        height: auto;
        min-height: 91vh;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }

    .image-overlay-card {
        left: 20px;
        bottom: -20px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid #f0f0f0;
}

.blog-card:hover {
    /* Removed lift effect */
}

.blog-image {
    position: relative;
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 30px;
}

.blog-date {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 10px;
    font-weight: 500;
}

.blog-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-card-title a {
    color: #1e1a4d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--secondary-color);
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    gap: 10px;
}

@media (max-width: 992px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* Lead Section */
.lead-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: #fff;
}

.lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.lead-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.lead-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Services List */
.lead-services-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.lead-services-list li {
    display: flex;
    gap: 20px;
}

.service-icon-box {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--secondary-color);
}

.service-icon-box .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.service-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.service-text p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Form Card */
.lead-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    color: #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.lead-form-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #1e1a4d;
    line-height: 1.4;
}

.lead-form-card h3 span {
    color: var(--secondary-color);
}

.fr-lead-form .form-group {
    margin-bottom: 20px;
}

.fr-lead-form input, 
.fr-lead-form select {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    color: #333;
}

.fr-lead-form input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: none;
}

.form-row {
    display: flex;
    gap: 15px;
}

.country-code {
    flex: 0 0 100px;
}

.mobile-input {
    flex: 1;
}

.checkbox-label {
    display: flex;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-dark);
    opacity: 0.7;
    cursor: pointer;
    align-items: flex-start;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: none;
}

@media (max-width: 992px) {
    .lead-grid { grid-template-columns: 1fr; gap: 60px; }
    .lead-content { text-align: center; }
    .lead-services-list li { justify-content: center; text-align: left; }
}

@media (max-width: 600px) {
    .lead-title { font-size: 2.2rem; }
    .lead-form-card { padding: 30px 20px; }
}

/* Success Stories Section */
.success-stories-section {
    padding: 100px 0;
    background: #fff;
}

.success-slider {
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.success-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--primary-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.success-card:hover {
    transform: scale(1.02);
}

.success-card-top {
    padding: 30px;
    position: relative;
    min-height: 180px;
}

.student-name {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
}

.review-label {
    margin-top: 15px;
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -1px;
}

.success-card-image {
    position: relative;
    height: 300px;
    background: #eee;
}

.success-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button svg {
    width: 30px;
    height: 30px;
    margin-left: 4px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary-color);
    color: #fff;
}

/* Success Slider Nav */
.success-prev, .success-next {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    color: var(--primary-color);
    box-shadow: none;
    border: 1px solid #eee;
    z-index: 10;
}

.success-prev:after, .success-next:after {
    font-size: 1.2rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .review-label { font-size: 2rem; }
    .success-card-image { height: 250px; }
}

/* CTA Bar Section */
.cta-bar-section {
    padding: 60px 0;
    background: #fff;
}

.cta-bar {
    background: var(--primary-color);
    padding: 30px 60px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.cta-text h3 {
    color: #fff;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.cta-text h3 span {
    color: var(--secondary-color);
}

.btn-talk {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-talk:hover {
    background: #fff;
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .cta-bar { flex-direction: column; text-align: center; gap: 30px; padding: 40px 30px; }
    .cta-text h3 { font-size: 1.5rem; }
}