@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #1e4c9a; /* Evente Deep Blue Shade */
    --secondary-color: #0b1628; /* Evente Deep Blue */
    --accent-color: #1a0b3c; /* Darker Purple/Blue */
    --text-dark: #151515;
    --text-light: #666666;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e6e6e6;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.05);
    --shadow-lg: 0 15px 40px rgba(0,0,0,0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* Footer (Light Theme per Reference) */
footer {
    background-color: #f9f9f9; /* Light Background */
    color: #666; /* Dark Gray Text */
    padding: 50px 0 30px;
    border-top: 1px solid #eee;
    margin-top: 0;
    font-size: 14px;
    position: relative;
    z-index: 10;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget h3 {
    color: #1e4c9a; /* TMU Blue */
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    border-left: none;
    padding-left: 0;
}

/* Red Heading Separator */
.footer-widget h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: #ff6600; /* TMU Red/Orange Accent */
    bottom: 0;
    left: 0;
}

/* Footer Links List */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #555;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    font-size: 14px;
}

.footer-links-list a::before {
    content: '\f105'; /* FontAwesome Angle Right */
    font-family: 'FontAwesome';
    margin-right: 10px;
    color: #ff6600; /* Red Chevron */
    font-size: 14px;
}

.footer-links-list a:hover {
    color: #1e4c9a;
    padding-left: 5px;
}

/* Contact Info */
.contact-info-item {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
    color: #555;
}

.contact-info-item i {
    color: #ff6600; /* Red Icons */
    font-size: 16px;
    margin-right: 12px;
    margin-top: 4px;
    width: 20px;
}

/* Social Icons (Outline Style) */
.social-icons {
    margin-top: 25px;
    display: flex;
    gap: 10px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #1e4c9a;
    border: 1px solid #ddd;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 16px;
}

.social-icons a:hover {
    background: #1e4c9a;
    border-color: #1e4c9a;
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #eee;
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    color: #888;
}

/* To Top Floating (Red) */
.to-top-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ff6600; /* Red Background */
    color: white !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 159, 16, 0.4);
    z-index: 999;
    opacity: 0.9;
    transition: all 0.3s;
}
.to-top-floating:hover {
    transform: translateY(-5px);
    opacity: 1;
    background: #ff934b;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

a {
    color: var(--primary-color);
    transition: var(--transition);
    text-decoration: none !important;
}

a:hover {
    color: var(--secondary-color);
}

/* Utilities */
.text-center { text-align: center; }
.section-padding { padding: 100px 0; }
.bg-light { background-color: var(--off-white); }
.container { max-width: 1240px; margin: 0 auto; padding: 0 15px; }

/* Buttons Evente Style */
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(141, 0, 0, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0; height: 100%;
    background: var(--secondary-color);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(11, 22, 40, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--secondary-color);
    border: 2px solid var(--light-gray);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Navbar Evente Style */
.navbar {
    background-color: #1a0b3c !important;
    border: none !important;
    padding: 10px 0;
    transition: all 0.4s ease;
    position: absolute;
    width: 100%;
    z-index: 999;
}

.navbar.sticky {
    position: fixed;
    background-color: #1a0b3c !important; /* Dark Blue on scroll */
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    top: 0;
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 28px !important;
    color: var(--white) !important;
    font-weight: 800;
    letter-spacing: -1px;
    padding: 5px 0 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-nav > li > a {
    color: var(--white) !important;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 20px !important;
    opacity: 0.9;
}

.navbar-nav > li > a:hover {
    color: var(--primary-color) !important;
    opacity: 1;
}

.navbar-nav > li > a::after {
    display: none; /* Remove old underline */
}

/* Navbar Toggle (Mobile) */
.navbar-toggle {
    border: none;
    margin-top: 10px;
}
.navbar-toggle .icon-bar {
    background-color: var(--white) !important;
    height: 3px;
    width: 25px;
}

/* Hero Banner Evente Style (Detailed) */
#banner {
    margin-top: 0;
    position: relative;
    height: 100vh;
    min-height: 750px;
    background-color: #1a0b3c; /* Deep Purple Base */
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 10px);
    overflow: hidden;
    color: #fff;
    padding-top: 80px; /* Space for navbar */
    display: block; /* Reset flex to allow bootstrap grid */
}

/* Social Sidebar */
.social-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}
.sidebar-line {
    width: 2px;
    height: 80px;
    background: rgba(255,255,255,0.3);
    margin-bottom: 20px;
}
.social-sidebar a {
    color: rgba(255,255,255,0.6);
    font-size: 18px;
    transition: 0.3s;
}
.social-sidebar a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}
.follow-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    margin-top: 30px;
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}

