/* ─── CSS Variables ─── */
:root {
    --blue: #252F79;
    --golden: #C0A264;
    --blue-dark: #1a2158;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif !important;
    overflow-x: hidden;
}

p {
    font-family: 'Raleway', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0px auto !important;
    padding: 0px !important;
}

/* ═══════════════════════════════════════
       TOP BAR  (logo + CTA buttons)
    ═══════════════════════════════════════ */
.top-bar {
    background: #fff;
    padding: 0px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar .logo img,
.footer .logo img {
    height: 110px;
    width: auto;
}

.top-bar .top-btns {
    display: flex;
    gap: 12px;
}

.btn-chat {
    font-family: 'Montserrat', sans-serif;
    background: var(--golden);
    color: #fff;
    border: none;
    padding: 10px 22px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    border-radius: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s;
}

.btn-chat:hover {
    background: #a88a4e;
    color: #fff;
}

.btn-admit {
    font-family: 'Montserrat', sans-serif;
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 10px 22px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    border-radius: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s;
}

.btn-admit:hover {
    background: var(--blue-dark);
    color: #fff;
}

/* ═══════════════════════════════════════
       DESKTOP NAVBAR WITH DROPDOWNS - UPDATED
    ═══════════════════════════════════════ */
.desktop-nav {
    background: var(--blue);
    padding: 0 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 10px 10px 10px;
    border-radius: 10px;
}

.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
    padding-left: 0px;
}

.desktop-nav ul li a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 16px 18px;
    transition: background 0.25s;
}

.desktop-nav ul li a:hover,
.desktop-nav ul li a.active {
    background: rgba(255, 255, 255, 0.12);
}

/* UPDATED DROPDOWN MENUS - DESKTOP (WHITE BG WITH BLUE TEXT IN COLUMN) */
.desktop-nav ul li.dropdown {
    position: relative;
}

.desktop-nav ul li.dropdown>a {
    position: relative;
    padding-right: 25px;
}

.desktop-nav ul li.dropdown>a i {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s;
}

.desktop-nav ul li.dropdown:hover>a i {
    transform: rotate(180deg);
}

.desktop-nav ul li.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    padding: 0;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #eee;
    border-top: none;
    display: flex;
    flex-direction: column;
    /* FIX: Ensure column layout */
}

.desktop-nav ul li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-nav ul li.dropdown .dropdown-menu li {
    width: 100%;
    display: block;
    /* FIX: Ensure block display */
}

