css
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    color: #374151;
    line-height: 1.6;
}

::selection {
    background-color: #1f2937;
    color: white;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #1f2937;
    color: white;
}

.btn-primary:hover {
    background-color: #111827;
}

.btn-white {
    background-color: white;
    color: #1f2937;
}

.btn-white:hover {
    background-color: #f3f4f6;
    transform: scale(1.05);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background-color: white;
    color: #1f2937;
}

.btn-lg {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
}

.btn-submit {
    width: 100%;
    background-color: #1f2937;
    color: white;
    padding: 1.5rem;
    font-weight: 600;
}

.btn-submit:hover {
    background-color: #111827;
    transform: scale(1.02);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-box {
    width: 100px;
    height: auto;
    border-radius: 0.5rem;
    display: flex;
    justify-content: left;
}

.logo-text {
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.logo-info {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
}

.company-tagline {
    font-size: 0.75rem;
    color: #6b7280;
}

.nav-menu {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    color: #4b5563;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #1f2937;
}

.btn-header {
    display: none;
}

@media (min-width: 768px) {
    .btn-header {
        display: inline-flex;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(31, 41, 55, 0.95), rgba(17, 24, 39, 0.95));
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 48rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    /* margin-bottom: 1.5rem; */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: white;
}

.hero-badge span {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Stats */
.stats-container {
    position: relative;
    z-index: 10;
    margin-top: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background-color: #223370;
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-value {
    display: inline;
    font-size: 2.25rem;
    font-weight: bold;
    color: white;
}

.stat-suffix {
    display: inline;
    font-size: 2.25rem;
    font-weight: bold;
    color: white;
}

.stat-label {
    font-size: 0.875rem;
    color: #d1d5db;
    margin-top: 0.5rem;
}

/* Section Styles */
.section-badge {
    display: inline-block;
    background-color: #1f2937;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-badge-dark {
    display: inline-block;
    background-color: #1f2937;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto;
}

.section-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-content h2.section-title {
    line-height: 51px;
    margin-top: 0;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.about-point i {
    color: #1f2937;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.about-point p {
    color: #4b5563;
    margin-top: 2px;
}

.about-image-wrapper {
    position: relative;
}

/* .about-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1f2937, #4b5563);
    border-radius: 1rem;
    transform: rotate(3deg);
} */

.about-image {
    position: relative;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.image-caption {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-style: italic;
    color: #6b7280; /* subtle gray */
    text-align: center; /* optional */
}


.partner-section .about-image-wrapper {
    position: relative;
    margin: auto;
}



/* .partner-section .about-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1f2937, #4b5563);
    border-radius: 1rem;
    transform: rotate(3deg);
    width: 500px;
} */

.partner-section .about-image {
    position: relative;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 500px;
    height: auto;
    object-fit: cover;
}

@media (max-width: 767px) {
.partner-section .about-image {
    width: 100%;
}
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: #f2f2f2;
    border: 2px solid #f3f4f6;
    border-radius: 0.75rem;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: #1f2937;
    transform: translateY(-0.5rem);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #1f2937;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    color: white;
    font-size: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.service-description {
    color: #6b7280;
    line-height: 1.75;
}

/* Global Network Section */
.global-section {
    padding: 5rem 0;
    background-color: #1f2937;
    color: white;
}

.global-icon {
    font-size: 3rem;
    color: white;
    margin: 0 auto 1rem;
}

.text-white {
    color: white;
}

.text-light {
    color: #d1d5db;
}

.countries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.country-card {
    /* background-color: rgba(255, 255, 255, 0.05); */
    background-color: #223370;
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.country-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.country-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.country-header i {
    color: white;
    font-size: 1.5rem;
}

.country-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.country-card p {
    color: #d1d5db;
    font-size: 0.875rem;
}

.advantages-box {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.advantages-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.advantage-item i {
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.advantage-item p {
    color: #d1d5db;
    margin-top: 0;
}

/* Industries Section */
.industries-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background-color: white;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.accordion-item:hover {
    border-color: #1f2937;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.accordion-header:hover {
    background-color: #f9fafb;
}

.accordion-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.accordion-icon {
    width: 3rem;
    height: 3rem;
    background-color: #1f2937;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.accordion-icon i {
    color: white;
    font-size: 1.5rem;
}

.accordion-title-wrapper {
    flex: 1;
}

.accordion-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
}

.accordion-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.accordion-arrow {
    color: #6b7280;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

/* .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
} */

.accordion-content {
    display: none;
}

.positions-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 500px;
    gap: 2.5rem;               /* space between text & image */
    padding: 0 1.5rem;         /* left & right padding */
    align-items: start;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem; /* tight, readable */
}


@media (max-width: 1200px) {
    .positions-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }

    .positions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .positions-image {
        width: 100%;
        order: -1; /* image on top */
    }
}

@media (max-width: 640px) {
    .positions-grid {
        grid-template-columns: 1fr;
    }
}


.positions-image {
    width: 450px;
}

.positions-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.75rem;
}


/* .positions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1rem 2rem;
}

@media (min-width: 768px) {
    .positions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .positions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
} */

.position-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4b5563;
}

.position-item i {
    color: #1f2937;
    font-size: 1rem;
    flex-shrink: 0;
}

.position-item span {
    font-size: 0.875rem;
}

.fill-rate-box {
    margin: 1.5rem 2rem 1.5rem 2rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
}

.fill-rate-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.fill-rate-text {
    font-size: 0.875rem;
    color: #4b5563;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background-color: white;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #e5e7eb;
    top: 0;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.timeline-left {
    justify-content: flex-start;
}

.timeline-right {
    justify-content: flex-end;
}

.timeline-left .timeline-content {
    margin-right: auto;
    width: 45%;
    text-align: right;
}

.timeline-right .timeline-content {
    margin-left: auto;
    width: 45%;
    text-align: left;
}

.timeline-content {
    background-color: #f2f2f2;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-content:hover {
    border-color: #1f2937;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.timeline-left .timeline-header {
    flex-direction: row-reverse;
}

.timeline-right .timeline-header {
    flex-direction: row;
}

.timeline-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-icon i {
    color: white;
    font-size: 1.25rem;
}

.timeline-info {
    flex: 1;
}

.timeline-day {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
}

.timeline-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #1f2937;
}

.timeline-description {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.75;
}

.timeline-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 4rem;
    background-color: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border: 4px solid white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .timeline-line {
        left: 2rem;
    }
    
    .timeline-item {
        padding-left: 5rem;
    }
    
    .timeline-left .timeline-content,
    .timeline-right .timeline-content {
        width: 100%;
        text-align: left;
        margin: 0;
    }
    
    .timeline-left .timeline-header,
    .timeline-right .timeline-header {
        flex-direction: row;
    }
    
    .timeline-number {
        left: 2rem;
        width: 3rem;
        height: 3rem;
        font-size: 1rem;
    }
}

/* Process Section
.process-section {
    padding: 5rem 0;
    background-color: white;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #e5e7eb;
}

@media (min-width: 768px) {
    .timeline-line {
        display: block;
    }
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

@media (min-width: 768px) {
    .timeline-left {
        flex-direction: row;
    }

    .timeline-right {
        flex-direction: row-reverse;
    }

    .timeline-left .timeline-content {
        text-align: right;
    }

    .timeline-right .timeline-content {
        text-align: left;
    }
}

.timeline-content {
    flex: 1;
    background-color: white;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: #1f2937;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .timeline-left .timeline-header {
        flex-direction: row-reverse;
    }
}

.timeline-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-icon i {
    color: white;
    font-size: 1.25rem;
}

.timeline-day {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
}

.timeline-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #1f2937;
}

.timeline-description {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.75;
}

.timeline-number {
    display: none;
    width: 4rem;
    height: 4rem;
    background-color: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border: 4px solid white;
}

@media (min-width: 768px) {
    .timeline-number {
        display: flex;
    }
} */

/* Why Choose Us Section */
.why-choose-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .differentiators-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .differentiators-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.differentiator-card {
    background-color: #f2f2f2;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.differentiator-card:hover {
    border-color: #1f2937;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.5rem);
}

.differentiator-icon {
    width: 4rem;
    height: 4rem;
    background-color: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.differentiator-icon i {
    color: white;
    font-size: 2rem;
}

.differentiator-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.differentiator-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.75;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: #1f2937;
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

.contact-description {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-detail-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-detail-item h3 {
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.contact-detail-item p {
    color: #d1d5db;
}

.contact-detail-item p a {
    color: #fff;
}

.contact-form-wrapper {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-form label {
    color: #1f2937;
    font-weight: 600;
    font-size: 0.875rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1f2937;
}

.contact-form textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: #000;
    color: #9ca3af;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-box {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #4b5563, #6b7280);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-box span {
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
}

.footer-logo-text {
    color: white;
    font-weight: bold;
}

.footer-description {
    font-size: 0.875rem;
    line-height: 1.75;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 0;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 0;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
}

.whatsapp-btn i {
    color: white;
    font-size: 2rem;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 1rem;
        right: 1rem;
    }
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background-color: #1f2937;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast i {
    color: #10b981;
    font-size: 1.5rem;
}

/* Smooth Transitions */
button, a, input, textarea {
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #111;
    display: block;
}

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    padding: 2rem 1.5rem;
    transition: right 0.3s ease;
    z-index: 1002;
}

.mobile-menu.active {
    right: 0;
}

/* Close Button */
.mobile-menu-close {
    font-size: 2rem;
    background: none;
    border: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
}

/* Mobile Nav */
.mobile-nav {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-nav a {
    font-size: 1.1rem;
    color: #111;
    text-decoration: none;
}

/* Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Show only on mobile */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .desktop-nav {
        display: none;
    }
}

/*back to Top*/
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    display: flex;
    gap: 6px;
    padding: 21px 14px;
    color: #fff; /* base color */
    mix-blend-mode: difference;
    border: none;
    border-radius: 999px;
    font-size: 14px;
    background: transparent;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    align-items: center;
    flex-direction: column;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top-icon {
    width: 50px;
    height: auto;
    mix-blend-mode: difference;
}

/* Mobile */
@media (max-width: 768px) {
    .back-to-top {
        padding: 10px;
        border-radius: 50%;
        bottom: 90px;
        right: 0px;
    }

    .back-to-top-icon {
        width: 50px;
        height: auto;
    }
}
