/* ======================================
   GLOBAL STYLES & VARIABLES - FIXED
   ====================================== */

:root {
    /* Color Palette */
    --dark-blue: #1a2942;
    --dark-blue-light: #2d3e5f;
    --navy: #0f1e3a;
    --light-blue: #e8f1ff;
    --lighter-blue: #f5f9ff;
    
    --golden: #fbbf24;
    --golden-bright: #fcd34d;
    --golden-dark: #f59e0b;
    --golden-light: #fef3c7;
    
    --white: #ffffff;
    --off-white: #f8fafc;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --text-light: #94a3b8;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2d3e5f 0%, #1a2942 100%);
    --gradient-golden: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --gradient-light: linear-gradient(135deg, #f5f9ff 0%, #e8f1ff 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-golden: 0 4px 20px rgba(251, 191, 36, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    /* background: var(--off-white); */
    background: #1a2941 !important;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    /* REMOVED: padding-top: 80px; - Causes navbar issues */
}

html {
    scroll-behavior: smooth;
}

/* ======================================
   NAVIGATION BAR - FIXED RESPONSIVE
   ====================================== */

.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1050;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.navbar > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: nowrap;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    flex-shrink: 0;
    max-width: 70%;
}

/* IMPROVED LOGO RESPONSIVENESS */
.logo-img {
    width: auto;
    /* height: 50px; Fixed height for better control */
    height: 60px;
    /* max-width: 180px; */
    /* min-width: 80px; */
    object-fit: contain;
    transition: all 0.3s ease;
}
/* Scaled logo for different screen sizes */
@media (max-width: 1400px) {
    .logo-img {
        height: 48px;
        max-width: 170px;
    }
}

@media (max-width: 1200px) {
    .logo-img {
        height: 46px;
        max-width: 160px;
    }
}

@media (max-width: 992px) {
    .logo-img {
        height: 44px;
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 42px;
        max-width: 140px;
        min-width: 70px;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 40px;
        max-width: 130px;
        min-width: 60px;
    }
    
    .navbar-brand {
        max-width: 180px;
    }
}

@media (max-width: 420px) {
    .logo-img {
        height: 38px;
        max-width: 120px;
        min-width: 50px;
    }
    
    .navbar-brand {
        max-width: 140px;
    }
}

@media (max-width: 360px) {
    .logo-img {
        height: 35px;
        max-width: 110px;
        min-width: 45px;
    }
}

.brand-text {
    color: var(--dark-blue);
    font-size: 1.1rem;
    line-height: 1.2;
    font-weight: 700;
}

.brand-sub {
    color: var(--golden-dark);
    font-size: 0.7rem;
    font-weight: 500;
}

/* FIXED NAVBAR TOGGLER */
.navbar-toggler {
    border: 2px solid var(--golden);
    border-radius: 8px;
    padding: 8px 12px;
    background: transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
    background: rgba(251, 191, 36, 0.1);
    border-color: var(--golden-bright);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
    outline: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(251, 191, 36, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(251, 191, 36, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 4L26 26M4 26L26 4'/%3e%3c/svg%3e");
}

/* FIXED NAVBAR COLLAPSE */
.navbar-collapse {
    flex-grow: 0;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    /* color: var(--text-gray) !important; */
    color: black !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 15px !important;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-golden);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--golden-dark) !important;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.btn-join {
    background: var(--gradient-golden);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-golden);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-join:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 28px rgba(251, 191, 36, 0.4);
    color: var(--white);
}

/* ======================================
   MOBILE NAVBAR FIXES
   ====================================== */