.desktop-nav ul li.dropdown .dropdown-menu li a {
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
    color: var(--blue);
    text-transform: capitalize;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.desktop-nav ul li.dropdown .dropdown-menu li:last-child a {
    border-bottom: none;
}

.desktop-nav ul li.dropdown .dropdown-menu li a:hover {
    background: rgba(37, 47, 121, 0.05);
    padding-left: 25px;
    color: var(--blue);
}

/* ─── SEARCH WRAPPER (desktop navbar) ─── */
.search-wrap {
    display: flex;
    align-items: center;
    position: relative;
    width: 40px;
    height: 46px;
    transition: width 0.4s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
}

.search-wrap.expanded {
    width: 320px;
}

.search-icon-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.search-icon-btn:hover {
    opacity: 0.7;
}

.search-wrap.expanded .search-icon-btn {
    opacity: 0;
    pointer-events: none;
}

.search-box {
    display: flex;
    align-items: center;
    width: 100%;
    height: 38px;
    opacity: 0;
    transform: translateX(16px);
    transition: opacity 0.28s 0.1s, transform 0.28s 0.1s;
    pointer-events: none;
    gap: 0;
}

.search-wrap.expanded .search-box {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.search-box input[type="text"] {
    flex: 1;
    min-width: 0;
    height: 100%;
    border: none;
    border-bottom: 2px solid var(--golden);
    background: transparent;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.4px;
    padding: 0 10px 0 4px;
    outline: none;
    transition: border-color 0.2s;
}

.search-box input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-box input[type="text"]:focus {
    border-bottom-color: #fff;
}

.search-box .btn-search-go {
    background: var(--golden);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    border-radius: 3px;
    flex-shrink: 0;
    transition: background 0.2s;
}

.search-box .btn-search-go:hover {
    background: #a88a4e;
}

.search-box .btn-search-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.2s;
}

.search-box .btn-search-close:hover {
    color: #fff;
}

/* ═══════════════════════════════════════
       MOBILE NAVIGATION - COMPLETELY FIXED
    ═══════════════════════════════════════ */
.mobile-topbar {
    display: none;
    background: #fff;
    padding: 10px 18px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 1001;
}

.mobile-topbar .logo img {
    height: 56px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 28px;
    z-index: 1002;
}

.hamburger span {
    display: block;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
    transition: all 0.3s ease;
    width: 100%;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu - COMPLETELY FIXED */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    padding-top: 80px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.mobile-menu ul li {
    border-bottom: 1px solid #eee;
    width: 100%;
    display: block;
}

/* FIX: Regular menu items */
.mobile-menu ul li:not(.mobile-dropdown) a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--blue);
    text-decoration: none;
    padding: 18px 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.mobile-menu ul li:not(.mobile-dropdown) a:hover {
    background: rgba(37, 47, 121, 0.05);
    padding-left: 30px;
}

.mobile-menu ul li a .menu-icon {
    width: 22px;
    text-align: center;
    font-size: 18px;
    color: var(--golden);
    flex-shrink: 0;
}

/* MOBILE DROPDOWN MENUS - COMPLETELY FIXED */
.mobile-menu ul li.mobile-dropdown {
    border-bottom: 1px solid #eee;
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    color: var(--blue);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.3s;
    cursor: pointer;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    gap: 15px;
}

.mobile-dropdown-toggle:hover {
    background: rgba(37, 47, 121, 0.05);
}

.mobile-dropdown-toggle .dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s;
    color: var(--blue);
    margin-left: auto;
}

.mobile-menu ul li.mobile-dropdown.active .mobile-dropdown-toggle .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-menu ul li.mobile-dropdown .mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(37, 47, 121, 0.03);
    padding-left: 0;
    width: 100%;
}

.mobile-menu ul li.mobile-dropdown.active .mobile-submenu {
    max-height: 1000px;
}

.mobile-menu ul li.mobile-dropdown .mobile-submenu li {
    border-bottom: none;
    border-top: 1px solid #eee;
    width: 100%;
}

.mobile-menu ul li.mobile-dropdown .mobile-submenu li a {
    padding: 15px 25px 15px 55px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.4px;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: var(--blue) !important;
    opacity: 0.9;
    text-transform: capitalize !important;
    text-decoration: none !important;
}

.mobile-menu ul li.mobile-dropdown .mobile-submenu li a i {
    font-size: 10px;
    color: var(--golden);
}

.mobile-menu ul li.mobile-dropdown .mobile-submenu li a:hover {
    background: rgba(37, 47, 121, 0.05);
    padding-left: 58px !important;
    color: var(--blue) !important;
    opacity: 1;
}

/* CTA row inside mobile menu */
.mobile-menu .mobile-cta {
    display: flex;
    gap: 12px;
    padding: 25px;
    background: rgba(37, 47, 121, 0.03);
    border-top: 1px solid #eee;
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
}

.mobile-menu .mobile-cta .btn-chat,
.mobile-menu .mobile-cta .btn-admit {
    flex: 1;
    text-align: center;
    font-size: 14px;
    padding: 12px 15px;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* ═══════════════════════════════════════
       HERO / BANNER
    ═══════════════════════════════════════ */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin: 10px 10px;
    border-radius: 10px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/assets/images/banner/banner-1.png') center/cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left,
            rgba(37, 47, 121, 0.9) 0%,
            rgba(37, 47, 121, 0.75) 25%,
            rgba(37, 47, 121, 0.75) 50%,
            rgba(37, 47, 121, 0.60) 75%,
            rgba(37, 47, 121, 0.60) 100%);
    z-index: 1;
}