/* Hero Typography */
.hero-text-block {
    text-align: left;
    padding-left: 20px;
}

.date-tag {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-title-large {
    font-size: 5rem; /* Massive Text */
    font-weight: 800;
    color: #fff;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.location-tag {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    font-weight: 400;
    margin-bottom: 40px;
}

/* Countdown Timer */
.countdown-row {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.time-box {
    width: 80px;
    height: 90px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px; /* Rounded Squares */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: 0.3s;
}

.time-box:hover {
    border-color: var(--primary-color);
    background: rgba(255,255,255,0.05);
}

.time-box .num {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}
.time-box .label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-top: 5px;
}

/* Discovery Button */
.btn-discovery {
    background: linear-gradient(90deg, #ff007a 0%, #ff5e62 100%);
    color: #fff !important;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(255, 0, 122, 0.4);
}
.btn-discovery:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 0, 122, 0.6);
}

/* Right Image & Floating Assets */
.hero-right-image-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 400px; /* Ensure space for slider */
}

/* Carousel Styling */
#heroCarousel {
    width: 100%;
    height: 100%;
}

.hero-thumb-img {
    width: 100%;
    max-width: 600px;
    height: 100%;
    z-index: 1;
    position: relative;
    margin: 0 auto;
}

/* Fix Bootstrap Carousel Images */
#heroCarousel .item {
    height: 100%;
    text-align: center;
}

#heroCarousel .item img {
    margin: 0 auto;
    max-height: 80vh;
    width: auto;
    object-fit: contain;
    display: inline-block;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

/* Carousel Indicators Override */
.carousel-indicators li {
    border-color: var(--primary-color);
}
.carousel-indicators .active {
    background-color: var(--primary-color);
}

/* Responsive Fixes */
@media (max-width: 768px) {
    h2 { font-size: 1.75rem; }
    .navbar-brand { font-size: 20px !important;margin-left: 15px; }
    .section-padding { padding: 40px 0; }
    
    /* Hero Responsive */
    #banner { 
        margin-top: 0; 
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        /* padding-bottom: 50px; */
    }

    /* Stack Social Sidebar Horizontally */
    .social-sidebar {
        flex-direction: row;
        margin-bottom: 30px;
        justify-content: center;
    }
    .sidebar-line, .follow-text {
        display: none; /* Hide decorative line/text on mobile */
    }
    .social-sidebar a {
        margin: 0 10px;
        font-size: 24px;
    }

    .hero-title-large {
        font-size: 3rem; /* Scale down from 5rem */
        line-height: 1;
        letter-spacing: -1px;
    }

    .hero-text-block {
        padding-left: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .date-tag, .location-tag {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .countdown-row {
        justify-content: center;
        gap: 10px;
    }

    .time-box {
        width: 60px;
        height: 70px;
    }
    .time-box .num { font-size: 20px; }
    .time-box .label { font-size: 8px; }

    /* Right Image Mobile */
    .hero-right-image-container {
        min-height: 300px;
        margin-top: 20px;
    }

    #heroCarousel .item img {
        max-height: 400px;
        width: 100%;
        object-fit: contain;
    }

    /* Adjust Ribbon for Mobile */
    .hero-shape-floating {
        width: 100%;
        bottom: -20px;
    }
    .hero-curved-text-svg {
        transform: scale(0.7); /* Scale down SVG */
        transform-origin: bottom center;
    }

    /* Footer Mobile Alignment */
    .footer-widget {
        text-align: center;
        margin-bottom: 30px;
    }
    .footer-widget h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-icons {
        justify-content: center;
        display: flex;
    }
    .footer-links-list a {
        justify-content: center;
    }
    .contact-info-item {
        justify-content: center;
    }

    /* Feature Cards - Compact Square Cards on Mobile */
    .features-row {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 15px;
        padding: 0 10px 20px;
    }
    .features-row > div[class*="col-"] {
        width: 100px;
        flex: 0 0 100px;
        padding: 0;
    }
    .feature-item {
        flex-direction: column;
        gap: 8px;
        padding: 12px 8px;
        text-align: center;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        border: none;
        height: 100px;
        justify-content: center;
    }
    .feat-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin: 0 auto;
    }
    .feat-text {
        text-align: center;
    }
    .feat-text h5 {
        font-size: 11px;
        margin: 0;
        line-height: 1.2;
    }
    .feat-text p {
        display: block;
        font-size: 9px;
        margin: 0;
        line-height: 1.3;
        color: var(--text-light);
    }
}

