/* WhatsApp Floating Button - Ultra Specific Override */
html body .whatsapp-btn,
body .whatsapp-btn {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 60px !important;
    height: 60px !important;
    background: #25D366 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3) !important;
    transition: transform 0.3s ease !important;
    cursor: pointer !important;
    border: none !important;
    outline: none !important;
    z-index: 9999999 !important;
}

html body .whatsapp-btn:hover,
body .whatsapp-btn:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
}

html body .whatsapp-btn svg,
body .whatsapp-btn svg {
    width: 30px !important;
    height: 30px !important;
    pointer-events: none !important;
}

@media (max-width: 768px) {
    html body .whatsapp-btn,
    body .whatsapp-btn {
        bottom: 15px !important;
        right: 15px !important;
        width: 50px !important;
        height: 50px !important;
    }
    
    html body .whatsapp-btn svg,
    body .whatsapp-btn svg {
        width: 25px !important;
        height: 25px !important;
    }
}

/* Modern Corporate 7-Page Register Form */
.register-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.register-info-header {
    text-align: center;
    margin-bottom: 40px;
}

.register-info-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.register-info-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Enhanced Step Progress */
.step-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #007bff 0%, #28a745 100%);
    z-index: 1;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px;
    border-radius: 12px;
    background: #ffffff;
    border: 2px solid #e9ecef;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f8f9fa;
    border: 3px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #999;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.step-item.active .step-number {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-color: #007bff;
    color: white;
    box-shadow: 0 0 0 8px rgba(0, 123, 255, 0.2);
}

.step-item.completed .step-number {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-color: #28a745;
    color: white;
    box-shadow: 0 0 0 8px rgba(40, 167, 69, 0.2);
}

.step-title {
    font-size: 12px;
    color: #666;
    text-align: center;
    max-width: 100px;
    font-weight: 500;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.step-item.active .step-title {
    color: #007bff;
    font-weight: 600;
}

.step-item.completed .step-title {
    color: #28a745;
    font-weight: 600;
}

/* Enhanced Form Steps */
.form-step {
    display: none;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    animation: slideInUp 0.5s ease-out;
}

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

.step-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.step-header h3 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.step-header p {
    margin: 0;
    color: #666;
}

/* Enhanced Form Styling */
@media (max-width: 768px) {
.form-row {
flex-direction: column;
gap: 16px;
}

.form-header h2 {
font-size: 2rem;
}

.form-header p {
font-size: 1rem;
}
}

.form-row {
display: flex;
gap: 20px;
margin-bottom: 20px;
}

.form-group {
flex: 1;
margin-bottom: 20px;
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: color 0.3s ease;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.1);
}

.form-input.error {
    border-color: #dc3545;
    background-color: #fff8f8;
}

.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 120px;
    resize: vertical;
    transition: color 0.3s ease;
    background: #ffffff;
}

.form-textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.1);
}

.form-textarea.error {
    border-color: #dc3545;
    background-color: #fff8f8;
}

.form-input[type="file"] {
    padding: 20px;
    border: 2px dashed #cbd5e0;
    background: #f8f9fa;
    cursor: pointer;
}

.form-input[type="file"]:hover {
    border-color: #007bff;
    background: #f0f8ff;
}

.form-radio {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.form-radio label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    transition: color 0.3s ease;
}

.form-radio input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
}

.form-radio input[type="radio"]:checked + label {
    color: #007bff;
    font-weight: 600;
}