.hero-girl {
    position: absolute;
    right: 6%;
    bottom: 0;
    height: 90%;
    z-index: 2;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(-8px 0 18px rgba(37, 47, 121, 0.35));
}

.hero-content {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 60px;
}

.hero-content .tag {
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 2px;
}

.hero-content h1 {
    color: #fff;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.08;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.6;
    max-width: 420px;
    margin-bottom: 30px;
}

.btn-know {
    display: inline-block;
    background: var(--golden);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    width: fit-content;
}

.btn-know:hover {
    background: #a88a4e;
    transform: translateY(-2px);
    color: #fff;
}

/* SECTION */
.about {
    padding: 80px 10px;
}

.about-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.title-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.about-text h1 {
    position: relative;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-transform: uppercase;
    margin: 0;
}

.about-text h1 span {
    color: #1e3a8a;
}

.golden-bg {
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 28px;
    background-color: #d6b980;
    z-index: 1;
}

.about-text p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #000;
    font-weight: 500;
    text-align: justify;
    width: 85%;
    margin: 0;
}

.about-img {
    flex: 1;
    position: relative;
}

.about-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* ═══════════════════════════════════════
       NEWS & UPDATES SECTION
    ═══════════════════════════════════════ */
.news-updates {
    padding: 80px 10px;
}

.news-updates h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.news-updates h1 {
    position: relative;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-transform: uppercase;
    margin: 0;
}

.news-updates h1 span {
    color: #1e3a8a;
}

.news-cards {
    margin-top: 40px !important;
}

.news-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--blue);
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-date {
    background: var(--blue);
    color: white;
    display: inline-block;
    padding: 8px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    text-align: center;
}

.news-date .date-day {
    font-size: 24px;
    font-weight: 700;
    display: block;
    font-family: 'Montserrat', sans-serif;
}

.news-date .date-month {
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    font-family: 'Montserrat', sans-serif;
}

.news-date .date-year {
    font-size: 12px;
    display: block;
    font-family: 'Montserrat', sans-serif;
}

.news-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 12px;
}

.news-card p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-link {
    font-family: 'Montserrat', sans-serif;
    color: var(--golden);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.news-link:hover {
    color: var(--blue);
}

/* ═══════════════════════════════════════
       MISSION SECTION
    ═══════════════════════════════════════ */
.mission-section {
    padding: 80px 10px;
}

.mission-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.mission-text h1 {
    position: relative;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-transform: uppercase;
    margin: 0;
}

.mission-text h1 span {
    color: #1e3a8a;
}

.mission-text>p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #000;
    font-weight: 500;
    margin: 25px 0;
    width: 100%;
}

.mission-points {
    margin-top: 20px;
}

.mission-points p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #000;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.mission-points p i {
    color: var(--golden);
    margin-top: 3px;
    flex-shrink: 0;
}

.mission-img {
    flex: 1;
    position: relative;
}

.mission-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* ═══════════════════════════════════════
       OBJECTIVES SECTION
    ═══════════════════════════════════════ */
.objectives-section {
    padding: 80px 10px;
}

.objectives-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.objectives-section h1 {
    position: relative;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-transform: uppercase;
    margin: 0;
}

.objectives-section h1 span {
    color: #1e3a8a;
}

.objectives-intro {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #000;
    font-weight: 500;
    margin: 25px 0 40px 0;
    width: 100%;
}

.objectives-grid {
    margin-top: 20px;
}

.objective-item {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
    border-left: 4px solid var(--golden);
}

.objective-item:hover {
    transform: translateY(-3px);
}

.objective-item.objective-full {
    width: 100%;
}