@media (max-width: 991px) {
    body {
        padding-top: 70px; /* Add padding for fixed navbar on mobile */
    }
    
    .navbar > .container {
        flex-wrap: wrap;
    }
    
    .navbar-brand {
        max-width: 60%;
    }
    
    .navbar-collapse {
        order: 3;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        margin-top: 15px;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        border: 2px solid var(--light-blue);
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 12px 20px !important;
        margin: 0 !important;
        width: 100%;
        text-align: left;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .nav-link::before {
        display: none;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: linear-gradient(135deg, #f5f9ff 0%, #e8f1ff 100%);
        color: var(--dark-blue) !important;
    }
    
    .btn-join {
        width: 100%;
        margin-top: 15px !important;
        padding: 14px 30px;
        text-align: center;
    }
    
    .logo-img {
        /* max-width: 180px; */
        width: auto;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        max-width: 50%;
    }
    
    .logo-img {
        max-width: 160px;
    }
}

@media (max-width: 420px) {
    .navbar-brand {
        max-width: 45%;
    }
    
    .logo-img {
        max-width: 90px;
    }
}

/* ======================================
   HERO BANNER SECTION - FIXED
   ====================================== */

.hero-banner {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 50%, #1a2942 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px; /* Offset for fixed navbar */
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.15) 0%, transparent 50%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1rem;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-custom a:hover {
    color: var(--golden-bright);
}

.breadcrumb-custom .separator {
    color: var(--golden-bright);
}

.breadcrumb-custom .current {
    color: var(--golden-bright);
    font-weight: 600;
}

.banner-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
}

.banner-line {
    width: 150px;
    max-width: 80%;
    height: 4px;
    background: var(--gradient-golden);
    margin: 30px auto;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
}

/* ======================================
   CONTACT SECTION
   ====================================== */

.contact-section {
    background: var(--dark-blue);
    min-height: 100vh;
    padding: 4rem 0;
}

.header {
    animation: fadeIn 0.8s ease-out;
    padding: 0 1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.header h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-golden);
    border-radius: 3px;
}

.subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* ======================================
   CONTACT CARDS
   ====================================== */

.contact-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    border: 2px solid #e2e8f0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-golden);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--golden);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.25);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.contact-card:hover .icon-wrapper {
    transform: scale(1.15) rotate(8deg);
    background: var(--gradient-golden);
}

.icon-wrapper svg {
    width: 32px;
    height: 32px;
    fill: var(--golden-bright);
    /* color: var(--golden-bright); */
    animation: iconFloat 3s ease-in-out infinite;
}

.icon-wrapper svg:hover {
    /* width: 32px;
    height: 32px; */
    /* fill: #ffffff !important; */
    fill: #ffffff !important;
    /* color: #ffffff !important; */
    /* animation: iconFloat 3s ease-in-out infinite; */
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.contact-content {
    text-align: center;
}

.contact-label {
    font-size: 0.75em;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
}

.contact-value {
    color: var(--text-dark);
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
    font-weight: 500;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    word-break: break-word;
    padding: 0 0.5rem;
}

.contact-value a {
    color: var(--dark-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-value a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-golden);
    transition: width 0.3s ease;
}

.contact-value a:hover {
    color: var(--golden-dark);
}

.contact-value a:hover::after {
    width: 100%;
}

/* ======================================
   CONTACT FORM
   ====================================== */

.form-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--light-blue);
    transition: all 0.3s ease;
}

.form-container:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--golden);
}

.form-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-golden);
    border-radius: 2px;
}

.form-subtitle {
    color: var(--text-gray);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.form-group label i {
    color: var(--golden-dark);
    margin-right: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--golden);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: var(--text-light);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 16px 30px;
    background: var(--gradient-golden);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-golden);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.4);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* ======================================
   MAP SECTION
   ====================================== */

.map-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--light-blue);
    transition: all 0.3s ease;
    height: 100%;
}

.map-container:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--golden);
}

.map-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
}

.map-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-golden);
    border-radius: 2px;
}

.map-subtitle {
    color: var(--text-gray);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    margin-bottom: 25px;
    line-height: 1.6;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 25px;
    border: 3px solid var(--light-blue);
    transition: all 0.3s ease;
}

.map-wrapper:hover {
    border-color: var(--golden);
    box-shadow: var(--shadow-lg);
}

.map-wrapper iframe {
    display: block;
    transition: transform 0.3s ease;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--lighter-blue);
    border-radius: 12px;
    border-left: 4px solid var(--golden);
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: var(--light-blue);
    transform: translateX(5px);
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--golden-dark);
    margin-top: 3px;
    flex-shrink: 0;
}

