@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-SemiBold.woff2') format('woff2'),
        url('../fonts/Oswald-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-Medium.woff2') format('woff2'),
        url('../fonts/Oswald-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-ExtraLight.woff2') format('woff2'),
        url('../fonts/Oswald-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-Light.woff2') format('woff2'),
        url('../fonts/Oswald-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-Regular.woff2') format('woff2'),
        url('../fonts/Oswald-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-Bold.woff2') format('woff2'),
        url('../fonts/Oswald-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --teal: #80bcc0;
    --lavender: #ac95b2;
    --sky-blue: #9ebdd5;
    --coral-red: #e95c67;
    --golden-orange: #f69532;
    --light-green: #BAE369;
    --dark-blue: #374E94;
}

/* Top Info Bar Styles */
.info-bar {
    background-color: #CBDB2A;
    color: #2850A3;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 300;
    border-bottom: 1px solid rgba(40, 80, 163, 0.2);
    /* Initial state for GSAP animation - prevents jerk */
    transform: translateY(-50px);
    opacity: 0;
}

.info-bar__contact {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.info-bar__contact-item {
    color: #2850A3;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    /* Initial state for GSAP animation - prevents jerk */
    transform: translateX(-30px);
    opacity: 0;
    font-weight: 500;
}

.info-bar__contact-item:hover {
    color: #2850A3;
    text-decoration: none;
}

.info-bar__contact-item i {
    color: #2850A3;
    font-size: 16px;
    /* Ensure Font Awesome icons are visible */
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 5 Free", "Font Awesome 5 Pro", "FontAwesome", sans-serif;
    font-weight: 900;
    /* Debug: ensure icon is visible */
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: 1;
}

.info-bar__social {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.info-bar__social-link {
    color: #2850A3;
    text-decoration: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(40, 80, 163, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    /* Initial state for GSAP animation - prevents jerk */
    transform: translateX(30px);
    opacity: 0;
}

.info-bar__social-link:hover {
    background-color: #2850A3;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.info-bar__social-link i {
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .info-bar__contact {
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .info-bar__social {
        justify-content: center;
    }
    
    .info-bar__contact-item {
        font-size: 13px;
    }
}

/* Navigation Bar Styles */
.navbar {
    background-color: #2850A3;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
    /* Initial state for GSAP animation - prevents jerk */
    transform: translateY(-30px);
    opacity: 0;
}

.navbar__logo {
    width: 120px;
    margin-right: 10px;
}

.navbar__brand-text {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: white;
}

.navbar-brand {
    /* Initial state for GSAP animation - prevents jerk */
    transform: translateX(-30px);
    opacity: 0;
}

.navbar-nav .nav-link {
    color: white !important;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 10px 20px !important;
    margin: 0 5px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #CBDB2A !important;
    background-color: rgba(203, 219, 42, 0.1);
    transform: translateY(-2px);
}

.navbar-nav .nav-item {
    /* Initial state for GSAP animation - prevents jerk */
    transform: translateY(20px);
    opacity: 0;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.navbar-toggler:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler:focus {
    box-shadow: none;
    border-color: rgba(255, 255, 255, 1);
}

.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(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 100% !important;
    width: 1.5em !important;
    height: 1.5em !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

/* Responsive navbar adjustments */
@media (max-width: 991.98px) {
    .navbar-toggler {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 20px;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
        padding: 12px 20px !important;
    }
    
    .navbar__brand-text {
        font-size: 20px;
    }
    
    .navbar__logo {
        height: 35px;
    }
}

@media (min-width: 992px) {
    .navbar-toggler {
        display: none !important;
    }
}

/* Categories Section Styles */
.categories-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f1f3f4 100%);
    position: relative;
    border: 2px solid #e9ecef;
}

.categories-section__header {
    margin-bottom: 60px;
    opacity: 1;
    transform: translateY(0);
}

.categories-section__badge {
    display: inline-block;
    background: linear-gradient(135deg, #2850A3, #CBDB2A);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(40, 80, 163, 0.3);
}

.categories-section__heading {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
    color: #2850A3;
    margin-bottom: 20px;
    position: relative;
}

.categories-section__heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #2850A3, #CBDB2A);
    border-radius: 2px;
}

.categories-section__subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Category Card Styles */
.category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.category-card__image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.category-card:hover .category-card__image img {
    transform: scale(1.1);
}

.category-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(40, 80, 163, 0.8) 0%, rgba(203, 219, 42, 0.6) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card:hover .category-card__overlay {
    opacity: 1;
}

.category-card__icon {
    color: white;
    font-size: 3rem;
    transform: scale(0.5);
    transition: all 0.4s ease;
}

.category-card:hover .category-card__icon {
    transform: scale(1);
}

.category-card__content {
    padding: 25px;
}

.category-card__title {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #2850A3;
    margin-bottom: 12px;
    text-align: center;
}

.category-card__description {
    color: #666;
    text-align: center;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for categories section */
@media (max-width: 991.98px) {
    .categories-section {
        padding: 80px 0;
    }
    
    .categories-section__heading {
        font-size: 2rem;
    }
    
    .categories-section__subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .categories-section {
        padding: 60px 0;
    }
    
    .categories-section__heading {
        font-size: 1.8rem;
    }
    
    .categories-section__subtitle {
        font-size: 1rem;
    }
    
    .category-card__image {
        height: 200px;
    }
    
    .category-card__content {
        padding: 20px;
    }
    
    .category-card__title {
        font-size: 1.2rem;
    }
}

/* About Us Section Styles */
.about-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.about-section__image {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
}

.about-section__content {
    opacity: 1;
    transform: translateX(0);
}

.about-section__badge,
.about-section__heading,
.about-section__title,
.about-section__text p,
.about-section__stat {
    opacity: 1;
    transform: translateY(0);
}

.about-section__image-wrapper {
    position: relative;
    padding: 30px;
}

.about-section__image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.about-section__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-section__image:hover::before {
    opacity: 1;
}

.about-section__image:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

.about-section__image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.about-section__image:hover img {
    transform: scale(1.08);
}

.about-section__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(40, 80, 163, 0.1) 0%, rgba(203, 219, 42, 0.05) 100%);
    z-index: 1;
}

.about-section__image-shape {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2850A3, #CBDB2A);
    border-radius: 50%;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 10px 25px rgba(40, 80, 163, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.about-section__image-shape::before {
    content: '\f303';
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.about-section__content {
    padding-left: 50px;
}

.about-section__badge {
    display: inline-block;
    background: linear-gradient(135deg, #2850A3, #CBDB2A);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(40, 80, 163, 0.3);
}

.about-section__heading {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
    color: #2850A3;
    margin-bottom: 15px;
    position: relative;
}

.about-section__heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2850A3, #CBDB2A);
    border-radius: 2px;
}

.about-section__title {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
    color: #CBDB2A;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section__text {
    margin-bottom: 40px;
}

.about-section__text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.about-section__stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.about-section__stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.about-section__stat-number {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #2850A3;
    line-height: 1;
    margin-bottom: 8px;
}

.about-section__stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Responsive adjustments for about section */
@media (max-width: 991.98px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-section__content {
        padding-left: 0;
        padding-top: 50px;
        text-align: center;
    }
    
    .about-section__heading {
        font-size: 2rem;
    }
    
    .about-section__heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-section__stats {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-section__heading {
        font-size: 1.8rem;
    }
    
    .about-section__title {
        font-size: 1.1rem;
    }
    
    .about-section__text p {
        font-size: 1rem;
    }
    
    .about-section__stats {
        gap: 20px;
    }
    
    .about-section__stat {
        min-width: 100px;
    }
    
    .about-section__stat-number {
        font-size: 2rem;
    }
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
}

.hero-slider__slide {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-slider__slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(55, 78, 148, 0.8) 0%, rgba(128, 188, 192, 0.6) 100%);
    z-index: 1;
}

.hero-slider__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    padding: 40px 0;
    text-align: center;
    max-width: 800px;
    width: 90%;
}

.hero-slider__heading {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
}

.hero-slider__subheading {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
}

.hero-slider__btn {
    background-color: #2850A3;
    border: 2px solid #2850A3;
    color: white;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-slider__btn:hover {
    background-color: transparent;
    color: #2850A3;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(40, 80, 163, 0.3);
}

/* Slick Slider Custom Styles */
.hero-slider .slick-dots {
    bottom: 30px;
    z-index: 3;
}

.hero-slider .slick-dots li button:before {
    color: white;
    font-size: 12px;
    opacity: 0.5;
}

.hero-slider .slick-dots li.slick-active button:before {
    color: var(--teal);
    opacity: 1;
}

/* Responsive adjustments for hero slider */
@media (max-width: 991.98px) {
    .hero-slider__heading {
        font-size: 2.5rem;
    }
    
    .hero-slider__subheading {
        font-size: 1.1rem;
    }
    
    .hero-slider__btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-slider__slide {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-slider__heading {
        font-size: 2rem;
    }
    
    .hero-slider__subheading {
        font-size: 1rem;
    }
    
    .hero-slider .slick-prev,
    .hero-slider .slick-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-slider .slick-prev {
        left: 15px;
    }
    
    .hero-slider .slick-next {
        right: 15px;
    }
}

/* Gallery Section Styles */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f4fd 0%, #d1ecf1 100%);
    position: relative;
}

.gallery-section__header {
    margin-bottom: 60px;
}

.gallery-section__badge {
    display: inline-block;
    background: linear-gradient(135deg, #CBDB2A 0%, #a8c000 100%);
    color: #2850A3;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(203, 219, 42, 0.3);
}

.gallery-section__heading {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #2850A3;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gallery-section__subtitle {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item__image img {
    transform: scale(1.1);
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-section__heading {
        font-size: 36px;
    }
    
    .gallery-section__subtitle {
        font-size: 16px;
    }
    
    .gallery-item {
        margin-bottom: 20px;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    position: relative;
}

.contact-section__header {
    margin-bottom: 60px;
}

.contact-section__badge {
    display: inline-block;
    background: linear-gradient(135deg, #2850A3 0%, #1e3a7a 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(40, 80, 163, 0.3);
}

.contact-section__heading {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #2850A3;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-section__subtitle {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Info Styles */
.contact-section__info {
    padding-right: 30px;
}

.contact-section__info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-section__info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-section__info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #CBDB2A 0%, #a8c000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-section__info-icon i {
    font-size: 24px;
    color: #2850A3;
}

.contact-section__info-content {
    flex: 1;
}

.contact-section__info-title {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #2850A3;
    margin-bottom: 10px;
}

.contact-section__info-text {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Contact Form Styles */
.contact-section__form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-section__form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    color: #2850A3;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: #CBDB2A;
    background: white;
    box-shadow: 0 0 0 3px rgba(203, 219, 42, 0.1);
}

.form-control::placeholder {
    color: #adb5bd;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-section__submit-btn {
    background: linear-gradient(135deg, #2850A3 0%, #1e3a7a 100%);
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(40, 80, 163, 0.3);
}

.contact-section__submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 80, 163, 0.4);
    background: linear-gradient(135deg, #1e3a7a 0%, #2850A3 100%);
}

.contact-section__submit-btn i {
    font-size: 16px;
}

/* Responsive Contact */
@media (max-width: 991px) {
    .contact-section__info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .contact-section__form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section__heading {
        font-size: 36px;
    }
    
    .contact-section__subtitle {
        font-size: 16px;
    }
    
    .contact-section__info-item {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .contact-section__form-wrapper {
        padding: 25px;
    }
}

/* Contact Form Response Styles */
.form-response {
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 500;
}

.form-response.success {
    background: rgba(40, 176, 40, 0.1);
    border: 2px solid #28b028;
    color: #1a6b1a;
}

.form-response.error {
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid #dc3545;
    color: #721c24;
}

.form-response ul {
    margin: 10px 0 0 20px;
    padding: 0;
}

.form-response li {
    margin-bottom: 5px;
}

/* Loading State for Submit Button */
.contact-section__submit-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.contact-section__submit-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Copyright Section Styles */
.copyright-section {
    background: linear-gradient(135deg, #2850A3 0%, #1e3a7a 100%);
    padding: 30px 0;
    color: white;
    position: relative;
}

.copyright-section__text p {
    margin: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.copyright-section__social {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.copyright-section__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright-section__social-link:hover {
    background: #CBDB2A;
    color: #2850A3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(203, 219, 42, 0.3);
    border-color: #CBDB2A;
}

.copyright-section__social-link i {
    font-size: 16px;
}

/* Responsive Copyright */
@media (max-width: 767px) {
    .copyright-section__social {
        justify-content: center;
        margin-top: 15px;
    }
    
    .copyright-section__text {
        text-align: center;
    }
}

/* Back to Top Button Styles */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #CBDB2A 0%, #a8c000 100%);
    color: #2850A3;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(203, 219, 42, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #a8c000 0%, #CBDB2A 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(203, 219, 42, 0.4);
}

.back-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

/* Responsive Back to Top */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Map Section Styles */
.map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.map-section__wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.map-section__header {
    margin-bottom: 50px;
}

.map-section__badge {
    display: inline-block;
    background: linear-gradient(135deg, #CBDB2A 0%, #a8c000 100%);
    color: #2850A3;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.map-section__heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2850A3;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
}

.map-section__subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.map-section__map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 20px;
}

.map-section__map-container iframe {
    border-radius: 10px;
    width: 100%;
    height: 450px;
}

/* Responsive adjustments for map section */
@media (max-width: 768px) {
    .map-section {
        padding: 60px 0;
    }
    
    .map-section__heading {
        font-size: 2rem;
    }
    
    .map-section__subtitle {
        font-size: 1rem;
    }
    
    .map-section__map-container {
        padding: 15px;
    }
    
    .map-section__map-container iframe {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .map-section__map-container iframe {
        height: 300px;
    }
}