/* 
   SALUT Adyatma Landing Page Stylesheet
   Tema Warna:
   - Primary Color: #214395 (untuk elemen utama seperti tombol CTA)
   - Secondary Color: #fad02c (untuk elemen pendukung)
   - Accent/Tertiary Color: #b5d3f5 (untuk highlight atau sentuhan kecil)
   - Background Color: #ffffff (warna latar utama)
   - Text Color: #474747 (warna teks utama)
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #474747;
    line-height: 1.6;
    background-color: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #214395;
    transition: all 0.3s ease;
}

a:hover {
    color: #fad02c;
}

ul {
    list-style: none;
}

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

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    color: #214395;
}

h2 {
    font-size: 2rem;
    color: #214395;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
    color: #214395;
}

p {
    margin-bottom: 15px;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #214395;
    color: #ffffff;
    border: 2px solid #214395;
}

.btn-primary:hover {
    background-color: #1a357a;
    color: #ffffff;
    border-color: #1a357a;
}

.btn-secondary {
    background-color: #fad02c;
    color: #214395;
    border: 2px solid #fad02c;
}

.btn-secondary:hover {
    background-color: #e9c01b;
    border-color: #e9c01b;
}

.btn-primary.large, .btn-secondary.large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Header & Navigation */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
    position: relative;
}

nav ul li a {
    color: #474747;
    font-weight: 500;
    display: block;
}

nav ul li a:hover {
    color: #214395;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    top: 100%;
    left: 0;
    margin-top: 10px;
}

.dropdown-content a {
    color: #474747;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background-color: #f1f8ff;
    color: #214395;
}

/* Desktop hover behavior */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-content {
        display: block;
    }
}

.dropbtn::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 5px;
}

/* Hero Section */
.hero {
    padding-top: 150px;
    background: linear-gradient(to bottom, #ffffff, #f5f9ff);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 30px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero h1 {
    margin-bottom: 20px;
    font-size: 2.8rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.secondary-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

.trust-indicators {
    display: flex;
    align-items: center;
}

/* Why UT Section */
.why-ut {
    background-color: #f5f9ff;
    padding: 80px 0;
}

.why-ut .subheadline {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #474747;
}

.why-ut .benefit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.why-ut .benefit-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-ut .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.why-ut .benefit-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.why-ut .benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #214395;
}

.why-ut .benefit-card p {
    color: #666;
    font-size: 0.95rem;
}

/* About SALUT Adyatma Section */
.about-salut {
    background-color: #ffffff;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.about-image {
    flex: 2;
    min-width: 300px;
    max-width: 400px;
    text-align: center;
}

.about-image img {
    width: 400px;
    max-width: 100%;
    height: Auto;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(33,67,149,0.08);
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin: 0 auto 30px;
    }
}

.why-ut .btn-secondary {
     display: block;
     max-width: 400px;
     margin: 0 auto;
     text-align: center;
}

.trust-indicators {
     margin-top: 30px;
     flex-wrap: wrap;
}

.trust-indicators img {
    height: 40px;
    margin-right: 15px;
}

.trust-indicators p {
    margin: 0 15px 0 0;
    font-size: 0.9rem;
    color: #666;
}

/* Problem & Agitation Section */
.problems {
    background-color: #f8f9fa;
}

.problem-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.problem-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
}

.problem-item i {
    font-size: 2rem;
    color: #ff4d4d;
    margin-bottom: 15px;
}

.problem-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.agitation {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #214395;
}

.problem-image {
    text-align: center;
    margin-top: 30px;
}

.problem-image img {
    max-width: 400px;
}

/* Solution Section */
.solution {
    background-color: #ffffff;
}

.value-proposition {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.comparison-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.comparison-column {
    flex: 1;
    min-width: 300px;
}

.comparison-column h3 {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid;
}

.comparison-column:first-child h3 {
    color: #e9c01b;
    border-color: #e9c01b;
}

.comparison-column:last-child h3 {
    color: #214395;
    border-color: #214395;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
}

.comparison-list.negative li {
    border-left: 3px solid #e9c01b;
}

.comparison-list.positive li {
    border-left: 3px solid #214395;
}

.comparison-list i {
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 5px;
}

.comparison-list.negative i {
    color: #dc3545;
}

.comparison-list.positive i {
    color: #28a745;
}

.comparison-content {
    flex: 1;
}

.comparison-content h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #214395;
}