.objective-icon {
    background: var(--blue);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.objective-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 8px;
}

.objective-content p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ═══════════════════════════════════════
       WHY CHOOSE US SECTION
    ═══════════════════════════════════════ */
.why-choose-section {
    padding: 80px 10px;
}

.why-choose-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.why-choose-section h1 {
    position: relative;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-transform: uppercase;
    margin: 0;
}

.why-choose-section h1 span {
    color: #1e3a8a;
}

.why-cards {
    margin-top: 40px !important;
}

.why-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-img {
    height: 220px;
    overflow: hidden;
}

.why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.why-card:hover .why-img img {
    transform: scale(1.05);
}

.why-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--blue);
    margin: 25px 25px 15px;
}

.why-card p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0 25px 25px;
}

.swiper-horizontal {
    padding: 15px 15px 30px 15px !important;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: -5px !important;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next,
.swiper-button-next:after,
.swiper-button-prev:after {
    display: none !important;
}

/* ═══════════════════════════════════════
       EVENTS SECTION
    ═══════════════════════════════════════ */
.events-section {
    padding: 80px 10px;
}

.events-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.events-section h1 {
    position: relative;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-transform: uppercase;
    margin: 0;
}

.events-section h1 span {
    color: #1e3a8a;
}

.events-slider {
    margin-top: 40px;
    padding: 20px 10px 50px;
}

.event-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.event-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--blue);
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.event-date span {
    font-size: 24px;
    display: block;
    line-height: 1;
}

.event-content {
    padding: 25px;
}

.event-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 12px;
}

.event-content p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.event-link {
    font-family: 'Montserrat', sans-serif;
    color: var(--golden);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.event-link:hover {
    color: var(--blue);
}

.btn-view-all {
    display: inline-block;
    margin-top: 18px;
    background: var(--blue);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
}

.btn-view-all:hover {
    background: var(--blue-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--blue) !important;
}

.swiper-pagination-bullet-active {
    background: var(--blue) !important;
}

/* ═══════════════════════════════════════
       BLOG SECTION
    ═══════════════════════════════════════ */
.blog-section {
    padding: 80px 10px;
    background: #fff;
}

.blog-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.blog-section h1 {
    position: relative;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-transform: uppercase;
    margin: 0;
}

.blog-section h1 span {
    color: #1e3a8a;
}

.blog-intro {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #000;
    font-weight: 500;
    margin: 20px 0 40px 0;
    width: 100%;
}

.blog-cards {
    margin-top: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--blue);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #777;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--golden);
}

.blog-link {
    font-family: 'Montserrat', sans-serif;
    color: var(--golden);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.blog-link:hover {
    color: var(--blue);
}

/* ═══════════════════════════════════════
       CONTACT FORM SECTION
    ═══════════════════════════════════════ */
.contact-section {
    padding: 80px 10px;
    background: #f8f9fa;
}

.contact-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.contact-section h1 {
    position: relative;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-transform: uppercase;
    margin: 0;
}

.contact-section h1 span {
    color: #1e3a8a;
}

.contact-intro {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #000;
    font-weight: 500;
    margin: 20px 0 40px 0;
    width: 100%;
}

.contact-container {
    margin-top: 30px;
}

.contact-info {
    padding-right: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-3px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 5px;
}

.contact-details p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 8px;
}

.form-group label::after {
    content: " *";
    color: #e74c3c;
    display: inline;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(37, 47, 121, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23252F79' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group:has(input:not([required])) label::after,
.form-group:has(select:not([required])) label::after,
.form-group:has(textarea:not([required])) label::after {
    display: none;
}

.form-submit {
    margin-top: 30px;
}

.btn-submit {
    background: var(--blue);
    color: white;
    border: none;
    padding: 15px 35px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 47, 121, 0.2);
}

.form-message {
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ═══════════════════════════════════════
       GO TO TOP BUTTON
    ═══════════════════════════════════════ */
.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--golden);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.go-to-top.show {
    opacity: 1;
    visibility: visible;
}

.go-to-top:hover {
    background: #a88a4e;
    transform: translateY(-3px);
}

/* ═══════════════════════════════════════
       FOOTER SECTION
    ═══════════════════════════════════════ */
.footer {
    background: var(--blue);
    color: white;
    margin-top: 40px;
}

.footer-top {
    padding: 60px 10px 40px;
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    text-transform: uppercase;
}

.footer-col p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact p i {
    color: var(--golden);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--golden);
    padding-left: 5px;
}

