/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Logo Image Styles */
.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Typography */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1f2937;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.125rem;
    text-align: center;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .section-description {
        font-size: 1.25rem;
    }
}

.text-accent {
    color: #3b65af;
}

.text-accent-light {
    color: #598238;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.btn-large {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

@media (min-width: 640px) {
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
}

.btn-primary {
    background-color: #3b65af;
    color: white;
}

.btn-primary:hover {
    background-color: #2d4f8a;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #1f2937;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f3f4f6;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-logo-link:hover {
    transform: scale(1.05);
}

.nav-logo-link:focus {
  outline: none;
  box-shadow: none;
}

.nav-logo {
    width: 5rem;
    height: 5rem;
}

@media (min-width: 640px) {
    .nav-logo {
        width: 4rem;
        height: 4rem;
    }
}

@media (min-width: 1024px) {
    .nav-logo {
        width: 6rem;
        height: 5rem;
    }
}

.brand-text {
    margin-left: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
}

@media (min-width: 640px) {
    .brand-text {
        font-size: 1.25rem;
    }
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #3b65af;
}

.mobile-nav {
    display: block;
}

@media (min-width: 768px) {
    .mobile-nav {
        display: none;
    }
}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: #3b65af;
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu {
    position: fixed;
    top: 5rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 4rem);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid #f3f4f6;
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.mobile-menu.show {
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu-content {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;
    transform: translateX(-30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.mobile-menu.show .mobile-menu-content {
    transform: translateX(0);
    opacity: 1;
}

/* Mobile brand in sidebar */
.mobile-brand {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    transform: translateX(-40px);
    opacity: 0;
    animation: slideInLeft 0.6s ease forwards 0.2s;
}

.mobile-logo {
    width: 2.5rem;
    height: 2.5rem;
}

.mobile-brand-text {
    margin-left: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 0.75rem;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 500;
    transform: translateX(-30px);
    opacity: 0;
    animation: slideInLeft 0.5s ease forwards;
}

.mobile-menu.show .mobile-nav-link:nth-child(2) {
    animation-delay: 0.3s;
}

.mobile-menu.show .mobile-nav-link:nth-child(3) {
    animation-delay: 0.35s;
}

.mobile-menu.show .mobile-nav-link:nth-child(4) {
    animation-delay: 0.4s;
}

.mobile-menu.show .mobile-nav-link:nth-child(5) {
    animation-delay: 0.45s;
}

@keyframes slideInLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.mobile-nav-link:hover {
    color: #3b65af;
    background: linear-gradient(135deg, rgba(59, 101, 175, 0.1), rgba(89, 130, 56, 0.1));
    transform: translateX(8px);
}

.mobile-btn {
    width: 100%;
    margin-top: 1.5rem;
    text-align: center;
    transform: translateY(30px);
    opacity: 0;
    animation: slideInUp 0.5s ease forwards 0.5s;
}

@keyframes slideInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hidden {
    display: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Background Carousel */
.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 79, 138, 0.8), rgba(59, 101, 175, 0.7), rgba(89, 130, 56, 0.8));
    z-index: 2;
}

.hero-decorations {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    z-index: 3;
}

.decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.decoration-1 {
    top: 2.5rem;
    left: 1.25rem;
    width: 4rem;
    height: 4rem;
    background-color: #598238;
}

@media (min-width: 640px) {
    .decoration-1 {
        top: 5rem;
        left: 2.5rem;
        width: 8rem;
        height: 8rem;
    }
}

.decoration-2 {
    bottom: 4rem;
    right: 2rem;
    width: 6rem;
    height: 6rem;
    background-color: #3b65af;
}

@media (min-width: 640px) {
    .decoration-2 {
        bottom: 8rem;
        right: 4rem;
        width: 12rem;
        height: 12rem;
    }
}

.decoration-3 {
    top: 50%;
    left: 25%;
    width: 3rem;
    height: 3rem;
    background-color: #4a7bc8;
}

@media (min-width: 640px) {
    .decoration-3 {
        left: 33.333333%;
        width: 6rem;
        height: 6rem;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem 0;
    text-align: center;
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title-accent {
    background: linear-gradient(to right, #598238, #6fa83f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

@media (min-width: 640px) {
    .hero-title-accent {
        display: inline;
    }
}

.hero-description {
    font-size: 1rem;
    color: #e0f2fe;
    margin-bottom: 1.5rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .hero-description {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    padding: 0 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        margin-bottom: 4rem;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .stat-number {
        font-size: 1.875rem;
    }
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 2.25rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: #e0f2fe;
    font-weight: 600;
}

@media (min-width: 640px) {
    .stat-label {
        font-size: 1rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
}

@media (min-width: 640px) {
    .scroll-indicator {
        bottom: 2rem;
    }
}

.scroll-mouse {
    width: 1.25rem;
    height: 2rem;
    border: 2px solid white;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
}

@media (min-width: 640px) {
    .scroll-mouse {
        width: 1.5rem;
        height: 2.5rem;
    }
}

.scroll-wheel {
    width: 0.25rem;
    height: 0.5rem;
    background-color: white;
    border-radius: 0.125rem;
    margin-top: 0.25rem;
    animation: pulse 2s infinite;
}

@media (min-width: 640px) {
    .scroll-wheel {
        height: 0.75rem;
        margin-top: 0.5rem;
    }
}

@keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40%,
    43% {
        transform: translateX(-50%) translateY(-10px);
    }

    70% {
        transform: translateX(-50%) translateY(-5px);
    }

    90% {
        transform: translateX(-50%) translateY(-2px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Services Section */
.services-section {
    padding: 3rem 0;
    background-color: #f9fafb;
}

@media (min-width: 640px) {
    .services-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .services-section {
        padding: 6rem 0;
    }
}

.section-header {
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

@media (min-width: 640px) {
    .service-card {
        padding: 2rem;
    }
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 2rem;
    height: 2rem;
    color: #3b65af;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

@media (min-width: 640px) {
    .service-icon {
        width: 2.5rem;
        height: 2.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .service-icon {
        width: 3rem;
        height: 3rem;
    }
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .service-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.service-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .service-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .service-features li {
        font-size: 0.875rem;
    }
}

.service-features li::before {
    content: "✓";
    color: #598238;
    font-weight: bold;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

/* Partners Section */
.partners-section {
    padding: 3rem 0;
    background-color: white;
}

@media (min-width: 640px) {
    .partners-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .partners-section {
        padding: 6rem 0;
    }
}

.partner-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .partner-categories {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        margin-bottom: 4rem;
    }
}

.partner-category {
    text-align: center;
}

.category-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, rgba(59, 101, 175, 0.1), rgba(89, 130, 56, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #3b65af;
}

@media (min-width: 640px) {
    .category-icon {
        width: 5rem;
        height: 5rem;
        margin-bottom: 1.5rem;
    }
}

.category-icon svg {
    width: 2rem;
    height: 2rem;
}

@media (min-width: 640px) {
    .category-icon svg {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .category-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.category-description {
    color: #6b7280;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .category-description {
        font-size: 1rem;
    }
}

/* Carousel */
.carousel-container {
    background-color: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem 0;
    overflow: hidden;
    margin-bottom: 3rem;
    border: 1px solid #f3f4f6;
}

@media (min-width: 640px) {
    .carousel-container {
        padding: 3rem 0;
    }
}

@media (min-width: 1024px) {
    .carousel-container {
        padding: 4rem 0;
        margin-bottom: 4rem;
    }
}

.carousel-title {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .carousel-title {
        font-size: 1.5rem;
        margin-bottom: 3rem;
    }
}

.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.carousel-track-container {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    width: 20%;
    min-width: 180px;
}

@media (max-width: 640px) {
    .partner-item {
        width: 50%;
        min-width: 140px;
    }
}

@media (min-width: 640px) and (max-width: 1024px) {
    .partner-item {
        width: 25%;
        min-width: 160px;
    }
}

.partner-logo {
    width: 120px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.4;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(100%);
}

@media (min-width: 640px) {
    .partner-logo {
        width: 140px;
        height: 70px;
    }
}

@media (min-width: 1024px) {
    .partner-logo {
        width: 160px;
        height: 80px;
    }
}

.partner-item:hover .partner-logo {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partner-item:hover {
    transform: translateY(-2px);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .carousel-indicators {
        margin-top: 3rem;
    }
}

.carousel-indicator {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .carousel-indicator {
        width: 0.75rem;
        height: 0.75rem;
    }
}

.carousel-indicator.active {
    background-color: #3b65af;
    transform: scale(1.2);
}

.carousel-indicator:hover {
    background-color: #9ca3af;
}

/* Partnership Benefits */
.partnership-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .partnership-benefits {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .benefits-title {
        font-size: 1.875rem;
        margin-bottom: 1.5rem;
    }
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .benefits-list {
        gap: 1.5rem;
    }
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .benefit-item {
        gap: 1rem;
    }
}

.benefit-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #f3f4f6;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b65af;
}

@media (min-width: 640px) {
    .benefit-icon {
        width: 3rem;
        height: 3rem;
    }
}

.benefit-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

@media (min-width: 640px) {
    .benefit-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.benefit-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .benefit-title {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
}

.benefit-description {
    color: #6b7280;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .benefit-description {
        font-size: 1rem;
    }
}

.partnership-cta {
    background: linear-gradient(135deg, rgba(59, 101, 175, 0.1), rgba(89, 130, 56, 0.1));
    border-radius: 1.5rem;
    padding: 1.5rem;
    text-align: center;
}

@media (min-width: 640px) {
    .partnership-cta {
        padding: 2rem;
    }
}

.cta-icon {
    width: 6rem;
    height: 6rem;
    background-color: #3b65af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

@media (min-width: 640px) {
    .cta-icon {
        width: 8rem;
        height: 8rem;
        margin-bottom: 1.5rem;
    }
}

.cta-icon svg {
    width: 3rem;
    height: 3rem;
}

@media (min-width: 640px) {
    .cta-icon svg {
        width: 4rem;
        height: 4rem;
    }
}

.cta-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.cta-description {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .cta-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 3rem 0;
    background-color: #1f2937;
    color: white;
}

@media (min-width: 640px) {
    .contact-section {
        /* padding: 4rem 0; */
    }
}

@media (min-width: 1024px) {
    .contact-section {
        /* padding: 6rem 0; */
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.contact-form-container {
    background-color: #374151;
    border-radius: 1rem;
    padding: 1.5rem;
}

@media (min-width: 640px) {
    .contact-form-container {
        padding: 2rem;
    }
}

.form-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .form-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .contact-form {
        gap: 1.5rem;
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #4b5563;
    border: 1px solid #6b7280;
    border-radius: 0.5rem;
    color: white;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {

    .form-input,
    .form-select,
    .form-textarea {
        font-size: 1rem;
    }
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #3b65af;
    box-shadow: 0 0 0 2px rgba(59, 101, 175, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Contact Information */
.company-info {
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .company-info {
        margin-bottom: 3rem;
    }
}

.company-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .company-brand {
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .company-brand {
        justify-content: flex-start;
    }
}

.company-logo-link {
    display: block;
    transition: transform 0.3s ease;
}

.company-logo-link:hover {
    transform: scale(1.05);
}

.company-logo {
    width: 6rem;
    height: 6rem;
    object-fit: contain;
}

@media (min-width: 640px) {
    .company-logo {
        width: 8rem;
        height: 8rem;
    }
}

@media (min-width: 1024px) {
    .company-logo {
        width: 10rem;
        height: 10rem;
    }
}

.company-description {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

@media (min-width: 640px) {
    .company-description {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .company-description {
        text-align: left;
    }
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .contact-details {
        gap: 2rem;
    }
}

.contact-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #598238;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .contact-section-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .contact-items {
        gap: 1rem;
    }
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .contact-item {
        gap: 1rem;
    }
}

.contact-icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: #598238;
    margin-top: 0.125rem;
}

@media (min-width: 640px) {
    .contact-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.contact-label {
    font-weight: 500;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .contact-label {
        font-size: 1rem;
    }
}

.contact-value {
    color: #d1d5db;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .contact-value {
        font-size: 1rem;
    }
}

.office-hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #d1d5db;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .office-hours {
        font-size: 1rem;
    }
}

.office-hour {
    display: flex;
    justify-content: space-between;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .social-links {
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .social-links {
        justify-content: flex-start;
    }
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #374151;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .social-link {
        width: 3rem;
        height: 3rem;
    }
}

.social-link:hover {
    color: #598238;
    background-color: #4b5563;
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

@media (min-width: 640px) {
    .social-link svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

/* Footer */
.footer {
    border-top: 1px solid #374151;
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
}

@media (min-width: 640px) {
    .footer {
        margin-top: 4rem;
        padding-top: 2rem;
    }
}

.footer-text {
    color: #9ca3af;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .footer-text {
        font-size: 1rem;
    }
}

.footer-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

@media (min-width: 640px) {
    .footer-links {
        flex-direction: row;
        gap: 1.5rem;
        margin-top: 1rem;
    }
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

@media (min-width: 640px) {
    .footer-link {
        font-size: 0.875rem;
    }
}

.footer-link:hover {
    color: #598238;
}

/* Form Messages */
.form-success {
    background-color: rgba(89, 130, 56, 0.2);
    border: 1px solid #598238;
    color: #598238;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.form-error {
    background-color: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    color: #ef4444;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

/* Performance optimizations */
.content-hidden {
    opacity: 0;
    visibility: hidden;
}

.content-visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 0.75rem;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #3b65af;
    outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .navbar,
    .mobile-menu,
    .hero-carousel,
    .carousel-container,
    .scroll-indicator {
        display: none !important;
    }
}

/* Enhanced Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: #4c51bf;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(76, 81, 191, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: scale(1);
}

/* Show button */
.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

/* Hover effect - subtle color change */
.back-to-top-btn:hover {
    background: #5a67d8;
}

/* Click animation - disappear briefly */
.back-to-top-btn.clicked {
    opacity: 0;
    transform: scale(0.75);
}

/* Arrow icon */
.arrow-icon {
    width: 16px;
    height: 16px;
}

/* Responsive design */
@media (min-width: 640px) {
    .back-to-top-btn {
        width: 40px;
        height: 40px;
        bottom: 2.5rem;
        right: 1.5rem;
    }

    .arrow-icon {
        width: 20px;
        height: 20px;
    }
}

/* Accessibility - Focus styles */
.back-to-top-btn:focus {
    outline: 2px solid #4c51bf;
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .back-to-top-btn {
        transition: opacity 0.3s ease;
    }

    .back-to-top-btn.clicked {
        transform: none;
    }
}