/* Modern Home Page Styles */
:root {
    --primary-color: #C7A35F;
    --text-color: #333;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;
}

/* General Resets & Typography */
body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #1a1a1a;
    font-weight: 600;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px auto 0;
}

/* Modern Split Hero Section */
.hero-modern-split {
    display: flex;
    flex-wrap: wrap;
    min-height: 85vh;
    /* Full viewport height */
    position: relative;
    overflow: hidden;
    background: #fff;
}

.hero-split-content {
    flex: 1;
    min-width: 500px;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* Left align text */
    background: #ffffff;
    z-index: 2;
}

.hero-split-image {
    flex: 1.2;
    /* Image takes slightly more space */
    min-width: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 500px;
    /* Ensure visibility on mobile wrap */
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    /* Angled cut */
}

/* Typography & Details */
.hero-badge {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-navy);
    background: rgba(14, 28, 54, 0.05);
    /* Very light navy */
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 25px;
    display: inline-block;
}

.hero-title-modern {
    font-size: 4.5rem;
    /* Huge impact title */
    line-height: 1.1;
    color: var(--primary-navy);
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.text-gold-gradient {
    background: linear-gradient(135deg, #b88a44 0%, #D4AF37 50%, #b88a44 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle-modern {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 550px;
    font-weight: 400;
}

/* Actions */
.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-modern-primary {
    background: var(--primary-navy);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    /* Pill */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(14, 28, 54, 0.2);
}

.btn-modern-primary:hover {
    background: var(--accent-gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.btn-modern-secondary {
    background: transparent;
    color: var(--primary-navy);
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-modern-secondary:hover {
    color: var(--accent-gold);
    background: #fafafa;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 50px;
    border-top: 1px solid #eee;
    padding-top: 30px;
    width: 100%;
    max-width: 600px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--accent-gold);
}

.stat-label {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.2;
    max-width: 80px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-split-content {
        min-width: 100%;
        padding: 50px 30px;
    }

    .hero-split-image {
        min-width: 100%;
        min-height: 300px;
        clip-path: none;
    }

    .hero-title-modern {
        font-size: 3rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section Redesign */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Courses Grid with Glassmorphism */
.courses-section {
    padding: 100px 0;
    background: #fdfdfd;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(14, 28, 54, 0.05) 0%, transparent 20%),
        radial-gradient(#e5e5f7 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 30px 30px;
    /* Blobs + Dots */
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Slightly wider cards */
    gap: 40px;
    padding: 20px 0;
}

.course-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    /* Glass Effect */
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* Defined border */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-gold);
}

.course-img-wrapper {
    height: 240px;
    overflow: hidden;
    padding: 20px;
}

.course-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    background: #fdfdfd;
    padding: 20px;
}

.course-card img {
    width: 60%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    /* Soft shadow for icon */
}

.course-card:hover img {
    transform: scale(1.15) rotate(2deg);
    /* Dynamic movement */
}

.course-content {
    padding: 25px 30px 40px;
    /* More spacing */
}

.course-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    /* Playfair Display */
    letter-spacing: 0.5px;
    color: var(--primary-navy);
}

.course-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    padding: 0 10px;
    min-height: 50px;
    /* Alignment */
}

.course-title a {
    color: var(--primary-navy);
    text-decoration: none;
    transition: color 0.3s;
}

.course-title a:hover {
    color: var(--accent-gold);
}

/* Course Button Premium */
.course-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--primary-navy);
    background: transparent;
    border-radius: 50px;
    color: var(--primary-navy);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    /* High tracking for luxury feel */
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.course-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary-navy);
    transition: width 0.4s ease;
    z-index: -1;
}

.course-card:hover .course-btn {
    color: #fff;
    border-color: var(--primary-navy);
}

.course-card:hover .course-btn::before {
    width: 100%;
}

/* Testimonials Redesign */
.testimonials-section {
    padding: 80px 0;
    background: #fff;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin: 15px;
    text-align: center;
    position: relative;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        flex-direction: column;
    }

    .courses-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}