/* Minimal CSS to replace Tailwind CDN */
/* Only includes the utilities actually used in the HTML */

/* Smooth scrolling utility */
.scroll-smooth {
    scroll-behavior: smooth;
}

/* Reset and base styles */
html {
    scroll-behavior: smooth;
}

/* Additional utility classes that might be useful */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.text-white {
    color: #ffffff;
}

.text-black {
    color: #000000;
}

.bg-white {
    background-color: #ffffff;
}

.bg-black {
    background-color: #000000;
}

.rounded {
    border-radius: 0.25rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Responsive utilities */
@media (max-width: 640px) {
    .sm\:hidden {
        display: none;
    }

    .sm\:block {
        display: block;
    }
}

@media (max-width: 768px) {
    .md\:hidden {
        display: none;
    }

    .md\:block {
        display: block;
    }
}

@media (max-width: 1024px) {
    .lg\:hidden {
        display: none;
    }

    .lg\:block {
        display: block;
    }
}

/* Main Website Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

.hero-bg {
    background-color: #1e40af;
    background-image: url('../../images/bg-header.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.15;
}

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

/* Form Glass Container - Optimized Size */
.form-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 580px;
    width: 100%;
}

.form-glass:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.text-shadow {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Inputs - Optimized Size */
.input-focus {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.625rem;
    background: white;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    line-height: 1.4;
    appearance: none;
    outline: none;
    min-height: 48px;
    font-family: inherit;
}

/* Custom Select Arrow */
.input-focus[type="select-one"],
select.input-focus {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.25rem 1.25rem;
    padding-right: 2.5rem;
    cursor: pointer;
}

/* Select hover and focus states */
select.input-focus:hover {
    border-color: #d1d5db;
}

select.input-focus:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
    transform: translateY(-1px);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ef4444' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
}

.input-focus:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
    transform: translateY(-1px);
}

.input-focus::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

/* Submit Button - Better Proportions */
.btn-primary {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    color: white;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 0.625rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.btn-secondary {
    background: #ef4444;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: #dc2626;
    transform: scale(1.05);
    color: white;
    text-decoration: none;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-item span {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.feature-icon {
    width: 2rem;
    height: 2rem;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.header.scrolled {
    background: #2a3139;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(31, 59, 140, 0.4);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0rem 0;
}

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

.logo-image {
    width: 130px !important;
    height: auto !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) !important;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.header-nav .contact-info {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.header-nav .contact-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.5rem;
}

.header-nav .contact-item i {
    color: #ffffff;
    font-size: 0.8rem;
}

.header-nav .contact-item a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.header-nav .contact-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.contact-separator {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    font-size: 0.9rem;
    margin: 0 0.25rem;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 10rem 0 4rem;
    position: relative;
    z-index: 20;
}

.hero-text {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
}

/* Form Title - Better Proportions */
.form-title h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2b3239;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-align: center;
}

/* Form Rows - Better Spacing */
.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.25rem;
}

/* Error Messages - Better Styling */
.error-message {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.375rem;
    display: none;
    font-weight: 500;
}

.error-message.show {
    display: block;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.input-focus.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

/* Form Disclaimer - Better Styling */
.form-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 1rem;
    opacity: 0.8;
}

/* Other Input Groups - Better Animation */
#other-depliant-group,
#other-format-group,
#other-format-ouvert-group,
#other-pliage-group,
#other-type-pliage-group,
#other-quantity-group,
#pliage-group,
#type-pliage-group {
    transition: all 0.3s ease;
    overflow: hidden;
}

#other-depliant-group.show,
#other-format-group.show,
#other-format-ouvert-group.show,
#other-pliage-group.show,
#other-type-pliage-group.show,
#other-quantity-group.show,
#pliage-group.show,
#type-pliage-group.show {
    animation: expandIn 0.3s ease-out;
}

@keyframes expandIn {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        max-height: 100px;
        transform: translateY(0);
    }
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.floating-element:nth-child(1) {
    top: 5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2) {
    top: 10rem;
    right: 5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(239, 68, 68, 0.2);
    animation: float 6s ease-in-out infinite;
    animation-delay: -2s;
}

.floating-element:nth-child(3) {
    bottom: 5rem;
    left: 25%;
    width: 4rem;
    height: 4rem;
    background: rgba(59, 130, 246, 0.2);
    animation: float 6s ease-in-out infinite;
    animation-delay: -4s;
}

