* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 20px;
    color: #7c3aed;
}

.logo img {
    max-height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: #7c3aed;
    cursor: pointer;
}

.li-item {
    font-size: 14px;
    font-weight: 500;
    color: #6B7280;
    cursor: pointer;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #7c3aed;
}




/* Main Navigation Menu */
nav > ul:first-of-type {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

nav > ul:first-of-type li {
    font-size: 14px;
    font-weight: 500;
}

nav > ul:first-of-type li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

nav > ul:first-of-type li a:hover {
    color: #7c3aed;
}

nav > ul:first-of-type li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #7c3aed;
    transition: width 0.3s ease;
}

nav > ul:first-of-type li a:hover::after {
    width: 100%;
}

nav > ul:first-of-type li a.active {
    color: #7c3aed;
}

nav > ul:first-of-type li a.active::after {
    width: 100%;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    nav > ul:first-of-type {
        display: none;
    }

    nav > ul:first-of-type.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        border-bottom: 1px solid #e5e7eb;
        padding: 120px 0;
        gap: 0;
    }

    nav > ul:first-of-type.active li {
        padding: 12px 20px;
        border-bottom: 1px solid #f3f4f6;
    }

    nav > ul:first-of-type.active li:last-child {
        border-bottom: none;
    }

    nav > ul:first-of-type.active li a {
        display: block;
    }

    .menu-toggle {
        display: block;
    }
}





/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0 40px;
    position: relative;
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    font-size: 24px;
    opacity: 0.8;
    border: 1px solid #d2cfcf;
    padding: 1px 12px;
    border-radius: 34px;
    background-color: white;
}

.floating-icon img {
    max-width: 40px;
    height: auto;
}

.icon-1 {
    top: 10%;
    left: 8%;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0s;
}

