* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    background: white;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img-full {
    height: 60px;
    width: 200px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #3b82f6;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #1e293b;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f8fafc;
    padding: 40px 0;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.carousel-slide {
    position: absolute;
    width: 85%;
    max-width: 1100px;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(0) scale(0.8);
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 3;
}

.carousel-slide.prev-slide {
    opacity: 0.6;
    transform: translateX(-92%) scale(0.9);
    z-index: 2;
}

.carousel-slide.next-slide {
    opacity: 0.6;
    transform: translateX(92%) scale(0.9);
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #1e293b;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
    z-index: 10;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 40px;
}

.carousel-btn.next {
    right: 40px;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(30, 41, 59, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #3b82f6;
    width: 28px;
    border-radius: 5px;
}

.dot:hover {
    background: rgba(30, 41, 59, 0.5);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 48px;
    color: #0f172a;
}

.section-heading-light {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 48px;
    color: white;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 1024px) {
    .section-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.left-panel {
    position: relative;
    padding-left: 40px;
}

.left-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(180deg, #3b82f6 0%, #1e293b 50%, #0f172a 100%);
    border-radius: 0 12px 12px 0;
    box-shadow: 2px 0 10px rgba(59, 130, 246, 0.3);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 48px;
    color: #0f172a;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: transparent;
}

.feature-item:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-number {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e293b 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-number {
    transform: scale(1.1);
}

.feature-text {
    color: #475569;
}

.content-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.content-box h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
    color: #0f172a;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.content-box h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 2px;
}

.content-box p {
    color: #475569;
    margin-bottom: 12px;
    text-align: justify;
}

.phone-mockup {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.app-preview {
    max-width: 300px;
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.phone-mockup:hover .app-preview {
    transform: scale(1.05);
}

/* Quote and About Us Section */
.quote-about-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 60px 0;
}

.quote-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .quote-about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.quote-panel {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 50px 40px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.quote-mark-large {
    font-size: 80px;
    color: rgba(59, 130, 246, 0.3);
    line-height: 1;
    margin-bottom: 20px;
}

.vision-quote {
    font-size: 1.5rem;
    line-height: 1.6;
    color: white;
    font-style: italic;
    margin: 0;
}

.about-panel {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.about-panel h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
    color: #0f172a;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.about-panel h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 2px;
}

.about-panel p {
    color: #475569;
    margin-bottom: 16px;
    line-height: 1.7;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    padding: 60px 0;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #fbbf24, #10b981);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.service-features,
.service-showcase {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-features {
    gap: 20px;
}

.service-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e293b 100%);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-content h3 {
    color: #1e293b;
    font-size: 1.125rem;
}

.service-showcase {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.service-showcase h3 {
    font-size: 2rem;
    margin-bottom: 28px;
    color: #0f172a;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.service-showcase h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #fbbf24);
    border-radius: 2px;
}

.service-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 14px 28px;
    background: #f1f5f9;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #475569;
    font-size: 0.95rem;
}

.tab-btn.active {
    background: linear-gradient(135deg, #3b82f6 0%, #1e293b 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.tab-btn:hover:not(.active) {
    background: #e2e8f0;
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.image-grid.hidden {
    display: none;
}

.image-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.image-grid img:hover {
    transform: scale(1.05);
}

/* Clients Section */
.clients-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.clients-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.clients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.client-card {
    background: white;
    padding: 36px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.client-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    padding: 12px;
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.client-card h3 {
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 1.25rem;
}

.client-card p {
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.6;
}

.client-link {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.client-link:hover {
    color: #f59e0b;
    transform: translateX(4px);
}

.client-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.client-link:hover::after {
    transform: translateX(4px);
}

.cta-box {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    padding: 56px;
    border-radius: 24px;
    margin-top: 56px;
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.3);
    position: relative;
    z-index: 1;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.cta-box h3 {
    font-size: 2.75rem;
    margin-bottom: 40px;
    color: #0f172a;
    text-align: center;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .cta-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cta-step {
    text-align: center;
}

.cta-step p {
    color: #0f172a;
    font-size: 1.05rem;
    line-height: 1.6;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.75rem;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(30, 41, 59, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

/* Adopt JSA Section */
.adopt-jsa-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 60px 0;
}

.adopt-jsa-section .cta-box {
    margin-top: 0;
}

.adopt-jsa-section .cta-box h2 {
    font-size: 2.75rem;
    margin-bottom: 40px;
    color: #0f172a;
    text-align: center;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us Section */
.why-choose-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 60px 0;
}

.features-horizontal {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .features-horizontal {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-horizontal {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.feature-number-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e293b 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 2rem;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-number-large {
    transform: scale(1.1) rotate(5deg);
}

.feature-card p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Product Section */
.product-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 60px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr 2fr;
    }
}

.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.product-content {
    color: white;
}

.product-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fbbf24;
    font-weight: 700;
}

.product-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #e2e8f0;
}

/* Testimonial */
.testimonial-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonial-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-card {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.3);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(251, 191, 36, 0.4);
}

.quote-mark {
    font-size: 4rem;
    color: rgba(30, 41, 59, 0.3);
    line-height: 1;
    font-family: Georgia, serif;
}

blockquote {
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 500;
    margin: 16px 0 24px;
    line-height: 1.7;
    font-style: italic;
    min-height: 100px;
}

cite {
    color: #1e293b;
    font-weight: 700;
    font-style: normal;
    font-size: 1.05rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active,
.testimonial-dot:hover {
    background: #fbbf24;
    transform: scale(1.2);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 64px;
    }
}

.contact-info h2 {
    font-size: 2.75rem;
    margin-bottom: 32px;
    font-weight: 700;
    position: relative;
    padding-bottom: 16px;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 2px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-item:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(8px);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    transition: transform 0.3s ease;
    font-size: 1.25rem;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-label {
    color: #94a3b8;
    font-size: 0.875rem;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-size: 1.125rem;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #fbbf24;
}

.contact-item p {
    color: white;
    margin: 0;
}

.company-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.brand-logo {
    width: 220px;
    height: auto;
    margin-bottom: 24px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(251, 191, 36, 0.3));
    transition: transform 0.3s ease;
}

.company-brand:hover .brand-logo {
    transform: scale(1.05);
}

.company-brand h3 {
    font-size: 2.75rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.company-brand p {
    color: #cbd5e1;
    font-size: 1.25rem;
    font-weight: 500;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(251, 191, 36, 0.2);
    height: 100%;
    min-height: 400px;
}

.location-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
}

/* Footer */
.footer {
    background: #0a0f1a;
    color: #94a3b8;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(251, 191, 36, 0.2);
    margin-top: auto;
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.footer p {
    margin: 0;
    font-size: 0.95rem;
}

/* Go to Top Button */
.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #0f172a;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.go-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.go-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.6);
}

.go-to-top:active {
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .logo {
        padding: 0;
    }
    
    .logo-img-full {
        height: 50px;
        width: 160px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-heading,
    .section-heading-light {
        font-size: 2rem;
    }
    
    .section {
        padding: 48px 0;
    }
    
    .location-map {
        height: 350px;
        min-height: 350px;
    }
    
    .map-container {
        min-height: 350px;
    }
    
    .contact-grid {
        gap: 32px;
    }
    
    .go-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Carousel mobile adjustments */
    .hero-carousel {
        padding: 20px 0;
    }
    
    .carousel-container {
        padding: 0 40px;
        min-height: 350px;
    }
    
    .carousel-slide {
        width: 90%;
    }
    
    .carousel-slide.prev-slide {
        transform: translateX(-95%) scale(0.85);
        opacity: 0.5;
    }
    
    .carousel-slide.next-slide {
        transform: translateX(95%) scale(0.85);
        opacity: 0.5;
    }
    
    .carousel-slide img {
        border-radius: 16px;
        max-height: 300px;
        object-fit: contain;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
    
    .carousel-dots {
        bottom: 15px;
        padding: 6px 12px;
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 20px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