/* VIDEO INTRO SECTION */
#video-intro {
    background: linear-gradient(135deg, #ffffff 0%, #d5e5ff 100%); /* Subtle Pink/White Gradient */
    position: relative;
    overflow: hidden;
    padding-bottom: 140px;
}

#video-intro .section-title {
    font-size: 2.2rem;
    line-height: 1.4;
    color: var(--secondary-color);
    margin-bottom: 60px;
    font-weight: 800;
}

/* Video Box Wrapper */
.video-box-wrapper {
    position: relative;
    margin-bottom: 80px;
    padding: 0 20px;
}

.video-box {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    background: #000;
    /* height: 550px; Increased Height */
    border: 10px solid #fff; /* Thick White Border */
}

/* Overlay Layer on Cover Link */
.video-cover {
    display: block;
    position: relative;
    height: 100%;
}

.video-cover::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5)); /* Gradient Overlay */
    z-index: 1;
    transition: 0.3s;
}

.video-cover:hover::before {
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
}

.video-cover {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image fills height */
    opacity: 0.9;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    display: block;
}

@media (max-width: 768px){
    #video-intro {
        padding-bottom: 10px;
    }
    }

/* LOGIN PROMO SECTION (Blue Banner Style) */
/* LOGIN PROMO SECTION (Blue Banner with Pop-up Image) */
#login-promo {
    background-color: #1a0b3c; /* Dark Purple/Blue */
    padding: 0px 0; /* Reduced padding to emphasize pop-out */
    position: relative;
    overflow: visible; /* CRITICAL: Allows image to stick out */
    /* margin-top: 80px; Space for the pop-out image to not cover video */
}

/* Abstract Background Lines */
#login-promo::before {
    content: '';
    position: absolute;
    top: -50px; left: 10%;
    width: 300px; height: 300px;
    border: 2px solid rgba(255,255,255,0.05);
    border-radius: 50%;
    z-index: 0;
}
#login-promo::after {
    content: '';
    position: absolute;
    bottom: -50px; right: 10%;
    width: 400px; height: 400px;
    border: 2px solid rgba(255,255,255,0.05);
    border-radius: 50%;
    z-index: 0;
}

.promo-box {
    background: transparent;
    position: relative;
    z-index: 1;
}

.promo-image-container {
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: flex-end; /* Align bottom to let it grow up */
    justify-content: center;
    position: relative;
    margin-top: -120px; /* Pulls the container UP outside the section */
}

.promo-img {
    max-height: 550px; /* Increase height allowed */
    width: auto;
    object-fit: contain;
    /* filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4)); */
    transform: scale(1.1); /* Slight zoom for impact */
    transform-origin: bottom center;
}

.promo-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    text-align: left;
    color: #fff;
    padding-left: 40px;
}

.promo-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-big-text {
    font-family: var(--font-heading);
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.promo-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
    max-width: 90%;
    line-height: 1.6;
}

/* Store-style Buttons Area */
.promo-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-store {
    background-color: #ff6600; /* Black background like App Store */
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
    min-width: 180px;
}