.detail-item strong {
    color: var(--dark-blue);
    display: block;
    margin-bottom: 5px;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.detail-item p {
    color: var(--text-gray);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    line-height: 1.6;
    margin: 0;
}

/* ======================================
   FOOTER SECTION
   ====================================== */

.footer {
    background: var(--dark-blue);
    position: relative;
    margin-top: 80px;
}

.footer-main {
    padding: 60px 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer logo */
.footer-logo {
    width: auto;
    height: 60px;
    max-width: 250px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .footer-logo {
        height: 50px;
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .footer-logo {
        height: 45px;
        max-width: 180px;
    }
}

/* ======================================
   AOS ANIMATION FIXES FOR MOBILE
   ====================================== */

/* Disable animations on very small screens */
@media (max-width: 576px) {
    [data-aos] {
        opacity: 1 !important;
        transform: translate(0) scale(1) !important;
    }
}

/* Smooth transitions for AOS elements */
[data-aos] {
    transition-property: transform, opacity;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ======================================
   MOBILE NAVBAR IMPROVEMENTS
   ====================================== */

@media (max-width: 991px) {
    .navbar-collapse {
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .navbar-brand {
        flex: 1;
        min-width: 0;
    }
}

/* ======================================
   HERO BANNER FIX FOR MOBILE
   ====================================== */

@media (max-width: 768px) {
    .hero-banner {
        margin-top: 70px;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        margin-top: 65px;
    }
}

/* ======================================
   IMPROVED FORM RESPONSIVENESS
   ====================================== */

@media (max-width: 768px) {
    .form-group label i,
    .contact-value a {
        font-size: inherit !important;
    }
}

/* ======================================
   FIX FOR MAP IFRAME ON MOBILE
   ====================================== */

.map-wrapper iframe {
    width: 100%;
    min-height: 300px;
}

@media (max-width: 576px) {
    .map-wrapper iframe {
        min-height: 250px;
    }
}

/* ======================================
   ENSURE AOS ELEMENTS ARE VISIBLE
   ====================================== */

body {
    visibility: visible;
}

/* Fix for potential animation conflicts */
.aos-init:not(.aos-animate) {
    pointer-events: none;
}

.footer-brand {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.4;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    line-height: 1.7;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--golden);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--golden-bright);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-golden);
    color: var(--white);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: var(--shadow-golden);
}

.footer-title {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-golden);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--golden-bright);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--golden-bright);
    padding-left: 10px;
}

.footer-links a:hover i {
    transform: translateX(5px);
}

.location-map {
    width: 100%;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid rgba(251, 191, 36, 0.3);
}

.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.location-map:hover .map-img {
    transform: scale(1.1);
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.contact-info i {
    color: var(--golden-bright);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 25px 0;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    margin: 0;
}

.copyright-text strong {
    color: var(--golden-bright);
}

.designer-link {
    color: var(--golden-bright);
    text-decoration: none;
    transition: all 0.3s ease;
}

.designer-link:hover {
    color: var(--golden);
    text-decoration: underline;
}

.back-to-top {
    width: 50px;
    height: 50px;
    background: var(--gradient-golden);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-golden);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 32px rgba(251, 191, 36, 0.5);
}

/* ======================================
   RESPONSIVE BREAKPOINTS
   ====================================== */

@media (max-width: 768px) {
    .hero-banner {
        height: 300px;
        margin-top: 70px;
    }

    .banner-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .header h1 {
        font-size: 2em;
    }

    .contact-card {
        margin-bottom: 20px;
        padding: 30px 20px;
    }

    .form-container,
    .map-container {
        padding: 30px 20px;
    }

    .form-title,
    .map-title {
        font-size: 1.6rem;
    }

    .map-wrapper iframe {
        height: 350px;
    }

    .footer-main {
        padding: 40px 0 20px;
    }

    .text-center.text-md-start,
    .text-center.text-md-end {
        text-align: center !important;
    }

    .back-to-top {
        margin-top: 15px;
    }

    .form-control {
        padding: 16px 20px;
        font-size: 16px;
    }

    .contact-section {
        padding: 2.5rem 0;
    }

    .row.g-4 {
        row-gap: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        height: 250px;
        margin-top: 65px;
    }

    .banner-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .header h1 {
        font-size: 1.8em;
    }

    .subtitle {
        font-size: 0.95em;
    }

    .contact-card {
        padding: 25px 15px;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .icon-wrapper svg {
        width: 28px;
        height: 28px;
    }

    .form-container,
    .map-container {
        padding: 25px 15px;
    }

    .form-title,
    .map-title {
        font-size: 1.4rem;
    }

    .btn-submit {
        padding: 14px 25px;
        font-size: 1rem;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .detail-item {
        padding: 12px;
        gap: 12px;
    }

    .footer-logo {
        max-width: 180px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 420px) {
    .hero-banner {
        height: 220px;
        margin-top: 60px;
    }

    .banner-title {
        font-size: 1.5rem;
    }

    .contact-card {
        padding: 20px 12px;
    }

    .form-container,
    .map-container {
        padding: 20px 12px;
    }

    .navbar > .container {
        padding: 0 0.75rem;
    }

    .contact-section {
        padding: 1.5rem 0;
    }
}

/* Landscape Mobile Orientation Fix */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-banner {
        height: 250px;
    }

    .navbar {
        padding: 0.25rem 0;
    }
} 