.map-placeholder {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.map-placeholder p {
    margin-bottom: 15px;
}

.map-placeholder p i {
    color: var(--golden);
    margin-right: 8px;
}

.btn-directions {
    display: inline-block;
    background: var(--golden);
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 3px;
    transition: background 0.3s;
}

.btn-directions:hover {
    background: #a88a4e;
    color: white;
}

.footer-social h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--golden);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 10px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ═══════════════════════════════════════
       RESPONSIVE DESIGN
    ═══════════════════════════════════════ */
@media (max-width: 769px) {
    .about .row {
        flex-direction: column;
    }

    .hero-girl {
        display: none;
    }

    .about-text {
        padding-right: 0;
    }

    .about-text h1 {
        font-size: 36px;
    }

    .about-text p {
        width: 100%;
    }

    .news-updates h1,
    .mission-text h1,
    .objectives-section h1,
    .why-choose-section h1,
    .events-section h1,
    .blog-section h1,
    .contact-section h1 {
        font-size: 36px;
    }

    .mission-points p {
        flex-direction: row;
        gap: 10px;
    }

    .objective-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .objective-icon {
        margin: 0 auto;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .contact-form {
        padding: 25px;
    }
}

@media (max-width: 991px) {
    .top-bar {
        display: none;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-topbar {
        display: flex;
    }

    .hero {
        height: 440px;
    }

    .hero-content {
        width: 65%;
        padding-left: 30px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-girl {
        height: 90%;
        right: 2%;
    }

    .about-text p {
        width: 100%;
        margin-bottom: 30px;
    }

    .about,
    .news-updates,
    .mission-section,
    .objectives-section,
    .why-choose-section,
    .events-section,
    .blog-section,
    .contact-section {
        padding: 60px 10px;
    }

    .mission-section .row {
        flex-direction: column-reverse;
    }

    .mission-img {
        margin-bottom: 30px;
    }

    .why-card {
        margin-bottom: 20px;
    }

    .why-img {
        height: 200px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .go-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 640px) {
    .hero {
        height: 420px;
    }

    .hero-content {
        width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-content .tag {
        font-size: 18px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 13px;
        max-width: 100%;
    }

    .hero-girl {
        height: 75%;
        right: -4%;
        opacity: 0.55;
    }

    .hero-overlay {
        background: linear-gradient(to right,
                rgba(37, 47, 121, 0.95) 0%,
                rgba(37, 47, 121, 0.88) 50%,
                rgba(37, 47, 121, 0.60) 80%,
                rgba(37, 47, 121, 0.30) 100%);
    }

    .about-text h3,
    .news-updates h3,
    .mission-text h3,
    .objectives-section h3,
    .why-choose-section h3,
    .events-section h3,
    .blog-section h3,
    .contact-section h3 {
        font-size: 22px;
    }

    .about-text h1,
    .news-updates h1,
    .mission-text h1,
    .objectives-section h1,
    .why-choose-section h1,
    .events-section h1,
    .blog-section h1,
    .contact-section h1 {
        font-size: 32px;
    }

    .golden-bg {
        height: 22px;
        bottom: -5px;
    }

    .news-card,
    .objective-item,
    .why-card,
    .event-card,
    .contact-info-item,
    .blog-card {
        padding: 20px;
    }

    .why-img,
    .blog-img {
        height: 180px;
    }

    .footer-top {
        padding: 40px 10px 30px;
    }

    .footer-col h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-girl {
        display: none;
    }

    .hero-overlay {
        background: rgba(37, 47, 121, 0.88);
    }

    .about-text h1,
    .news-updates h1,
    .mission-text h1,
    .objectives-section h1,
    .why-choose-section h1,
    .events-section h1,
    .blog-section h1,
    .contact-section h1 {
        font-size: 28px;
    }

    .golden-bg {
        height: 18px;
        bottom: -4px;
    }

    .btn-know,
    .btn-view-all,
    .btn-directions {
        padding: 10px 20px;
        font-size: 12px;
    }

    .why-img,
    .blog-img {
        height: 160px;
    }

    .go-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .contact-form {
        padding: 20px;
    }
}

/* ═══════════════════════════════════════
       CONTACT PAGE SPECIFIC STYLES
    ═══════════════════════════════════════ */

/* Contact Page Header */
.contact-page-header {
    padding: 80px 10px 50px;
}

.contact-page-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.contact-page-header h1 {
    position: relative;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-transform: uppercase;
    margin: 0;
}

.contact-page-header h1 span {
    color: #1e3a8a;
}

.contact-page-intro {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #000;
    font-weight: 500;
    margin: 25px 0 0 0;
    width: 100%;
}

/* Contact Info Cards */
.contact-info-grid {
    padding: 0 10px 60px;
}

.contact-info-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 5px 20px rgba(37, 47, 121, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    border-top: 4px solid var(--golden);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(37, 47, 121, 0.12);
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--blue);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-card:hover::before {
    opacity: 1;
}

.contact-card-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(37, 47, 121, 0.2);
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.05) rotate(5deg);
}

.contact-info-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 30px;
    /* REMOVED: Yellow line under heading */
}

.contact-info-card .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-card-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(37, 47, 121, 0.1);
    transition: padding-left 0.3s ease;
}

.contact-info-card:hover .contact-card-item {
    padding-left: 5px;
}

/* FIX: Remove border from last item in 2nd and 3rd cards */
.contact-info-card:nth-child(2) .contact-card-item:last-of-type,
.contact-info-card:nth-child(3) .contact-card-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-card-item i {
    color: var(--golden);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-card-item i {
    transform: scale(1.1);
}

.contact-card-item h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.contact-card-item p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.contact-card-item a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.contact-card-item a:hover {
    color: var(--golden);
    padding-left: 5px;
}

.contact-card-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--golden);
    transition: width 0.3s ease;
}