.comparison-content p {
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .comparison-container {
        flex-direction: column;
    }
}

.solution .btn-secondary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* How It Works Section */
.how-it-works {
    background-color: #f8f9fa;
}

.steps {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 50px;
    background-color: #b5d3f5;
    bottom: -50px;
    left: 25px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #214395;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step img {
    max-width: 100px;
    margin-left: 20px;
}

/* Benefits Section */
.benefits {
    background-color: #ffffff;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid #214395;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #214395;
    margin-bottom: 20px;
}

.benefit-accreditation {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.98em;
    color: #214395;
}

.benefit-accreditation .accreditation-img {
    height: 28px;
    width: auto;
}

/* Registration Options Section */
.registration {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.registration-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.option {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.option:hover {
    transform: translateY(-5px);
}

.option.highlight {
    border: 2px solid #fad02c;
    position: relative;
}

.option.highlight::before {
    content: 'POPULER';
    position: absolute;
    top: -12px;
    right: 20px;
    background: #fad02c;
    color: #214395;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.option h3 {
    text-align: center;
    margin-bottom: 15px;
    color: #214395;
    font-size: 1.3rem;
}

.option ul {
    margin-bottom: 25px;
}

.option ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.option ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.price {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.price p {
    margin-bottom: 5px;
}

.price h4 {
    font-size: 1.5rem;
    color: #214395;
    margin-bottom: 5px;
}

.price-detail {
    font-size: 0.75rem;
    color: #666;
}

.option-note {
    font-size: 0.75rem;
    color: #666;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #ddd;
    font-style: italic;
}

.note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 30px;
}

.registration .btn-secondary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Programs Section */
.programs {
    background-color: #ffffff;
}

.program-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #474747;
    font-size: 1.1rem;
    line-height: 1.6;
}

.program-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-header {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin: 5px;
}

.tab-btn.active {
    color: #214395;
    border-bottom: 3px solid #214395;
}

.tab-content {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    margin-bottom: 20px;
    text-align: center;
    color: #214395;
    font-size: 1.3rem;
}

.faculty-group {
    margin-bottom: 30px;
}

.faculty-group h4 {
    color: #fad02c;
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.program-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.program-list li {
    margin-bottom: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    display: flex;
    align-items: center;
    width: 100%;
}

.program-list.compact li {
    width: 50%;
    padding-right: 15px;
}

@media (max-width: 768px) {
    .program-list.compact li {
        width: 100%;
    }
}

.program-list li:before {
    content: "•";
    color: #214395;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 10px;
    flex-shrink: 0;
}

.accreditation {
    margin-left: 10px;
    font-size: 0.9rem;
    color: #fff;
    background-color: #214395;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.program-note {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Tuition Fee Section */
.tuition {
    padding: 80px 0;
    background-color: #f5f9ff;
}

.tuition h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #214395;
}

.tuition-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #474747;
    font-size: 1.1rem;
    line-height: 1.6;
}

.tuition-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.fee-row {
    display: flex;
    border-bottom: 1px solid #eee;
}

.fee-row.header {
    background-color: #214395;
    color: #fff;
    font-weight: 600;
}

.fee-row.highlight {
    background-color: rgba(33, 67, 149, 0.1);
}

.fee-cell {
    padding: 15px;
    flex: 1;
}

.fee-cell:first-child {
    flex: 2;
}

.payment-schemes {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.payment-scheme {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.payment-scheme h4 {
    color: #214395;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.payment-scheme ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.payment-scheme li {
    margin-bottom: 8px;
}

.tuition-note {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-container {
    text-align: center;
    margin-top: 40px;
}

/* Testimonials Section */
.testimonials {
    background-color: #f8f9fa;
}

.testimonial-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 32px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

.testimonial-img {
    min-width: 180px;
    max-width: 180px;
    height: auto;
    object-fit: cover; /* ubah dari cover ke contain */
    background: #fff;    /* agar area kosong tetap rapi */
    border-radius: 16px;
    margin: 0 12px;
    box-shadow: 0 2px 12px rgba(33,67,149,0.08);
    transition: transform 0.3s;
}

.testimonial-nav {
    background: #214395;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.85;
    transition: background 0.2s;
}

.testimonial-nav.left {
    left: -20px;
}

.testimonial-nav.right {
    right: -20px;
}

.testimonial-nav:hover {
    background: #fad02c;
    color: #214395;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-author h4 {
    margin-bottom: 0;
    font-size: 1rem;
}

.testimonial-author p {
    margin-bottom: 0;
    font-size: 0.8rem;
    color: #666;
}

.authenticity h3 {
    text-align: center;
    margin-bottom: 30px;
}

.authenticity-points {
    max-width: 800px;
    margin: 0 auto 30px;
}

.authenticity-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.authenticity-point i {
    font-size: 1.5rem;
    color: #28a745;
    margin-right: 15px;
    margin-top: 5px;
}

.authenticity-point h4 {
    margin-bottom: 5px;
}

.authenticity-badge {
    text-align: center;
}

.authenticity-badge img {
    max-width: 150px;
}

/* FAQ Section */
.faq {
    background-color: #ffffff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* FINAL CTA Section */
.final-cta {
    background: linear-gradient(to right, #214395, #1a357a);
    color: #ffffff;
    text-align: center;
}

.final-cta h2, .final-cta h3, .final-cta h4 {
    color: #ffffff;
}

.value-recap {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.final-cta .btn-primary {
    background-color: #fad02c;
    color: #214395;
    border-color: #fad02c;
    margin-bottom: 40px;
}

.final-cta .btn-primary:hover {
    background-color: #e9c01b;
    border-color: #e9c01b;
}

.contact-content {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-photos {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-photos-row {
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: center;
}

.photo-box {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    width: 220px;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.photo-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
}

.photo-box h4 {
    margin: 8px 0 4px;
    font-size: 1.2em;
}

.photo-box p {
    font-size: 15px;
    margin-bottom: 4px;
    color: #222;
}

.photo-box span {
    font-size: 11px;
    color: #555;
    margin-bottom: 12px;
    display: block;
}

.whatsapp-link {
    font-size: 15px;
    color: #25d366;
}

.contact-photos-address {
    margin-top: 20px;
    text-align: center;
    font-size: 15px;
    color: #fff;
}

.contact-map {
    flex: 1 1 0;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-align: center;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-map iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 8px;
}

.contact-map > div {
    margin-top: 8px;
}

.contact-map a.map-link {
    color: #007bff;
}

/* Newsletter Section */
.newsletter-section {
    background: #fff;
    padding: 50px 0 40px 0;
    text-align: center;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    color: #214395;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.newsletter-desc {
    color: #474747;
    font-size: 1rem;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #b5d3f5;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form .btn-primary {
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 5px;
    background: #fad02c;
    color: #214395;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form .btn-primary:hover {
    background: #e9c01b;
}

/* Footer Section */
.footer {
    background: #214395;
    color: #fff;
    padding: 50px 0 30px 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-col {
    flex: 1 1 200px;
    min-width: 180px;
}

.logo-col .footer-logo {
    width: 220px;
    margin-bottom: 10px;
}

.logo-col p {
    font-size: 1rem;
    margin-bottom: 0;
}

.links-col h4,
.contact-col h4,
.social-col h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #fad02c;
}

.links-col ul,
.contact-col ul {
    list-style: none;
    padding: 0;
}

.links-col ul li,
.contact-col ul li {
    margin-bottom: 10px;
    font-size: 0.98rem;
}

.links-col ul li a {
    color: #fff;
    transition: color 0.3s;
}

.links-col ul li a:hover {
    color: #fad02c;
}

.contact-col ul li i {
    margin-right: 8px;
}

.footer-social a {
    color: #fff;
    font-size: 1.3rem;
    margin-right: 15px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #fad02c;
}

@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .footer-col {
        min-width: 0;
        width: 100%;
        text-align: center;
    }
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
}

.recognition-section {
    margin: 40px 0 0 0;
    text-align: center;
}

.recognition-title {
    color: #214395;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.recognition-desc {
    color: #474747;
    font-size: 1rem;
    margin-bottom: 18px;
}

.recognition-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.recognition-logos img {
    height: 48px;
    width: auto;
    object-fit: contain;
}