/* Person Section Styling */
.person-section {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.person-section h4 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Terms Content Styling */
.terms-content {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    max-height: 400px;
    overflow-y: auto;
}

.terms-content h4 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.terms-text {
    line-height: 1.6;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.terms-text p {
    margin: 0 0 15px 0;
    color: #555;
    font-size: 14px;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Enhanced Navigation Buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 2px solid #e9ecef;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

.btn-prev, .btn-next, .btn-submit {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-prev {
    background: #6c757d;
    color: white;
}

.btn-prev:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-next {
    background: #007bff;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.btn-next:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.btn-submit {
    background: #28a745;
    color: white;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

.btn-submit:hover {
    background: #20c997;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

/* Progress Indicators */
.progress-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 12px;
    color: #666;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.progress-step {
    padding: 8px 16px;
    border-radius: 8px;
    background: #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-step.active {
    background: #007bff;
    color: white;
}

.progress-step.completed {
    background: #28a745;
    color: white;
}

@media (max-width: 768px) {
    .register-info-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .register-info-subtitle {
        font-size: 1rem;
    }
}

/* Responsive Design for Register Form */
@media (max-width: 768px) {
    .register-form-wrapper {
        padding: 30px 0;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .step-progress {
        flex-direction: row;
        overflow-x: auto;
        padding: 15px;
        gap: 15px;
        justify-content: flex-start;
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }

    .step-progress::-webkit-scrollbar {
        display: none;
    }

    .step-item {
        flex-direction: column;
        align-items: center;
        padding: 12px 15px;
        gap: 10px;
        min-width: 120px;
    }

    .step-number {
        margin-bottom: 0;
        width: 40px;
        height: 40px;
    }

    .step-title {
        text-align: left;
        font-size: 14px;
        margin-bottom: 0;
    }

    .form-navigation {
        flex-direction: column;
        gap: 12px;
    }

    .btn-prev, .btn-next, .btn-submit {
        width: 100%;
    }
}

/* Small text styling */
small {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
    display: block;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Error message styling */
.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    display: block;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header Logo Styling */
.header-logo {
    height: 40px !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain !important;
}

.logo-link {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
}

.logo-link:hover {
    opacity: 0.8 !important;
    transition: opacity 0.3s ease !important;
    transform: scale(1.05);
}

/* Typewriter effect for headings */
.typewriter {
    overflow: hidden;
    border-right: 3px solid #6c757d;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: #6c757d;
    }
}

/* Wave animation for decorative elements */
.wave {
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(20deg);
    }
    75% {
        transform: rotate(-20deg);
    }
}

/* Shimmer effect for cards and sections */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

/* Bounce animations */
.bounce-in {
    animation: bounceIn 1s ease-out;
}

.bounce-slow {
    animation: bounceSlow 4s ease-in-out infinite;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translate(-50%, -50%);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translate(-50%, -50%);
    }
    70% {
        transform: scale(0.9) translate(-50%, -50%);
    }
    100% {
        transform: scale(1) translate(-50%, -50%);
    }
}

@keyframes bounceSlow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

/* Fade animations with different speeds */
.fade-in-fast {
    animation: fadeIn 0.3s ease-out forwards;
}

.fade-in-normal {
    animation: fadeIn 0.6s ease-out forwards;
}

.fade-in-slow {
    animation: fadeIn 1.2s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Staggered animations for lists and grids */
.stagger-fade > * {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.stagger-fade > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-fade > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-fade > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-fade > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-fade > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-fade > *:nth-child(6) { animation-delay: 0.6s; }
.stagger-fade > *:nth-child(7) { animation-delay: 0.7s; }
.stagger-fade > *:nth-child(8) { animation-delay: 0.8s; }

/* Parallax scroll effect */
.parallax-slow {
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.parallax-fast {
    will-change: transform;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading animations */
.loading-dots::after {
    content: '';
    animation: loadingDots 1.5s steps(4, end) infinite;
}

@keyframes loadingDots {
    0%, 20% {
        content: '';
    }
    40% {
        content: '.';
    }
    60% {
        content: '..';
    }
    80%, 100% {
        content: '...';
    }
}

/* Heartbeat animation for important elements */
.heartbeat {
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}
.text-center {
    text-align: center !important;
}

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

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

/* Better alignment for card content */
.supplier-card > *,
.client-card > * {
    text-align: center;
    align-self: center;
}

.supplier-card p,
.client-card p {
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
}

/* Enhanced button alignment */
.form-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.supplier-btn,
.client-btn {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Improved section alignment */
.contact-form-header,
.supplier-client-container,
.contact-form-container,
.office-location-container {
    text-align: center;
}

/* Enhanced animations for better user experience */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Additional animation classes */
.animate-slide-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Staggered animations for lists */
.stagger-animation > * {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-animation > *:nth-child(5) { animation-delay: 0.5s; }

/* Mobile Navigation Styles */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
    width: 24px;
    height: 24px;
}

.mobile-nav-toggle .hamburger-icon,
.mobile-nav-toggle .close-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav-toggle .close-icon {
    opacity: 0;
    transform: scale(0.8);
}

.mobile-nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav-menu.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-nav-header {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-nav .nav-link {
    font-size: 2rem;
    font-weight: 600;
    color: #343a40;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav .nav-link:hover {
    color: #6c757d;
}

.mobile-nav-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-top: 20px;
}

.lang-menu-mobile {
    display: flex;
    gap: 20px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social .social-link {
    color: #343a40;
    transition: color 0.3s ease;
}

.footer-social .social-link:hover {
    color: #6c757d;
}

@media (max-width: 992px) {
    .header-nav {
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-image {
        width: 300px;
        height: 300px;
    }
    
    .hero-image-bg {
        width: 250px;
        height: 250px;
    }
}


/* Modern Header Styles */
.modern-header {
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1001;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #dee2e6;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.whatsapp-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    background: #25D366;
    border-radius: 50px;
    border: 1px solid #128C7E;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

.whatsapp-modern:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    border-color: #0a6e3a;
}

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

.nav-link {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #6c757d;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #343a40;
}

.lang-dropdown {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #dee2e6;
    border-radius: 50px;
    padding: 8px 16px;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: #ced4da;
}

.flag-icon {
    width: 18px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 150px;
}

.lang-dropdown:hover .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: 14px;
}

.lang-option:hover {
    background: #f8f9fa;
}

.lang-option.active {
    background: #f0f8ff;
    color: #667eea;
    font-weight: 500;
}

.lang-option img {
    width: 18px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 120px 0 60px 0; /* Add more space at the top */
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(108,117,125,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(108,117,125,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(108,117,125,0.02)"/><circle cx="10" cy="50" r="0.5" fill="rgba(108,117,125,0.02)"/><circle cx="90" cy="50" r="0.5" fill="rgba(108,117,125,0.02)"/><circle cx="50" cy="90" r="0.5" fill="rgba(108,117,125,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.logo-img {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.2));
}

.hero-title {
    color: #343a40;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.hero-tagline {
    color: #6c757d;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.hero-subtitle {
    color: #868e96;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #6c757d;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background: #5a6268;
}

.btn-secondary {
    background: rgba(108, 117, 125, 0.1);
    color: #495057;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #6c757d;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(108, 117, 125, 0.2);
    transform: translateY(-3px);
    border-color: #5a6268;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible; /* Prevent image from being cut off */
}

.hero-image {
    width: 400px; /* Set a fixed width for both images */
    height: 400px; /* Set a fixed height for both images */
    object-fit: contain; /* Ensure the entire image is visible without distortion */
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: float 6s ease-in-out infinite;
}

.hero-image-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(108, 117, 125, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.slideshow-image {
    position: absolute;
    animation-duration: 10s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.slideshow-image:nth-child(1) {
    animation-name: hero-animation-1;
}

.slideshow-image:nth-child(2) {
    animation-name: hero-animation-2;
}

@keyframes hero-animation-1 {
    0%   { opacity: 0; transform: translateX(0) translateY(50px) rotate(0deg) scale(1); }
    10%  { opacity: 1; transform: translateX(0) translateY(0) rotate(0deg) scale(1); }
    45%  { opacity: 1; transform: translateX(0) translateY(-20px) rotate(0deg) scale(1); }
    50%  { opacity: 0; transform: translateX(50%) translateY(0) rotate(180deg) scale(0.5); }
    100% { opacity: 0; }
}

@keyframes hero-animation-2 {
    0%   { opacity: 0; }
    45%  { opacity: 0; transform: translateX(-50%) translateY(50px) rotate(-180deg) scale(0.5); }
    50%  { opacity: 0; transform: translateX(0) translateY(50px) rotate(-180deg) scale(0.5); }
    60%  { opacity: 1; transform: translateX(0) translateY(0) rotate(0deg) scale(1); }
    95%  { opacity: 1; transform: translateX(0) translateY(-20px) rotate(0deg) scale(1); }
    100% { opacity: 0; transform: translateX(50%) translateY(0) rotate(180deg) scale(0.5); }
}

/* About Section */
.about-section {
    /* padding: 40px 0; */
    background: #ffffff;
}

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

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .about-heading {
        font-size: 1.5rem;
    }

    .about-description p {
        font-size: 1rem;
    }
    
    /* Hero Section Mobile Styles */
    .hero-section {
        padding: 100px 0 80px 0;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-left {
        order: 1;
    }
    
    .hero-right {
        order: 2;
        margin-top: 40px;
    }
    
    .hero-logo {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .logo-img {
        width: 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .hero-image {
        width: 250px;
        height: 250px;
    }
    
    .hero-image-bg {
        width: 200px;
        height: 200px;
    }
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.about-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #6c757d 0%, #868e96 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 40px;
}

.about-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.1) 0%, rgba(134, 142, 150, 0.1) 100%);
}

.about-heading {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-description p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    justify-content: start;
}

@media (max-width: 992px) {
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .feature-item {
        padding: 30px 20px;
    }

    .feature-text h4 {
        font-size: 1.1rem;
    }

    .feature-text p {
        font-size: 0.9rem;
    }
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(108, 117, 125, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6c757d, #868e96);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(108, 117, 125, 0.15);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(108, 117, 125, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
}

.feature-item:hover .feature-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(108, 117, 125, 0.3);
}

.feature-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.feature-text p {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-text h4 {
    color: #495057;
}

.feature-item:hover .feature-text p {
    color: #5a6268;
}

.office-location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .office-location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

.office-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.8) 0%, rgba(134, 142, 150, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-text {
    text-align: center;
    color: white;
}

.gallery-text h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.gallery-text p {
    font-size: 1rem;
    margin: 0;
}

/* Alert Styling */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

@media (max-width: 768px) {
    .cta-content {
        text-align: center;
    }

    .cta-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .cta-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0 70px 0;
    }
    
    .hero-container {
        padding: 0 10px;
    }
    
    .hero-content {
        gap: 50px;
    }
    
    .hero-left {
        order: 1;
    }
    
    .hero-right {
        order: 2;
        margin-top: 50px;
    }
    
    .logo-img {
        width: 50px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .btn-primary, .btn-secondary {
        max-width: 240px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-image {
        width: 200px;
        height: 200px;
    }
    
    .hero-image-bg {
        width: 150px;
        height: 150px;
    }
    
    .hero-logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-title {
        font-size: 1.3rem;
        line-height: 1.4;
        margin-bottom: 12px;
        padding: 0 5px;
    }

    .cta-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 25px;
        padding: 0 5px;
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain2" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(108,117,125,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(108,117,125,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(108,117,125,0.03)"/><circle cx="10" cy="50" r="0.5" fill="rgba(108,117,125,0.03)"/><circle cx="90" cy="50" r="0.5" fill="rgba(108,117,125,0.03)"/><circle cx="50" cy="90" r="0.5" fill="rgba(108,117,125,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain2)"/></svg>');
    opacity: 0.5;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-cta-primary {
    background: #6c757d;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background: #5a6268;
}

.btn-cta-secondary {
    background: rgba(108, 117, 125, 0.1);
    color: #495057;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #6c757d;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(108, 117, 125, 0.2);
    transform: translateY(-3px);
    border-color: #5a6268;
}

.cta-decoration {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.cta-line {
    max-width: 200px;
    height: auto;
    opacity: 0.6;
}

/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid #dee2e6;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(108,117,125,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(108,117,125,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(108,117,125,0.01)"/><circle cx="10" cy="50" r="0.5" fill="rgba(108,117,125,0.01)"/><circle cx="90" cy="50" r="0.5" fill="rgba(108,117,125,0.01)"/><circle cx="50" cy="90" r="0.5" fill="rgba(108,117,125,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grain)"/></svg>');
    opacity: 0.3;
}

.footer-container {
    position: relative;
    z-index: 2;
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.1));
}

.footer-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #25D366;
    color: white;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    background: #128C7E;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h3.footer-title {
    color: #343a40;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #6c757d 0%, #868e96 100%);
    border-radius: 1px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #343a40;
    transform: translateX(5px);
}

.footer-bottom {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid #e9ecef;
    padding: 30px 0;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright p,
.footer-credits p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.footer-credit-link {
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-credit-link:hover {
    color: #343a40;
}

.credit-highlight {
    color: #e74c3c;
    font-weight: 600;
}

/* Remove old footer styles */
.et-l.et-l--footer,
.et_builder_inner_content,
.et_pb_section_0_tb_footer,
.et_pb_section_1_tb_footer,
.et_pb_row_0_tb_footer,
.et_pb_row_1_tb_footer,
.et_pb_column_0_tb_footer,
.et_pb_column_1_tb_footer,
.et_pb_column_2_tb_footer,
.et_pb_image_0_tb_footer,
.et_pb_image_1_tb_footer,
.et_pb_text_0_tb_footer,
.et_pb_text_1_tb_footer,
.libaxis {
    display: none !important;
}

@media (max-width: 992px) {
    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

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

@media (max-width: 768px) {
    .contact-form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-form-header .contact-form-title {
        font-size: 2rem;
    }

    .contact-form-header .contact-form-subtitle {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 40px 20px;
    }
}

@media (max-width: 992px) {
    .office-location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .office-location-title {
        font-size: 2rem;
    }

    .office-location-subtitle {
        font-size: 1rem;
    }
}

/* Modern Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(248, 249, 250, 0.5) 100%), url('../images/contact-hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(108,117,125,0.01)"/><circle cx="75" cy="75" r="1" fill="rgba(108,117,125,0.01)"/><circle cx="50" cy="10" r="0.5" fill="rgba(108,117,125,0.005)"/><circle cx="10" cy="50" r="0.5" fill="rgba(108,117,125,0.005)"/><circle cx="90" cy="50" r="0.5" fill="rgba(108,117,125,0.005)"/><circle cx="50" cy="90" r="0.5" fill="rgba(108,117,125,0.005)"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grain)"/></svg>');
    opacity: 0.2;
}

.contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-logo-img {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.2));
}

.contact-hero-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 25px;
    border-radius: 12px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: inline-block;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-hero-subtitle {
    color: #34495e;
    font-size: 1.1rem;
    margin: 20px 0 25px 0;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    border-radius: 8px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: inline-block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-list-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #6c757d 0%, #868e96 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    /* margin-top: 10px; */
    position: relative;
    overflow: hidden;
}

.price-list-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.price-list-btn:hover::before {
    left: 100%;
}

.price-list-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #5a6268 0%, #6c757d 100%);
}

/* Header Price List Button */
.header-nav .price-list-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #dee2e6;
    border-radius: 50px;
    padding: 8px 16px;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    vertical-align: middle;
    line-height: 1;
}

.header-nav .price-list-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.header-nav .price-list-btn span {
    line-height: 1;
}

.header-nav .price-list-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: #ced4da;
    color: #495057;
}

/* Footer Price List Button */
.footer-brand .price-list-btn {
    background: linear-gradient(135deg, #5a6268 0%, #6c757d 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer-brand .price-list-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(90, 98, 104, 0.3);
    background: linear-gradient(135deg, #495057 0%, #5a6268 100%);
}

/* Mobile Responsive for Price List Button */
@media (max-width: 992px) {
    /* Show all navigation items including price list button */
    .header-nav .nav-link {
        display: block;
    }
    
    /* Ensure price list button is visible */
    .header-nav .price-list-btn {
        display: flex;
    }
    
    /* Adjust header layout for mobile - smaller gap for one line */
    .header-nav {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 8px;
    }
}

/* Modern Terms Page Styles */
.terms-hero {
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.terms-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.terms-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.terms-hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

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

.terms-hero-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.terms-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

.terms-hero-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

.terms-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.terms-hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.terms-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

.terms-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.terms-hero-icon {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.terms-hero-icon:hover {
    transform: translateY(-5px);
}

/* Terms Content Section */
.terms-content-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
}

.terms-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #dee2e6, transparent);
}

.terms-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.terms-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.terms-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    padding: 50px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e9ecef;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.terms-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6c757d, #5a6268, #6c757d);
    opacity: 0.8;
}

.terms-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(108, 117, 125, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease;
}

.terms-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: #dee2e6;
}

.terms-item:hover::after {
    right: -30px;
    width: 250px;
    height: 250px;
}

.terms-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.terms-number::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #868e96, #6c757d);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.terms-item:hover .terms-number::before {
    opacity: 1;
}

.terms-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.terms-text h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
    position: relative;
}

.terms-text h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #6c757d, #5a6268);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.terms-item:hover .terms-text h3::after {
    width: 100px;
}

.terms-text p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    max-width: 100%;
}

/* Mobile Responsive for Terms Page */
@media (max-width: 768px) {
    .terms-hero {
        padding: 60px 0;
    }
    
    .terms-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .terms-hero-title {
        font-size: 2.5rem;
    }
    
    .terms-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-hero-right {
        order: -1;
    }
    
    .terms-image {
        max-width: 320px;
    }
    
    .terms-content-section {
        padding: 80px 0;
    }
    
    .terms-item {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 30px;
        text-align: center;
    }
    
    .terms-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin: 0 auto;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .terms-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .terms-item:hover .terms-text h3::after {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .terms-hero-title {
        font-size: 2rem;
    }
    
    .terms-hero-subtitle {
        font-size: 1rem;
    }
    
    .terms-image {
        max-width: 280px;
    }
    
    .terms-content-section {
        padding: 60px 0;
    }
    
    .terms-item {
        padding: 30px 20px;
        gap: 20px;
    }
    
    .terms-number {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
    }
    
    .terms-text p {
        font-size: 1rem;
    }
}

.supplier-client-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.supplier-client-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="supplier-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.8" fill="rgba(108,117,125,0.03)"/><circle cx="75" cy="75" r="0.8" fill="rgba(108,117,125,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(108,117,125,0.02)"/><circle cx="10" cy="50" r="0.5" fill="rgba(108,117,125,0.02)"/><circle cx="90" cy="50" r="0.5" fill="rgba(108,117,125,0.02)"/><circle cx="50" cy="90" r="0.5" fill="rgba(108,117,125,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23supplier-grain)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.supplier-client-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.supplier-client-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.supplier-card,
.client-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(108, 117, 125, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.supplier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 24px 24px 0 0;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 24px 24px 0 0;
}

.supplier-card::after,
.client-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108, 117, 125, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.supplier-card:hover::after,
.client-card:hover::after {
    opacity: 1;
}

.supplier-card:hover,
.client-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
    border-color: rgba(108, 117, 125, 0.15);
}

.supplier-icon,
.client-icon {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.supplier-icon {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.client-icon {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.supplier-icon svg,
.client-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    transition: all 0.3s ease;
    filter: none;
}

.supplier-card:hover .supplier-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
}

.client-card:hover .client-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.4);
}

.supplier-title,
.client-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    text-align: center;
}

.supplier-title {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.client-title {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.supplier-title::after,
.client-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    border-radius: 2px;
}

.supplier-title::after {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.client-title::after {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.supplier-btn,
.client-btn {
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    min-width: 160px;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.supplier-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.client-btn {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.supplier-btn::before,
.client-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.supplier-btn:hover::before,
.client-btn:hover::before {
    left: 100%;
}

.supplier-btn:hover {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
}

.client-btn:hover {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.4);
}

.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-form-title {
    color: #343a40;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-form-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: white;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.12);
    border: 1px solid rgba(108, 117, 125, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #6c757d 0%, #868e96 50%, #6c757d 100%);
    border-radius: 24px 24px 0 0;
}

.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* Enhanced form group styles with icon alignment */
.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group svg {
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.form-group:focus-within svg {
    color: #6c757d;
}

/* Add subtle background pattern to form wrapper */
.contact-form-wrapper {
    background: white;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.12);
    border: 1px solid rgba(108, 117, 125, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #6c757d 0%, #868e96 50%, #6c757d 100%);
    border-radius: 24px 24px 0 0;
}

.contact-form-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="form-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(108,117,125,0.02)"/><circle cx="75" cy="75" r="0.5" fill="rgba(108,117,125,0.02)"/><circle cx="50" cy="10" r="0.3" fill="rgba(108,117,125,0.01)"/><circle cx="10" cy="50" r="0.3" fill="rgba(108,117,125,0.01)"/><circle cx="90" cy="50" r="0.3" fill="rgba(108,117,125,0.01)"/><circle cx="50" cy="90" r="0.3" fill="rgba(108,117,125,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23form-grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.form-label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.form-label::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #6c757d 0%, #868e96 100%);
    transition: width 0.3s ease;
}

.form-group:focus-within .form-label::after {
    width: 30px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 18px 20px !important;
    border: 2px solid #e8eaed !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: #fafbfc !important;
    color: #2c3e50 !important;
    font-family: 'Open Sans', Arial, sans-serif !important;
    position: relative;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #95a5a6 !important;
    opacity: 1 !important;
}

.form-input:hover,
.form-textarea:hover {
    border-color: #d1d5db !important;
    background: #ffffff !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
}

.form-input:focus,
.form-textarea:focus {
    outline: none !important;
    border-color: #6c757d !important;
    background: white !important;
    box-shadow: 0 0 0 4px rgba(108, 117, 125, 0.1), 0 8px 25px rgba(0,0,0,0.08) !important;
    transform: translateY(-2px) !important;
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.error-message {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 8px;
    display: block;
    font-weight: 500;
    padding-left: 4px;
    animation: slideDown 0.3s ease;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-size: 14px;
    color: #666;
    background-color: #fff;
    line-height: 1.7em;
    font-weight: 500;
    margin: 0;
    padding: 0;
    opacity: 1 !important;
    animation: none !important;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    position: relative;
}

.submit-btn {
    background: linear-gradient(135deg, #6c757d 0%, #868e96 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(108, 117, 125, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #5a6268 0%, #6c757d 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(108, 117, 125, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.3);
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .form-input,
    .form-textarea {
        padding: 16px 18px;
        font-size: 14px;
    }
    
    .form-label {
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 16px 32px;
        font-size: 15px;
        min-width: 180px;
    }
    
    .contact-form-title {
        font-size: 2rem;
    }
    
    .contact-form-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .form-input,
    .form-textarea {
        padding: 14px 16px;
    }
    
    .submit-btn {
        width: 100%;
        max-width: none;
    }
    
    /* Responsive Supplier/Client Cards */
    .supplier-client-section {
        padding: 60px 0;
    }
    
    .supplier-client-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .supplier-card,
    .client-card {
        padding: 40px 30px;
    }
    
    .supplier-icon svg,
    .client-icon svg {
        width: 56px;
        height: 56px;
    }
    
    .supplier-title,
    .client-title {
        font-size: 1.5rem;
    }
    
    .supplier-btn,
    .client-btn {
        padding: 14px 28px;
        font-size: 14px;
        min-width: 140px;
    }
}

.office-location-section {
    padding: 80px 0;
    background: #ffffff;
}

.office-location-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.office-location-header {
    text-align: center;
    margin-bottom: 60px;
}

.office-location-title {
    color: #343a40;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.office-location-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

.office-location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .office-location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

.office-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.office-map iframe {
    border: none;
    border-radius: 20px;
}

.office-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.office-details h3 {
    color: #343a40;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.office-address,
.office-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.address-line,
.contact-email,
.contact-phone {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.decorative-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.decorative-container {
    display: flex;
    justify-content: center;
}

.decorative-line {
    max-width: 200px;
    height: auto;
    opacity: 0.6;
}

/* Modern Register Page Styles */
.register-hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(248, 249, 250, 0.8) 100%), url('https://dutch-fix.com/wp-content/uploads/2025/02/ss.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.register-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="register-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(108,117,125,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(108,117,125,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(108,117,125,0.01)"/><circle cx="10" cy="50" r="0.5" fill="rgba(108,117,125,0.01)"/><circle cx="90" cy="50" r="0.5" fill="rgba(108,117,125,0.01)"/><circle cx="50" cy="90" r="0.5" fill="rgba(108,117,125,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23register-grain)"/></svg>');
    opacity: 0.3;
}

.register-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.register-hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.register-hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.register-logo-img {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.2));
}

.register-hero-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
}

.register-hero-subtitle {
    color: #34495e;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.8);
    padding: 12px 20px;
    border-radius: 8px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
}

.register-info-section {
    padding: 80px 0;
    background: #ffffff;
}

.register-info-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.register-info-header {
    text-align: center;
    margin-bottom: 60px;
}

.register-info-title {
    color: #343a40;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.register-info-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

.register-form-wrapper {
    background: white;
    /* padding: 40px; */
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.modern-register-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

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

.form-radio {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    align-items: flex-start;
}

.form-radio label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    color: #495057;
    cursor: pointer;
}

.form-radio input[type="radio"] {
    margin: 0;
    margin-right: 5px;
}

/* Legacy styles removed - modern form styles now handle all input styling */

.et_pb_button {
    font-size: 20px;
    font-weight: 500;
    padding: .3em 1em;
    line-height: 1.7em;
    background-color: transparent;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    border: 2px solid;
    border-radius: 3px;
    transition-duration: .2s;
    transition-property: all;
    color: #2ea3f2;
    border-color: #2ea3f2;
}

.et_pb_button:hover {
    border-color: transparent;
    padding: .3em 2em .3em .7em;
    background-color: rgba(0,0,0,.05);
}

.et_pb_button.et_pb_bg_layout_light:hover {
    background-color: rgba(0,0,0,.05);
}

.et_pb_menu__wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.et_pb_menu__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.et_pb_menu__menu li {
    margin-left: 20px;
}

.et_pb_menu__menu a {
    color: #666;
    font-weight: 500;
}

.et_pb_menu__menu a:hover {
    color: #2ea3f2;
}

.et_pb_row {
    display: flex;
    margin: 0 -15px;
}

.et_pb_column {
    padding: 0 15px;
    flex: 1;
}

.et_pb_column_1_2 {
    width: 50%;
}

.et_pb_column_1_3 {
    width: 33.333%;
}

.et_pb_column_4_4 {
    width: 100%;
}

.et_pb_image img {
    max-width: 100%;
    height: auto;
}

.et_pb_text {
    margin-bottom: 30px;
}

.et_pb_text_inner p {
    margin-bottom: 1em;
}

.et_pb_text_inner p:last-child {
    margin-bottom: 0;
}

.et_pb_section {
    padding: 50px 0;
}

.et_pb_section.et_pb_with_background {
    background-color: #f8f9fa;
}

.et_pb_blurb h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.et_pb_blurb_description {
    line-height: 1.6;
}

/* Alert Styles */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    max-width: 300px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert ul {
    margin: 0;
    padding-left: 20px;
}

.error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 3px;
    display: block;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .header-nav {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .whatsapp-modern {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .whatsapp-modern span {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-logo {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-heading {
        font-size: 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    /* Modern Footer Responsive */
    .footer-top {
        padding: 60px 0 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .et_pb_row_0_tb_footer {
        flex-direction: column;
        gap: 30px;
    }
    
    .et_pb_column_0_tb_footer,
    .et_pb_column_1_tb_footer,
    .et_pb_column_2_tb_footer {
        text-align: center;
    }
    
    .et_pb_section_1_tb_footer {
        padding: 40px 0 20px 0 !important;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: auto;
        /* padding: 60px 0; */
    }
    
    .about-section,
    .cta-section {
        padding: 10px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    /* Modern Footer Mobile Responsive */
    .footer-top {
        padding: 40px 0 30px;
    }
    
    .footer-content {
        gap: 40px;
    }
    
    .footer-links {
        gap: 30px;
    }
    
    /* Register Page Mobile Responsive */
    .register-hero {
        padding: 60px 0 40px;
    }
    
    .register-hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        align-items: center;
    }
    
    .register-hero-left {
        align-items: center;
    }
    
    .register-info-container {
        padding: 0 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-radio {
        flex-direction: column;
        gap: 15px;
        margin-top: 10px;
        align-items: flex-start;
    }
    
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 10px 15px;
        gap: 10px;
    }
    
    .header-nav {
        width: 100%;
        justify-content: space-between;
    }
}

/* Alert Styling */
.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    animation: slideInRight 0.3s ease-out;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.error-title {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.error-list {
    margin: 0;
    padding-left: 20px;
}

.error-list li {
    margin-bottom: 5px;
    font-size: 14px;
}

.error-list li:last-child {
    margin-bottom: 0;
}

.alert-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    color: inherit;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.alert-close:hover {
    opacity: 1;
}

.alert-dismissible {
    padding-right: 40px;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.alert.fade-out {
    animation: slideOutRight 0.3s ease-out forwards;
}

/* Modern Terms Page */
.modern-terms {
    background: #f8fafc;
}

/* Header */
.modern-header1 {
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    top: 0;
    z-index: 1001;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #dee2e6;
}

.modern-header1 {
    text-align: center;
    margin-bottom: 50px;
}

.modern-header1 .terms-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
}

.modern-header1 .terms-subtitle {
    font-size: 16px;
    color: #64748b;
    margin-top: 10px;
}

/* Agreement Container */
.modern-agreement {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Card Style */
.modern-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px 30px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.modern-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

/* Number Badge */
.modern-badge {
    min-width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Text */
.modern-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #334155;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .modern-item {
        flex-direction: column;
    }

    .modern-badge {
        margin-bottom: 10px;
    }
}

#about-section {
    scroll-margin-top: 100px; /* adjust to header height */
}

/* Home Page */
/* Desktop View - Full Block Style */
.hero-container-home {
    padding: 0; /* Removed padding to touch the edges */
    width: 100%;
    height: 75dvh; 
    max-width: 100%; /* Changed from 1400px to 100% for full width */
    margin: 0;
    box-sizing: border-box;
}

.banner-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0; /* Set to 0 to remove rounded corners */
    /*background: #000;*/
    background: #ffffff;
}

.banner-img {
    position: absolute; 
    inset: 0; 
    width: 100%; 
    /*height: 100%; */
    object-fit: cover; 
    object-position: center; 
    display: block;
    transition: opacity 1s ease-in-out;
}

/* Mobile View Responsive */
@media (max-width: 768px) {
    .hero-container-home {
        padding: 0; /* Ensure no padding on mobile */
        /*height: 50dvh; */
        height: 25dvh;
    }

    .banner-frame {
        border-radius: 0; /* Ensure sharp corners on mobile */
    }
}