.contact-card-item a:hover::after {
    width: 100%;
}

.contact-card-cta {
    margin-top: auto;
    padding-top: 0pxpx;
    /* border-top: 1px solid rgba(37, 47, 121, 0.1); */
}

/* FIX: Buttons full width and at same position */
.contact-card-cta .btn-know {
    width: 100%;
    text-align: center;
    display: block;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contact-card-cta .btn-know:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Form & Map Section */
.contact-form-map-section {
    padding: 60px 10px 80px;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(37, 47, 121, 0.1);
    height: 100%;
    border: 1px solid rgba(37, 47, 121, 0.08);
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.contact-form-wrapper:hover {
    box-shadow: 0 15px 40px rgba(37, 47, 121, 0.15);
}

.contact-form-wrapper h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 30px;
    /* REMOVED: Yellow line under heading */
}

/* Map Wrapper */
.map-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(37, 47, 121, 0.1);
    height: 100%;
    border: 1px solid rgba(37, 47, 121, 0.08);
    display: flex;
    flex-direction: column;
}

.map-wrapper h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 30px;
    /* REMOVED: Yellow line under heading */
}

.map-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-height: 450px;
    /* FIX: Equal height as form */
}

.map-container iframe {
    display: block;
    border: none;
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.map-info {
    padding: 25px;
    background: linear-gradient(to right, rgba(37, 47, 121, 0.03), rgba(192, 162, 100, 0.03));
    border-top: 1px solid rgba(37, 47, 121, 0.1);
    margin-top: 20px;
}

.map-info p {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.map-info p i {
    color: var(--golden);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.map-info p strong {
    color: var(--blue);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Enhanced Contact Form Styles */
.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 25px;
    width: 100%;
    position: relative;
}

.contact-form .form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.contact-form .form-group label::after {
    content: " *";
    color: #e74c3c;
    display: inline;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 47, 121, 0.1);
    background: #fff;
}

.contact-form .form-group input:hover,
.contact-form .form-group select:hover,
.contact-form .form-group textarea:hover {
    border-color: #b0b7d3;
}

.contact-form .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23252F79' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 14px;
    padding-right: 50px;
    cursor: pointer;
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.contact-form .form-submit {
    margin-top: auto;
    padding-top: 20px;
    text-align: center;
}

.contact-form .btn-submit {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white;
    border: none;
    padding: 16px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 47, 121, 0.2);
    letter-spacing: 0.5px;
}

.contact-form .btn-submit:hover {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 47, 121, 0.3);
}