.btn-store:hover {
    background-color: #ff9945;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-store i {
    font-size: 28px;
}

.btn-store-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.btn-store-text span.small-txt {
    font-size: 10px;
    opacity: 0.8;
    text-transform: uppercase;
}

.btn-store-text span.big-txt {
    font-size: 16px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .promo-big-text { font-size: 40px; }
    .promo-content { padding: 40px 20px; }
}

.video-box:hover .video-cover {
    transform: scale(1.1);
}

/* Play Button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color); /* Pink Icon */
    font-size: 30px;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.play-btn i {
    margin-left: 5px;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 15px 35px rgba(30, 76, 154, 0.4);
}

/* Pulse Animation */
.play-btn::after {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    animation: pulse-border 1.5s infinite;
    z-index: -1;
}

@keyframes pulse-border {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* Feature Highlights */
.features-row {
    padding-bottom: 60px;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    transition: 0.3s;
    background: rgba(255,255,255,0.5); /* Subtle background for items */
    border-radius: 15px;
    border: 1px solid #1e4b9a1f;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feat-icon {
    width: 70px;
    height: 70px;
    background: #1e4c9a; 
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    transition: 0.3s;
}

.feature-item:hover .feat-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotateY(180deg);
}

/* Feature Text */
.feat-text {
    text-align: left;
}

.feat-text h5 {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
}

.feat-text p {
    margin: 0;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
    text-align: center;
}

/* Responsive Login Promo */
@media (max-width: 991px) {
    #login-promo {
        padding: 40px 0 60px; /* Restore padding on mobile */
        margin-top: 0;
    }
    
    .promo-image-container {
        margin-top: 0; /* logic reset */
        min-height: auto;
        margin-bottom: 20px;
    }
    
    .promo-img {
        max-height: 300px;
        transform: scale(1);
    }
    
    .promo-content {
        padding: 0 15px;
        text-align: center;
        align-items: center;
    }
    
    .promo-buttons {
        justify-content: center;
    }
    
    .promo-big-text {
        font-size: 28px; /* Smaller header */
    }
}

/* CONTACT PAGE UI REFRESH */
#contact {
    padding: 80px 0 100px;
    background-color: var(--off-white);
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #f0f2f5;
    z-index: 0;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.contact-container {
    position: relative;
    z-index: 2;
}

.contact-left-col {
    padding-right: 50px;
    padding-top: 50px;
}

.contact-heading-small {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.contact-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-desc {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 16px;
}

.contact-info-list {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon-box {
    width: 60px;
    height: 60px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    margin-right: 25px;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon-box {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.contact-details h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.contact-details p {
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Form Card */
.contact-form-card {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
    margin-top: 70px;
    overflow: hidden;
}

.contact-form-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(30,76,154,0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.form-floating {
    position: relative;
    margin-bottom: 25px;
    z-index: 1;
}

.contact-input {
    width: 100%;
    height: 55px;
    padding: 0 20px;
    border: 2px solid #eee;
    background: #fdfdfd;
    border-radius: 12px;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.contact-input:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 5px 20px rgba(30, 76, 154, 0.1);
    outline: none;
}

textarea.contact-input {
    height: 150px;
    padding: 20px;
    resize: none;
}

.btn-send-msg {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(30, 76, 154, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-send-msg:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(11, 22, 40, 0.4);
}

.btn-send-msg i {
    margin-left: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    #contact::before { display: none; }
    .contact-left-col { padding-right: 15px; margin-bottom: 50px; text-align: center; }
    .contact-item { text-align: left; } /* Keep item flex but align text left */
     .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .contact-icon-box { margin-right: 0; margin-bottom: 15px; }
    .contact-form-card { padding: 30px 20px; }
}

@media (max-width: 768px) {
    .feat-icon{
        width: 40px;
    height: 40px;
    font-size: 20px;
    }
    .feature-item{
        gap: 10px;
        padding: 8px;
        height: 130px;
    }
    .feat-text h5{
        font-size: 12px;
        text-align: center;
    }
}


.page-container{
    margin-top: 70px;
}