/* Trust Section */
.trust-section {
    background: #ffffff;
    padding: 4rem 0;
    border-top: 1px solid #e2e8f0;
}

.trust-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #2b3239;
    margin-bottom: 3rem;
}

.trust-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.trust-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    max-width: 150px;
    height: 100px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 1rem;
}

.client-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    height: 100px;
}

.logo-placeholder {
    width: 160px;
    height: 80px;
    background: #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.logo-placeholder:hover {
    background: #cbd5e1;
    border-color: #94a3b8;
    transform: translateY(-2px);
}

.logo-placeholder::after {
    content: 'LOGO';
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* Specialist Section */
.specialist-section {
    background: #f9fafc;
    padding: 5rem 0;
}

.specialist-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: stretch;
    min-height: 500px;
}

.specialist-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.specialist-photo {
    width: 100%;
    max-width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.specialist-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
}

.specialist-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2b3239;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.specialist-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 2.5rem;
}

.specialist-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.specialist-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-icon-circle.orange {
    background: #fed7aa;
    color: #ea580c;
    border: 2px solid #fb923c;
}

.feature-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.4;
}

/* Projects Section */
.projects-section {
    background: #2b3239;
    padding: 5rem 0;
}

.projects-header {
    text-align: center;
    margin-bottom: 4rem;
}

.projects-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.projects-description {
    font-size: 1.125rem;
    color: #ffffff;
    line-height: 1.4;
    max-width: 600px;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 270px;
    overflow: hidden;
}

.project-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-photo {
    transform: scale(1.05);
}

/* Products Section */
.products-section {
    padding: 4rem 0;
    background: white;
}

.products-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2b3239;
    margin-bottom: 1rem;
}

.products-description {
    font-size: 1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
}

.product-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-photo {
    transform: scale(1.05);
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2b3239;
    margin-bottom: .75rem;
}

.product-description {
    color: #64748b;
    line-height: 1.3;
    font-size: 0.875rem;
}

/* Technology Section */
.technology-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #111922 0%, #2b3239 50%, #54606c 100%);
    ;
    position: relative;
    overflow: hidden;
}

.technology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.technology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.technology-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.technology-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.3;
    opacity: 0.95;
}

.technology-description {
    font-size: 1rem;
    color: white;
    line-height: 1.4;
    margin-bottom: 0;
    opacity: 0.9;
}

.technology-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-image-container {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    width: 100%;
}

.tech-photo {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    display: block;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: #f9f9fa;
}

.process-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2b3239;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.process-number {
    background: #2b3239;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    position: relative;
    z-index: 2;
}

.process-icon {
    background: #40a5de;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.2);
}

.process-step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2b3239;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.process-step-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Call to Action Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #111922 0%, #2b3239 50%, #54606c 100%);
    ;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03) 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.125rem;
    color: white;
    line-height: 1.4;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(234, 88, 12, 0.4);
    background: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
}