.contact-form .btn-submit:active {
    transform: translateY(-1px);
}

.contact-form .btn-submit i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.contact-form .btn-submit:hover i {
    transform: translateX(5px);
}

/* Responsive Styles for Contact Page */
@media (max-width: 1199px) {
    .contact-form .form-row {
        gap: 15px;
    }
}

@media (max-width: 991px) {
    .contact-page-header {
        padding: 60px 10px 40px;
    }

    .contact-page-header h1 {
        font-size: 36px;
    }

    .contact-info-grid {
        padding: 0 10px 40px;
    }

    .contact-form-map-section {
        padding: 40px 10px 60px;
    }

    .contact-form-wrapper,
    .map-wrapper {
        padding: 30px;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .contact-info-card h4,
    .contact-form-wrapper h4,
    .map-wrapper h4 {
        font-size: 20px;
    }

    .map-container {
        min-height: 400px;
    }

    .map-container iframe {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-page-header h3 {
        font-size: 22px;
    }

    .contact-page-header h1 {
        font-size: 32px;
    }

    .contact-info-card {
        padding: 30px 25px;
    }

    .contact-form-wrapper,
    .map-wrapper {
        padding: 25px;
    }

    .contact-card-item {
        flex-direction: column;
        gap: 12px;
    }

    .map-container {
        min-height: 350px;
    }

    .map-container iframe {
        min-height: 350px;
    }

    .contact-form .form-group input,
    .contact-form .form-group select,
    .contact-form .form-group textarea {
        padding: 13px 16px;
    }
}

@media (max-width: 576px) {
    .contact-page-header {
        padding: 50px 10px 30px;
    }

    .contact-page-header h1 {
        font-size: 28px;
    }

    .contact-info-card,
    .contact-form-wrapper,
    .map-wrapper {
        padding: 25px 20px;
    }

    .contact-card-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        margin-bottom: 20px;
    }

    .contact-info-card h4,
    .contact-form-wrapper h4,
    .map-wrapper h4 {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .contact-card-item h5 {
        font-size: 15px;
    }

    .contact-card-item p {
        font-size: 14px;
    }

    .map-container {
        min-height: 300px;
    }

    .map-container iframe {
        min-height: 300px;
    }

    .contact-form .btn-submit {
        width: 100%;
        justify-content: center;
        padding: 15px 30px;
    }

    .map-info p {
        font-size: 15px;
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info-card,
.contact-form-wrapper,
.map-wrapper {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.contact-info-card:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-info-card:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-info-card:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-form-wrapper {
    animation-delay: 0.4s;
}

.map-wrapper {
    animation-delay: 0.5s;
}

.footer .logo {
    width: max-content;
    padding: 5px 16px;
    background: #fff;
    border-radius: 8px;
}