.icon-2 {
    top: 15%;
    right: 12%;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.icon-3 {
    top: 35%;
    left: 5%;
    animation: float 3s ease-in-out infinite;
    animation-delay: 1s;
}

.icon-4 {
    top: 40%;
    right: 8%;
    animation: float 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

.icon-5 {
    top: 60%;
    left: 10%;
    animation: float 3s ease-in-out infinite;
    animation-delay: 2s;
}

.icon-6 {
    top: 65%;
    right: 15%;
    animation: float 3s ease-in-out infinite;
    animation-delay: 2.5s;
}

.icon-7 {
    top: 80%;
    right: 10%;
    animation: float 3s ease-in-out infinite;
    animation-delay: 1.2s;
}

.icon-8 {
    top: 25%;
    left: 15%;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.8s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-badge {
    display: inline-block;
    background: #1e40af;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 20px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #111;
}

.hero h1 span {
    background: linear-gradient(135deg,
            #9159FA 0%,
            #2563EB 45%,
            #2563EB 55%,
            #9159FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 20px;
    color: #666;
    max-width: 733px;
    margin: 0 auto 40px;
    font-weight: 400;
}




.btn-large {
    padding: 14px 32px;
    font-size: 15px;
    border-radius: 10px;
}

.btn-primary {
    background: #9159FA;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}





/* FAQ Section */

.section-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    text-transform: none;
}

.section-title:first-child {
    margin-top: 0;
}

.faq-item {
    border: 1px solid #7B5CF6;
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 15px 20px;
    background-color: white;
    border: none;
    text-align: left;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: #fafafa;
}

.faq-question::after {
    content: '⌄';
    font-size: 18px;
    color: #666;
    transition: transform 0.3s;
}

.faq-question.active::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #fafafa;
}

.faq-answer-content {
    padding: 15px 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}












/* Footer Section */
.main-footer {
    background: #0B1120;
    color: #e0e0e0;
    padding: 80px 0 40px;
    font-family: 'Inter', sans-serif;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.brand-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #a0aec0;
    max-width: 420px;
}

.footer-contact-social {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 8px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item:hover {
    color: #8b5cf6;
}

.contact-item i {
    color: #8b5cf6;
    font-size: 18px;
    width: 20px;
    text-align: center;
}



.social-link {
    width: 36px;
    height: 36px;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: #8b5cf6;
    color: white;
    transform: translateY(-4px);
}

/* Navigates Container */
.navigates {
    display: flex;
    gap: 60px;
}

.footer-nav h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-nav ul li a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-nav ul li a:hover {
    color: #8b5cf6;
}

/* Subscribe Card */
.footer-subscribe {
    display: flex;
    justify-content: flex-end;
    max-height: 165px;

}

.subscribe-card {
    background: linear-gradient(135deg, #1E293B 0%, #0f172a 100%);
    padding: 32px 28px;
    border-radius: 16px;
    width: 100%;
    max-width: 340px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.subscribe-card h4 {
    color: white;
    font-size: 19px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-align: left;
}

.input-group {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    padding: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.input-group input {
    border: none;
    padding: 12px 16px;
    width: 100%;
    font-size: 14px;
    outline: none;
    color: #1a2233;
    font-family: 'Inter', sans-serif;
}

.input-group input::placeholder {
    color: #94a3b8;
}

.btn-arrow {
    background: #8b5cf6;
    color: white;
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.btn-arrow:hover {
    background: #7c3aed;
    transform: scale(1.05);
}

.btn-arrow i {
    font-size: 16px;
}

/* Bottom Bar */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-bottom p {
    color: #a0aec0;
    font-size: 14px;
    font-weight: 400;
}

.bottom-links {
    display: flex;
    gap: 32px;
}

.bottom-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    font-weight: 400;
}

.bottom-links a:hover {
    color: #8b5cf6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.8fr 1.2fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .navigates {
        gap: 40px;
    }

    .footer-subscribe {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .subscribe-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .navigates {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-contact-social {
        margin-top: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .bottom-links {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .navigates {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .subscribe-card {
        padding: 28px 24px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero,
.feature-card,
.privacy-card {
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* ================================================
    RESPONSIVE STYLES - TABLET AND MOBILE
    ================================================ */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 30px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
    }

    .footer-subscribe {
        grid-column: 1 / -1;
    }

    .subscribe-card {
        max-width: 100%;
    }

    .offer-content {
        gap: 40px;
    }

    .split-section .container {
        gap: 40px;
    }
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Header */
    header {
        padding: 15px 0;
    }

    .logo img {
        max-height: 32px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        gap: 15px;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .li-item {
        display: block;
        margin-bottom: 5px;
    }

    .btn-primary {
        padding: 10px 24px;
        font-size: 14px;
        width: fit-content;
        margin: 0 auto;
    }

    /* Hero Section */
    .hero {
        padding: 60px 0 30px;
        overflow: hidden;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .hero h1 br {
        display: none;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.6;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .floating-icon {
        display: none;
    }



    .btn-large {
        width: 100%;
        padding: 14px 24px;
    }




    .device-frame {
        flex-direction: column;
        padding: 10px;
        border-radius: 16px;
    }

    .app-sidebar {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        border-radius: 12px 12px 0 0;
        padding: 10px;
        gap: 10px;
    }

    .sidebar-icon.active::before {
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 3px;
        border-radius: 2px 2px 0 0;
        top: auto;
    }

    .sidebar-icon.download {
        margin-top: 0;
        margin-left: auto;
    }

    .device-screen {
        border-radius: 0 0 12px 12px;
    }

    .screen-header {
        padding: 10px 15px;
    }

    .header-left {
        gap: 10px;
        min-width: auto;
    }

    .search-bar {
        max-width: 150px;
    }

    .header-icons {
        gap: 10px;
    }

    .header-icons i:nth-child(1),
    .header-icons i:nth-child(2),
    .header-icons i:nth-child(3) {
        display: none;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .chat-list {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        max-height: 250px;
    }

    .chat-detail {
        padding: 15px;
    }

    /* Integrations */
    .integrations {
        padding: 50px 0;
    }

    .integrations h2 {
        font-size: 26px;
    }

    .integration-icons {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .integration-icon {
        width: 48px;
        height: 48px;
    }

    /* Limited Offer Section */
    .limited-offer {
        padding: 60px 0;
    }

    .offer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .offer-left {
        padding-right: 0;
    }

    .offer-left h2 {
        font-size: 28px;
    }

    .offer-description {
        font-size: 15px;
    }

    .offer-right {
        padding: 20px !important;
    }

    /* Features Section */
    .features {
        padding: 60px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-tags {
        gap: 10px;
    }

    .tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* Split Section */
    .split-section {
        padding: 60px 0;
    }

    .split-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-content h2 {
        font-size: 24px !important;
    }

    .split-content p {
        font-size: 15px;
    }

    .ai-features {
        text-align: left;
    }

    .split-visual {
        margin-top: 20px;
    }

    .ai-chat-mockup {
        max-width: 100%;
        padding: 20px;
        min-height: 350px;
    }

    /* Privacy Section */
    .privacy-section {
        padding: 60px 0;
    }

    .privacy-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    /* Testimonials */
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    /* Trusted Section */
    .trusted-section {
        padding: 30px 0 15px;
    }

    .trusted-logos {
        gap: 20px;
        flex-wrap: wrap;
    }

    .trusted-logos span {
        font-size: 16px;
    }

    /* CTA Section */
    .cta-section {
        padding: 30px 0 60px;
    }

    .cta-box {
        padding: 50px 20px;
        border-radius: 20px;
    }

    .cta-box h2 {
        font-size: 28px;
    }

    .cta-box p {
        font-size: 15px;
    }

    /* Footer */
    .main-footer {
        padding: 60px 0 20px;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-logo img {
        height: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .navigates {

        display: flex;
        flex-direction: row;
        gap: 121px;

    }

    .footer-contact-social {
        flex-direction: column;
        gap: 30px;
    }

    .footer-subscribe {
        justify-content: flex-start;
    }

    .subscribe-card {
        max-width: 100%;
        padding: 7px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .bottom-links {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
}

/* Extra Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 15px;
    }

    .section-title {
        font-size: 22px;
    }

    .integration-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .offer-left h2 {
        font-size: 24px;
    }

    .split-content h2 {
        font-size: 22px !important;
    }

    .cta-box h2 {
        font-size: 24px;
    }

    .cta-box p {
        font-size: 14px;
    }

    .message-preview {
        padding: 12px;
    }

    .preview-avatar,
    .preview-icon {
        width: 36px;
        height: 36px;
    }



    .input-group {
        flex-direction: column;
    }

    .btn-arrow {
        width: 100%;
        height: 48px;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 40px 0 30px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .mockup-section {
        padding: 30px 15px;
    }

    .ai-chat-mockup {
        min-height: 300px;
    }

}

/* Fix for very small screens (320px) */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .hero h1 {
        font-size: 22px;
    }

    .hero p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 18px;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .btn-primary {
        font-size: 13px;
        padding: 10px 16px;
    }

    .feature-card {
        padding: 24px 16px;
    }

    .cta-box {
        padding: 40px 15px;
    }

    .cta-box h2 {
        font-size: 22px;
    }

    .footer-brand .brand-desc {
        font-size: 14px;
    }
}

/* Contact Methods Section */
.contact-methods {
    padding: 24px 0;
    /* background-color: #f9fafb; */
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-card {
    background: white;
    padding: 20px 16px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #f1f5f9;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.icon-wrapper {
    width: 56px;
    height: 56px;
    background-color: #E9D8FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-wrapper i {
    font-size: 24px;
    color: #7F56D9;
}

.contact-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 12.21px;
    color: #4B506D;
    margin-bottom: 4px;
    line-height: 1.5;
    font-weight: 600;
}

.contact-link,
.contact-val {
    font-size: 14px;
    font-weight: 600;
    color: #7c3aed;
    text-decoration: none;
    transition: color 0.2s;
    margin-top: 4px;
}

.contact-link:hover {
    color: #6d28d9;
    text-decoration: underline;
}

/* Responsiveness for Contact Cards */
@media (max-width: 1200px) {
    .contact-grid {
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-methods {
        padding: 60px 0;
    }
}

@media (max-width: 640px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 30px 20px;
    }
}

/* Contact Section (Form & Offices) */
.contact-section {
    padding: 80px 0;
    background-color: white;
}

.contact-flex-container {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.form-wrapper {
    flex: 1;
    background-color: #F1EAFF;
    padding: 40px;
    border-radius: 20px;
}

.form-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 14px;
    color: #4B506D;
    margin-bottom: 32px;
    font-weight: 500;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.input-group-field label {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.input-group-field input,
.input-group-field textarea {
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background-color: white;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input-group-field input:focus,
.input-group-field textarea:focus {
    outline: none;
    border-color: #7F56D9;
    box-shadow: 0 0 0 4px rgba(127, 86, 217, 0.1);
}

.input-group-field textarea {
    min-height: 120px;
    resize: vertical;
    color: black;
}

.btn-send-message {
    width: 100%;
    padding: 14px;
    background: linear-gradient(to top, #8f5ced, #7339f1);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity 0.3s, transform 0.2s;
}

.btn-send-message:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Offices Styles */
.offices-wrapper {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.offices-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.offices-header p {
    font-size: 14px;
    color: #4B506D;
    margin-bottom: 24px;
    font-weight: 500;
}

.offices-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.office-location-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #F1F5F9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.office-location-card:hover {
    transform: translateX(4px);
}

.office-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.office-info p {
    font-size: 13px;
    color: #6B7280;
    font-weight: 500;
}

.office-timezone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #4B506D;
}

.interactive-map-card {
    background-color: #7256e6;
    padding: 30px;
    border-radius: 12px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
    margin-top: 10px;
}

.interactive-map-card:hover {
    background-color: #6146c9;
}

.interactive-map-card i {
    font-size: 28px;
}

.interactive-map-card span {
    font-size: 15px;
    font-weight: 600;
}

/* Responsiveness */
@media (max-width: 992px) {
    .contact-flex-container {
        flex-direction: column;
    }

    .offices-wrapper {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .form-wrapper {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}