/* ============================================
   CONTACT PAGE STYLES - ENHANCED PROFESSIONAL DESIGN
   ============================================ */

/* Hero Section */
.contact-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('../assets/images/D12.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 120px;
    padding-bottom: 80px;
    margin-top: 0;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(13, 27, 42, 0.75) 100%);
    z-index: 1;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.contact-hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
}

.contact-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out;
}

.contact-hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

/* Animated Background Shapes */
.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-delay: 6s;
}

.shape-5 {
    width: 80px;
    height: 80px;
    bottom: 40%;
    right: 10%;
    animation-delay: 8s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translate(20px, 30px) rotate(270deg);
        opacity: 0.6;
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.1s both;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Floating Contact Buttons */
.floating-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    animation: floatUp 0.6s ease-out both;
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.phone-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.email-btn {
    background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
}

.form-btn {
    background: linear-gradient(135deg, var(--primary-blue, #1a365d) 0%, #4299e1 100%);
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.floating-btn::before {
    content: attr(title);
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.floating-btn:hover::before {
    opacity: 1;
}

/* Contact Info Section */
.contact-info-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(26, 54, 93, 0.2), transparent);
}

/* Section Headers */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue, #1a365d), #4299e1);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 1.5rem;
    font-weight: 400;
}

/* Contact Method Cards */
.contact-card {
    background: white;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(26, 54, 93, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue, #1a365d), #4299e1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(26, 54, 93, 0.15);
    border-color: rgba(26, 54, 93, 0.2);
}

.contact-card-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-blue, #1a365d) 0%, #4299e1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.25);
    transition: all 0.4s ease;
    position: relative;
}

.contact-card-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid rgba(26, 54, 93, 0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(26, 54, 93, 0.35);
}

.contact-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.contact-card:hover .contact-card-title {
    color: var(--primary-blue, #1a365d);
}

.contact-card-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Glassmorphism Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Icon Ripple Effect */
.icon-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(0);
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Contact Action Buttons */
.contact-action-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue, #1a365d) 0%, #4299e1 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.2);
}

.contact-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 54, 93, 0.3);
    color: white;
}

/* Trust Badges Section */
.trust-badges-section {
    margin-top: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.05) 0%, rgba(66, 153, 225, 0.05) 100%);
    border-radius: 20px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.trust-badge i {
    font-size: 2.5rem;
    color: var(--primary-blue, #1a365d);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.trust-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-badge:hover {
    transform: translateY(-5px);
}

.trust-badge:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #4299e1;
}

/* Office Locations Header */
.office-locations-header {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(26, 54, 93, 0.1);
}

.locations-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.locations-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
}

/* Office Location Cards */
.office-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(26, 54, 93, 0.1);
    position: relative;
    overflow: hidden;
}

.office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-blue, #1a365d), #4299e1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.office-card:hover::before {
    transform: scaleX(1);
}

.office-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 54, 93, 0.15);
    border-color: rgba(26, 54, 93, 0.2);
}

.office-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue, #1a365d) 0%, #4299e1 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.2);
    transition: all 0.3s ease;
}

.office-card:hover .office-icon {
    transform: scale(1.1) rotate(-5deg);
}

.office-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.office-city {
    font-size: 1rem;
    font-weight: 600;
    color: #4299e1;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.office-address {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    min-height: 80px;
}

.office-directions {
    display: inline-flex;
    align-items: center;
    color: var(--primary-blue, #1a365d);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(26, 54, 93, 0.05);
}

.office-directions:hover {
    color: white;
    background: linear-gradient(135deg, var(--primary-blue, #1a365d) 0%, #4299e1 100%);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.office-directions i {
    transition: transform 0.3s ease;
}

.office-directions:hover i {
    transform: translateX(3px);
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(26, 54, 93, 0.2), transparent);
}

.form-header {
    margin-bottom: 3rem;
}

.form-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue, #1a365d), #4299e1);
    border-radius: 2px;
}

.form-subtitle {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* Form Styles */
.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-control-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.form-control,
.form-select {
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus,
.form-select:focus {
    color: #333;
    background-color: #fff;
    border-color: var(--primary-blue, #1a365d);
    outline: 0;
    box-shadow: 0 0 0 4px rgba(26, 54, 93, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: #9ca3af;
    opacity: 1;
}

.form-text.text-muted {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.5rem;
    display: block;
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%231a365d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    padding-right: 3rem;
    appearance: none;
    cursor: pointer;
}

.form-select:hover {
    border-color: #c0c0c0;
}

/* Submit Button */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue, #1a365d) 0%, #4299e1 100%);
    border: none;
    color: white;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 220px;
    box-shadow: 0 4px 20px rgba(26, 54, 93, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 54, 93, 0.35);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-primary i {
    position: relative;
    z-index: 1;
}

.btn-block {
    display: inline-block;
    width: auto;
}

/* Form Progress Indicator */
.form-progress-wrapper {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(26, 54, 93, 0.05);
    border-radius: 12px;
}

.form-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(26, 54, 93, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    position: relative;
}

.form-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue, #1a365d) 0%, #4299e1 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
    width: 0%;
    position: relative;
    overflow: hidden;
}

.form-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.form-progress-text {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

/* Modern Form Styling */
.modern-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.modern-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue, #1a365d) 0%, #4299e1 50%, var(--primary-blue, #1a365d) 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.submit-btn {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.submit-btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

/* Alert Styles */
.alert {
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.alert-success {
    background: linear-gradient(135deg, #d1e7dd 0%, #badbcc 100%);
    color: #0f5132;
    border-left: 4px solid #0f5132;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c2c7 100%);
    color: #842029;
    border-left: 4px solid #842029;
}

.alert ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.alert ul li {
    margin-bottom: 0.5rem;
}

.alert ul li:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-hero-title {
        font-size: 3.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .form-title {
        font-size: 2.25rem;
    }
    
    .locations-title {
        font-size: 2rem;
    }
    
    .office-address {
        min-height: auto;
    }
    
    .contact-info-section,
    .contact-form-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        min-height: 80vh;
        padding-top: 100px;
        padding-bottom: 60px;
        background-attachment: scroll;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .contact-info-section {
        padding: 60px 0;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-card-title {
        font-size: 1.5rem;
    }
    
    .office-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .locations-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .contact-hero-section {
        min-height: 70vh;
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .office-card {
        padding: 1.5rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .btn-primary {
        width: 100%;
        padding: 1rem 2rem;
        min-width: auto;
    }
    
    .form-control,
    .form-select {
        padding: 0.75rem 1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .floating-contact-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .modern-form {
        padding: 2rem 1.5rem;
    }
    
    .trust-badges-section {
        padding: 2rem 1rem;
    }
    
    .trust-badge {
        padding: 1.5rem 0.5rem;
    }
    
    .trust-badge i {
        font-size: 2rem;
    }
}
