/* Trust Card Contact Page - Option 1 with Frosted Glass */
:root {
    --brand-primary: #bb402a;
    --brand-primary-light: rgba(187, 64, 42, 0.1);
    --brand-primary-glow: rgba(187, 64, 42, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 48px rgba(0, 0, 0, 0.12);
    --text-dark: #333;
    --text-muted: #666;
}

/* Background with subtle gradient and pattern */
.trust-contact-wrapper {
    min-height: auto;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 50%, #f5f7fa 100%);
    position: relative;
    padding: 40px 20px;
    overflow: hidden;
}

/* Subtle wave pattern overlay */
.trust-contact-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--brand-primary-light) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--brand-primary-light) 0%, transparent 50%);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

/* Main card container */
.trust-card {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

/* Card layout - 2 sections for desktop/tablet */
.trust-card-inner {
    display: grid;
    grid-template-columns: 380px 1fr;
    min-height: auto;
}

/* Left side - Frosted glass wave panel with company info */
.trust-card-visual {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #d94e35 100%);
    position: relative;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

/* Frosted glass overlay on visual */
.trust-card-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trust-card:hover .trust-card-visual::before {
    opacity: 1;
}

/* Wave pattern SVG */
.trust-card-visual::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 100 Q 50 50 100 100 T 200 100' stroke='rgba(255,255,255,0.1)' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    opacity: 0.3;
    animation: wave-float 20s ease-in-out infinite;
}

@keyframes wave-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Visual content */
.trust-visual-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.trust-visual-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.trust-visual-content p {
    font-size: 0.9rem;
    color: white;
    opacity: 1;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.trust-visual-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.trust-icon-item {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-icon-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
}

/* Company info in visual panel (desktop/tablet only) */
.trust-card-company-visual {
    position: relative;
    z-index: 2;
    display: block;
}

.trust-card-company-visual .trust-company-info {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    padding: 25px;
    color: white;
}

.trust-card-company-visual .trust-company-info h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 18px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
}

.trust-card-company-visual .trust-company-info address {
    font-style: normal;
    line-height: 1.7;
    color: white;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.trust-card-company-visual .trust-company-info address b {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: white;
}

.trust-card-company-visual .trust-company-info .colored {
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-block;
    margin-top: 8px;
}

.trust-card-company-visual .trust-company-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.trust-card-company-visual .trust-company-info a:hover {
    color: white;
}

.trust-card-company-visual .trust-company-info i {
    margin-right: 6px;
}

.trust-card-company-visual .trust-map-container {
    margin-top: 18px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.trust-card-company-visual .trust-map-container iframe {
    width: 100%;
    height: 220px;
    display: block;
}

/* Hide the separate company section for desktop/tablet */
.trust-card-company {
    display: none;
}

/* Middle - Form content */
.trust-card-content {
    padding: 40px 50px;
    background: white;
    position: relative;
}

/* Form header - simplified */
.trust-form-header {
    margin-bottom: 25px;
}

.trust-form-header h3 {
    color: var(--brand-primary);
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
}

.trust-form-header p {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
    font-style: italic;
}

/* Form styling with icons */
.trust-contact-form {
    position: relative;
}

.trust-form-group {
    position: relative;
    margin-bottom: 18px;
}

.trust-form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.trust-form-group label .required {
    color: var(--brand-primary);
    font-size: 1.1em;
}

/* Input with icon */
.trust-input-wrapper {
    position: relative;
}

.trust-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #999;
    transition: color 0.3s ease;
    z-index: 1;
}

.trust-form-group input,
.trust-form-group select,
.trust-form-group textarea {
    width: 100%;
    padding: 11px 14px 11px 42px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fafbfc;
    font-family: inherit;
    color: #2c3e50;
}

.trust-form-group input::placeholder,
.trust-form-group textarea::placeholder {
    color: #94a3b8;
    font-style: italic;
}

.trust-form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.trust-form-group input:focus,
.trust-form-group select:focus,
.trust-form-group textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px var(--brand-primary-glow);
}

.trust-form-group input:focus ~ .trust-input-icon,
.trust-form-group select:focus ~ .trust-input-icon,
.trust-form-group textarea:focus ~ .trust-input-icon {
    color: var(--brand-primary);
}

/* Submit button */
.trust-submit-btn {
    width: 100%;
    padding: 13px 28px;
    background: var(--brand-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(187, 64, 42, 0.2);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.trust-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.trust-submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.trust-submit-btn:hover {
    background: #a33624;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(187, 64, 42, 0.3);
}

.trust-submit-btn:active {
    transform: translateY(0);
}

/* Right side - Company info with frosted glass */
.trust-card-company {
    background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 40px 30px;
    border-left: 1px solid #e5e7eb;
}

.trust-company-info {
    padding: 25px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.trust-company-info h4 {
    color: var(--brand-primary);
    font-size: 1.3rem;
    margin-bottom: 18px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
}

.trust-company-info address {
    font-style: normal;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.trust-company-info address b {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.trust-company-info .colored {
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-block;
    margin-top: 8px;
}

.trust-company-info a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.trust-company-info a:hover {
    color: var(--brand-primary);
}

.trust-company-info i {
    margin-right: 6px;
}

/* Map container with glass border */
.trust-map-container {
    margin-top: 18px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--glass-border);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.trust-map-container iframe {
    width: 100%;
    height: 220px;
    display: block;
}

/* Alert message styling */
#contact-alert {
    border-radius: 10px;
    margin-bottom: 15px;
    animation: slideIn 0.3s ease;
    font-size: 0.9rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success state */
.form-success .trust-submit-btn {
    background: #10b981;
}

.form-success .trust-submit-btn::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
}

/* Floating quick contact buttons */
.quick-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.quick-contact-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.quick-contact-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.quick-contact-btn.phone {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #d94e35 100%);
}

.quick-contact-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.quick-contact-btn i {
    font-size: 24px;
}

/* Responsive design */
@media (max-width: 1200px) {
    .trust-card-inner {
        grid-template-columns: 340px 1fr;
    }
    
    .trust-card-content {
        padding: 35px 40px;
    }
    
    .trust-card-visual {
        padding: 35px 25px;
    }
}

/* Tablet specific: 769px to 1024px - Keep company info in red panel */
@media (min-width: 769px) and (max-width: 1024px) {
    .trust-card-inner {
        grid-template-columns: 360px 1fr;
    }
    
    /* Keep company info visible in visual panel for tablet */
    .trust-card-company-visual {
        display: block;
    }
    
    /* Hide separate company section for tablet */
    .trust-card-company {
        display: none;
    }
    
    .trust-card-visual {
        padding: 35px 25px;
        justify-content: space-between;
    }
    
    .trust-visual-content {
        margin-bottom: 25px;
    }
    
    .trust-card-content {
        padding: 35px 30px;
    }
}

@media (max-width: 768px) {
    .trust-card-inner {
        grid-template-columns: 1fr;
    }
    
    /* Hide company info in visual panel for mobile */
    .trust-card-company-visual {
        display: none;
    }
    
    /* Show separate company section for mobile */
    .trust-card-company {
        display: block;
        background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
        padding: 35px 30px;
        border-left: none;
        border-top: 1px solid #e5e7eb;
    }
    
    .trust-card-company .trust-company-info {
        padding: 25px;
        background: var(--glass-bg);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid var(--glass-border);
        border-radius: 14px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    }
    
    .trust-card-company .trust-company-info h4 {
        color: var(--brand-primary);
        font-size: 1.3rem;
        margin-bottom: 18px;
        font-weight: 700;
        font-family: 'Raleway', sans-serif;
    }
    
    .trust-card-company .trust-company-info address {
        font-style: normal;
        line-height: 1.7;
        color: var(--text-dark);
        margin-bottom: 15px;
        font-size: 0.9rem;
    }
    
    .trust-card-company .trust-company-info address b {
        display: block;
        margin-bottom: 8px;
        font-size: 0.95rem;
    }
    
    .trust-card-company .trust-company-info .colored {
        color: var(--brand-primary);
        font-weight: 600;
        font-size: 1.05rem;
        display: inline-block;
        margin-top: 8px;
    }
    
    .trust-card-company .trust-company-info a {
        color: var(--text-muted);
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.9rem;
    }
    
    .trust-card-company .trust-company-info a:hover {
        color: var(--brand-primary);
    }
    
    .trust-card-company .trust-company-info i {
        margin-right: 6px;
    }
    
    .trust-card-company .trust-map-container {
        margin-top: 18px;
        border-radius: 10px;
        overflow: hidden;
        border: 2px solid var(--glass-border);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    }
    
    .trust-card-company .trust-map-container iframe {
        width: 100%;
        height: 220px;
        display: block;
    }
    
    .trust-card-visual {
        min-height: 200px;
        padding: 30px 20px;
        justify-content: center;
    }
    
    .trust-visual-content {
        margin-bottom: 0;
    }
    
    .trust-visual-content h2 {
        font-size: 1.4rem;
    }
    
    .trust-visual-content p {
        font-size: 0.85rem;
    }
    
    .trust-card-content {
        padding: 35px 30px;
    }
}

@media (max-width: 768px) {
    .trust-contact-wrapper {
        padding: 25px 15px;
    }
    
    .trust-card {
        border-radius: 16px;
    }
    
    .trust-card-visual {
        min-height: 180px;
        padding: 25px 20px;
    }
    
    .trust-visual-content h2 {
        font-size: 1.3rem;
    }
    
    .trust-card-content {
        padding: 30px 20px;
    }
    
    .trust-form-header h3 {
        font-size: 1.4rem;
    }
    
    .trust-card-company {
        padding: 30px 20px;
    }
    
    .trust-card-company .trust-company-info {
        padding: 20px;
    }
    
    .quick-contact-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .quick-contact-btn {
        width: 50px;
        height: 50px;
    }
    
    .quick-contact-btn i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .trust-contact-wrapper {
        padding: 20px 10px;
    }
    
    .trust-card-content {
        padding: 25px 18px;
    }
    
    .trust-card-company {
        padding: 25px 18px;
    }
    
    .trust-form-group input,
    .trust-form-group select,
    .trust-form-group textarea {
        padding: 10px 12px 10px 40px;
        font-size: 0.9rem;
    }
    
    .trust-submit-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .trust-visual-icons {
        gap: 12px;
    }
    
    .trust-icon-item {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .trust-map-container iframe {
        height: 200px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* Subtle wave pattern overlay */
.trust-contact-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--brand-primary-light) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--brand-primary-light) 0%, transparent 50%);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

/* Main card container */
.trust-card {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

/* Card layout */
.trust-card-inner {
    display: grid;
    grid-template-columns: 380px 1fr;
    min-height: 600px;
}

/* Left side - Frosted glass wave panel */
.trust-card-visual {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #d94e35 100%);
    position: relative;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* Frosted glass overlay on visual */
.trust-card-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trust-card:hover .trust-card-visual::before {
    opacity: 1;
}

/* Wave pattern SVG */
.trust-card-visual::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 100 Q 50 50 100 100 T 200 100' stroke='rgba(255,255,255,0.1)' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    opacity: 0.3;
    animation: wave-float 20s ease-in-out infinite;
}

@keyframes wave-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Visual content */
.trust-visual-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.trust-visual-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.trust-visual-content p {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.trust-visual-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.trust-icon-item {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-icon-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
}

/* Right side - Form content with glass header */
.trust-card-content {
    padding: 50px 60px;
    background: white;
    position: relative;
}

/* Frosted glass header for form */
.trust-form-header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.trust-form-header h3 {
    color: var(--brand-primary);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.trust-form-header p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Form styling with icons */
.trust-contact-form {
    position: relative;
}

.trust-form-group {
    position: relative;
    margin-bottom: 24px;
}

.trust-form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.trust-form-group label .required {
    color: var(--brand-primary);
}

/* Input with icon */
.trust-input-wrapper {
    position: relative;
}

.trust-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #999;
    transition: color 0.3s ease;
    z-index: 1;
}

.trust-form-group input,
.trust-form-group select,
.trust-form-group textarea {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.trust-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.trust-form-group input:focus,
.trust-form-group select:focus,
.trust-form-group textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px var(--brand-primary-glow);
}

.trust-form-group input:focus ~ .trust-input-icon,
.trust-form-group select:focus ~ .trust-input-icon,
.trust-form-group textarea:focus ~ .trust-input-icon {
    color: var(--brand-primary);
}

/* Submit button */
.trust-submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: var(--brand-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(187, 64, 42, 0.2);
    position: relative;
    overflow: hidden;
}

.trust-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.trust-submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.trust-submit-btn:hover {
    background: #a33624;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(187, 64, 42, 0.3);
}

.trust-submit-btn:active {
    transform: translateY(0);
}

/* Company info with frosted glass */
.trust-company-info {
    margin-top: 40px;
    padding: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.trust-company-info h4 {
    color: var(--brand-primary);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.trust-company-info address {
    font-style: normal;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.trust-company-info .colored {
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.trust-company-info a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.trust-company-info a:hover {
    color: var(--brand-primary);
}

.trust-company-info i {
    margin-right: 8px;
}

/* Map container with glass border */
.trust-map-container {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--glass-border);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.trust-map-container iframe {
    width: 100%;
    height: 300px;
    display: block;
}

/* Alert message styling */
#contact-alert {
    border-radius: 12px;
    margin-bottom: 20px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success state */
.form-success .trust-submit-btn {
    background: #10b981;
}

.form-success .trust-submit-btn::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
}

/* Floating quick contact buttons */
.quick-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.quick-contact-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.quick-contact-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.quick-contact-btn.phone {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #d94e35 100%);
}

.quick-contact-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.quick-contact-btn i {
    font-size: 24px;
}

/* Responsive design */
@media (max-width: 1024px) {
    .trust-card-inner {
        grid-template-columns: 320px 1fr;
    }
    
    .trust-card-content {
        padding: 40px 40px;
    }
}

@media (max-width: 768px) {
    .trust-contact-wrapper {
        padding: 30px 15px;
    }
    
    .trust-card-inner {
        grid-template-columns: 1fr;
    }
    
    .trust-card-visual {
        min-height: 300px;
        padding: 30px 20px;
    }
    
    .trust-visual-content h2 {
        font-size: 1.6rem;
    }
    
    .trust-card-content {
        padding: 30px 20px;
    }
    
    .trust-form-header {
        padding: 20px;
    }
    
    .trust-form-header h3 {
        font-size: 1.5rem;
    }
    
    .trust-company-info {
        padding: 20px;
    }
    
    .quick-contact-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .quick-contact-btn {
        width: 50px;
        height: 50px;
    }
    
    .quick-contact-btn i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .trust-card {
        border-radius: 16px;
    }
    
    .trust-form-group input,
    .trust-form-group select,
    .trust-form-group textarea {
        padding: 12px 14px 12px 44px;
        font-size: 0.95rem;
    }
    
    .trust-submit-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .trust-visual-icons {
        gap: 12px;
    }
    
    .trust-icon-item {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