/* Footer Section */
.footer-section {
    background: #1f2937;
    padding: 4rem 0 2rem;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 0.95rem;
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-item i {
    color: #9ca3af;
    font-size: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.contact-details p,
.contact-item p {
    color: #d1d5db;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.footer-contact .contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact .contact-info p i {
    display: inline-block;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #374151;
    color: #d1d5db;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2b3239;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright p {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .header-nav {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-end;
    }

    .header-nav .btn-secondary {
        display: none;
    }

    .header-nav .contact-info {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        font-size: 0.8rem;
        gap: 0.75rem;
    }

    .header-nav .contact-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.4rem;
    }

    .contact-separator {
        font-size: 0.8rem;
        margin: 0 0.2rem;
    }

    .logo-image {
        width: 70px;
    }

    .trust-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .trust-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .trust-section {
        padding: 3rem 0;
    }

    .specialist-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .specialist-title {
        font-size: 2rem;
    }

    .specialist-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .form-glass {
        padding: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-bg {
        background-attachment: scroll;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0;
    }

    .header-nav {
        display: flex;
        align-items: center;
    }

    .header-nav .contact-info {
        display: none !important;
    }

    .header-nav .btn-secondary {
        display: block;
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    .logo-image {
        width: 70px;
    }

    .main-content {
        padding: 8rem 0 4rem;
    }

    .trust-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .trust-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .trust-section {
        padding: 3rem 0;
    }

    .logo-placeholder {
        width: 100px;
        height: 50px;
    }

    .specialist-section {
        padding: 3rem 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-title {
        font-size: 1.75rem;
        margin-bottom: 3rem;
    }

    .process-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .cta-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .cta-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
        width: auto;
        display: inline-block;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-brand {
        text-align: center;
        max-width: 100%;
    }

    .footer-navigation,
    .footer-contact,
    .footer-social {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
        text-align: left;
    }

    .social-links {
        justify-content: center;
    }

    .footer-section {
        padding: 2.5rem 0 1rem;
    }

    .footer-logo-img {
        height: 50px;
    }

    .specialist-title {
        font-size: 1.75rem;
    }

    .specialist-description {
        font-size: 1rem;
    }

    .specialist-feature {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .feature-icon-circle {
        align-self: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }

    .products-title {
        font-size: 2rem;
    }

    .products-section {
        padding: 3rem 0;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .projects-title {
        font-size: 2rem;
    }

    .projects-section {
        padding: 3rem 0;
    }

    .technology-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
    }

    .technology-title {
        font-size: 2rem;
        text-align: left;
    }

    .technology-subtitle {
        font-size: 1.1rem;
        text-align: left;
    }

    .technology-section {
        padding: 4rem 0;
    }

    .tech-image-container {
        padding: 2rem;
        margin-top: 1rem;
    }

    .process-title {
        font-size: 2rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .process-step {
        padding: 1.5rem 0.5rem;
    }

    .process-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .process-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .process-section {
        padding: 4rem 0;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-section {
        padding: 4rem 0;
    }

    .cta-button {
        font-size: 0.95rem;
        padding: 0.875rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-section {
        padding: 3rem 0 1.5rem;
    }
}

/* Responsive form layout */
@media (max-width: 768px) {
    .main-content {
        padding: 8rem 0 4rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 1rem;
    }

    .form-row .form-group {
        margin-bottom: 1rem;
    }

    .form-glass {
        padding: 2rem;
        max-width: 100%;
        width: calc(100% - 2rem);
        margin: 0 auto;
        box-sizing: border-box;
    }

    .form-title h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .input-focus {
        padding: 0.75rem 1rem;
        min-height: 44px;
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-bg {
        background-attachment: scroll;
    }

    .main-content {
        padding: 7rem 0 3rem;
    }

    .container {
        padding: 0 1rem;
    }

    .form-glass {
        padding: 1.5rem;
        border-radius: 1rem;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .form-title h2 {
        font-size: 1.375rem;
    }

    .input-focus {
        padding: 0.625rem 0.875rem;
        min-height: 42px;
        font-size: 0.875rem;
    }

    .btn-primary {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

    .form-disclaimer {
        font-size: 0.75rem;
    }
}

/* Thank You Page Styles */
.thank-you-section {
    background: linear-gradient(135deg, #1e40af 0%, #2b3239 100%);
    color: white;
    padding: 8rem 0 4rem;
    min-height: 100vh;
    display: flex;

    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    font-size: 4rem;
    color: #3fc1c3;
    margin-bottom: 2rem;
    animation: checkmark 0.6s ease-in-out;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.thank-you-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.confirmation-details {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item i {
    color: #3fc1c3;
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.next-steps {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: left;
}

.next-steps h3 {
    color: #3fc1c3;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.contact-urgency {
    text-align: center;
}

.contact-urgency p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.urgent-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3fc1c3;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.urgent-phone:hover {
    color: #059669;
    transform: scale(1.05);
}

.additional-services {
    padding: 5rem 0;
    background: #f9fafc;
}

.additional-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2b3239;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.service-icon {
    font-size: 3rem;
    color: #2b3239;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #2b3239;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Mobile Responsive Styles */
@media (max-width: 480px) {
    .header-nav .contact-info {
        display: none !important;
    }

    .thank-you-title {
        font-size: 2rem;
    }

    .thank-you-icon {
        font-size: 3rem;
    }

    .confirmation-details {
        padding: 1.5rem;
    }

    .detail-item {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .projects-title {
        font-size: 1.75rem;
    }

    .projects-description {
        font-size: 1rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2b3239;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.testimonials-description {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
}

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

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars .star {
    color: #fbbf24;
    font-size: 1.25rem;
    text-shadow: 0 1px 3px rgba(251, 191, 36, 0.3);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.25rem;
    font-size: 3rem;
    color: #2b3239;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2b3239;
    margin-bottom: 0.25rem;
}

.author-position {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2b3239;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-description {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
    border-color: #374b95;
    box-shadow: 0 8px 25px #374b9526;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2b3239;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 1.5rem;
    color: #374b95;
    transition: transform 0.3s ease;
    font-weight: 300;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Responsive Design for Testimonials and FAQ */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .testimonials-description {
        font-size: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
        padding-left: 1rem;
    }

    .faq-section {
        padding: 3rem 0;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-description {
        font-size: 1rem;
    }

    .faq-question {
        padding: 1.25rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .testimonials-title {
        font-size: 1.75rem;
    }

    .testimonials-grid {
        gap: 1rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .faq-title {
        font-size: 1.75rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
}

/* Rating Section - Professional Design */
.rating-section {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.rating-section:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.10);
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.star {
    font-size: 1.5rem;
    color: #fbbf24;
    text-shadow: none;
    transition: all 0.3s ease;
    animation: starGlow 2s ease-in-out infinite alternate;
}

.star:hover {
    transform: scale(1.1);
    color: #f59e0b;
}

@keyframes starGlow {
    0% {
        filter: drop-shadow(0 1px 2px #fbbf24);
    }

    100% {
        filter: drop-shadow(0 2px 8px #fbbf24);
    }
}

.rating-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2b3239;
    text-shadow: none;
}

.client-count {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    text-align: right;
    gap: 0.5rem;
}

.count-number {
    font-size: 1.75rem;
    font-weight: 900;
    color: #3fc1c3;
    text-shadow: none;
    line-height: 1;
    animation: countPulse 3s ease-in-out infinite;
}

@keyframes countPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.count-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    text-shadow: none;
    margin-top: 0.25rem;
}

/* Mobile Responsive for Rating Section */
@media (max-width: 768px) {
    .rating-section {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1.25rem;
        margin-top: 1.5rem;
    }

    .rating-stars {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        align-items: center;
    }

    .client-count {
        align-items: baseline;
        text-align: center;
        justify-content: center;
    }

    .count-number {
        font-size: 1.5rem;
    }

    .star {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .rating-section {
        padding: 1rem;
        margin-top: 1rem;
    }

    .count-number {
        font-size: 1.375rem;
    }

    .rating-text {
        font-size: 0.9rem;
    }

    .count-text {
        font-size: 0.8rem;
    }
}

/* Trust Section - Client Logo Slider */
.trust-logos-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 2rem 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 12px;
    padding: 1.5rem 0;
}

.trust-logos-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
    gap: 3rem;
    align-items: center;
    padding: 0 2rem;
}

.trust-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    max-width: 200px;
    height: 100px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 1rem;
}

img.client-logo {
    height: 77px !important;
}

.trust-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.client-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.trust-logo:hover .client-logo {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.trust-logos-slider:hover .trust-logos-track {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .trust-logos-track {
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .trust-logo {
        min-width: 100px;
        max-width: 120px;
        height: 70px;
        padding: 0.75rem;
    }
}

@media (max-width: 768px) {
    .trust-logos-track {
        gap: 2rem;
        padding: 0 1.5rem;
        animation-duration: 20s;
    }

    .trust-logo {
        min-width: 140px;
        max-width: 160px;
        height: 70px;
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .trust-logos-track {
        gap: 1.5rem;
        padding: 0 1rem;
        animation-duration: 15s;
    }

    .trust-logo {
        min-width: 140px;
        max-width: 160px;
        height: 60px;
        padding: 0.5rem;
    }
}

/* Ensure smooth scrolling on all devices */
@media (prefers-reduced-motion: reduce) {
    .trust-logos-track {
        animation: none;
    }
}

/* ============================================
   MULTISTEP CHAT-STYLE FORM
   ============================================ */

/* Chat Form Container */
.chat-form {
    padding: 1.5rem;
    max-width: 480px;
}

/* Progress Bar */
.form-progress {
    margin-bottom: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    width: 33.33%;
    background: linear-gradient(90deg, #ef4444, #dc2626);
    border-radius: 999px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    padding: 0 0.5rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.progress-step.active,
.progress-step.completed {
    opacity: 1;
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: #6b7280;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.progress-step.completed .step-number {
    background: #3fc1c3;
    color: white;
}

.progress-step.completed .step-number::after {
    content: '✓';
    font-size: 0.75rem;
}

.step-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-step.active .step-label {
    color: #dc2626;
}

.progress-step.completed .step-label {
    color: #3fc1c3;
}

/* Form Steps - CRITICAL: must use !important to override any conflicts */
.form-step {
    display: none !important;
    animation: fadeSlideIn 0.4s ease-out;
}

.form-step.active {
    display: block !important;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Chat Bubble */
.chat-bubble {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.chat-content {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-radius: 0 1rem 1rem 1rem;
    padding: 1rem 1.25rem;
    flex: 1;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.chat-content p {
    margin: 0;
    color: #1e293b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.chat-content p+p {
    margin-top: 0.5rem;
}

.chat-greeting {
    font-size: 1.1rem !important;
    font-weight: 600;
}

.chat-content strong {
    color: #b91c1c;
}

.user-name-display {
    font-weight: 700;
    color: #dc2626;
}

/* Chat Input Area */
.chat-input-area {
    margin-bottom: 1rem;
}

.chat-input-area .form-group {
    margin-bottom: 0.75rem;
}

.chat-input-area .form-group:last-child {
    margin-bottom: 0;
}

.chat-input {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}

.chat-input:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
    background: #ffffff;
}

.chat-input::placeholder {
    color: #9ca3af;
}

/* Chat Select Dropdown - Single Arrow */
select.chat-select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
    background-position: right 0.75rem center !important;
    background-repeat: no-repeat !important;
    background-size: 1.25rem 1.25rem !important;
    padding-right: 2.5rem !important;
    cursor: pointer;
}

select.chat-select:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ef4444' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
}

/* Buttons */
.btn-next {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-next:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.35);
}

.btn-next:active {
    transform: translateY(0);
}

.step-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.btn-back {
    flex: 0 0 auto;
    padding: 0.9rem 1.25rem;
    background: #f3f4f6;
    color: #4b5563;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
}

.step-buttons .btn-next,
.step-buttons .btn-primary {
    flex: 1;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit i {
    font-size: 0.9rem;
}

/* Form Disclaimer Update */
.chat-form .form-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.8rem;
    color: #6b7280;
}

.chat-form .form-disclaimer i {
    color: #3fc1c3;
}

/* Error state for inputs */
.chat-input.error {
    border-color: #ef4444 !important;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .chat-form {
        padding: 1.25rem;
        max-width: 100%;
    }

    .progress-steps {
        padding: 0;
    }

    .step-label {
        font-size: 0.65rem;
    }

    .step-number {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }

    .chat-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .chat-content {
        padding: 0.85rem 1rem;
    }

    .chat-content p {
        font-size: 0.9rem;
    }

    .step-buttons {
        flex-direction: column;
    }

    .btn-back {
        order: 2;
    }

    .step-buttons .btn-next,
    .step-buttons .btn-primary {
        order: 1;
    }
}

@media (max-width: 480px) {
    .chat-form {
        padding: 1rem;
    }

    .chat-bubble {
        gap: 0.5rem;
    }

    .chat-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .chat-content {
        padding: 0.75rem 0.9rem;
    }

    .btn-next,
    .btn-primary {
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
    }

    .btn-back {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* =================================
   GEO SECTION - Locations
   ================================= */
.geo-section {
    background: linear-gradient(135deg, #2b3239 0%, #1e40af 50%, #374b95 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.geo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.geo-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.geo-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.geo-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.location-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.location-header {
    margin-bottom: 1rem;
}

.location-map {
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
    display: block;
    width: 100%;
}

.location-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.location-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b3239;
    margin: 0;
}

.location-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-address {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: bold;
}

.location-address i {
    color: #ef4444;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.travel-time {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
    color: #0369a1;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(3, 105, 161, 0.15);
}

.travel-time i {
    font-size: 1rem;
    color: #0284c7;
}

.visitor-region {
    font-weight: 600;
    color: #2b3239;
}

.btn-directions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%) !important;
    color: white;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-directions:hover {
    background: linear-gradient(135deg, #2b3239, #32437f);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.35);
    color: white;
    text-decoration: none;
}

.btn-directions i {
    font-size: 1rem;
}

/* Responsive Geo Section */
@media (max-width: 768px) {
    .geo-section {
        padding: 3rem 0;
    }

    .geo-title {
        font-size: 1.75rem;
    }

    .geo-subtitle {
        font-size: 1rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .location-card {
        padding: 1.5rem;
    }

    .location-name {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .location-card {
        padding: 1.25rem;
    }

    .travel-time {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}