/* Creative Contact Page Styles */

/* New Contact Hero Section */
.contact-hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

.hero-background-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.animated-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 107, 107, 0.2) 0%, transparent 50%);
}

.mesh-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    animation: meshFloat 12s ease-in-out infinite;
}

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

.circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 15%;
    animation-delay: 6s;
}

.circle-4 {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 30%;
    animation-delay: 9s;
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
    padding: 2rem 0;
}

.hero-text {
    color: white;
}

.hero-title-modern {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInUp 1s ease-out forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.highlight {
    background: linear-gradient(135deg, #014fb6, #9857eb, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #014fb6, #9857eb);
    border-radius: 2px;
    animation: underlineExpand 1s ease-out 1.2s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

.hero-subtitle-modern {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 500px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 1s ease-out 1s both;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #014fb6;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    font-weight: 500;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 1.2s both;
}

.contact-preview {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    max-width: 400px;
    width: 100%;
    animation: previewFloat 6s ease-in-out infinite;
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.preview-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f57;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #28ca42;
}

.preview-title {
    font-weight: 700;
    color: #1a202c;
    font-size: 1.125rem;
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.preview-field {
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
}

.field-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #014fb6, #9857eb);
    border-radius: 1px;
    animation: lineGlow 2s ease-in-out infinite;
}

.field-text {
    color: #64748b;
    font-weight: 500;
    font-size: 0.875rem;
}

.preview-button {
    background: linear-gradient(135deg, #014fb6, #9857eb);
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-top: 1rem;
    animation: buttonPulse 2s ease-in-out infinite;
}

/* Animations */

@keyframes meshFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

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

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

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

@keyframes underlineExpand {
    to {
        transform: scaleX(1);
    }
}

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

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes buttonPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Creative Contact Content */
.creative-contact-content {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.creative-contact-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.05) 0%, transparent 100%);
}

/* Contact Methods Grid */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.contact-method-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #014fb6, #9857eb);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #014fb6, #9857eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    transition: all 0.3s ease;
}

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

.method-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.method-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.method-link {
    color: #014fb6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    position: relative;
    text-align: center !important;
    direction: ltr !important;
    display: block !important;
    width: fit-content !important;
    margin: 0 auto !important;
}

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

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

/* Interactive Form Section - Floating Card Design */
.interactive-form-section {
    background: linear-gradient(135deg, #014fb6 0%, #9857eb 100%);
    border-radius: 30px;
    padding: 4rem;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.3);
}

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

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

.form-header {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

.interactive-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Floating Card Form Fields */
.form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.field-group {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(1, 79, 182, 0.1);
    overflow: hidden;
}

.field-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #014fb6, #9857eb);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.field-group:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.field-group:hover::before {
    transform: scaleX(1);
}

.field-group:focus-within {
    border-color: #014fb6;
    box-shadow: 0 20px 40px rgba(1, 79, 182, 0.2);
    transform: translateY(-5px);
}

.field-group:focus-within::before {
    transform: scaleX(1);
}

.field-group.full-width {
    grid-column: 1 / -1;
}

.form-field {
    width: 100%;
    padding: 0.5rem 0;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.textarea-field {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.6;
}

.field-label {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.form-field:focus + .field-label,
.form-field:not(:placeholder-shown) + .field-label {
    top: 0.5rem;
    left: 1rem;
    font-size: 0.875rem;
    color: #014fb6;
    background: white;
    padding: 0 0.5rem;
    border-radius: 5px;
    font-weight: 600;
}

/* Remove the old field-line since we're using floating cards */
.field-line {
    display: none;
}

.submit-button {
    background: linear-gradient(135deg, #014fb6 0%, #9857eb 100%);
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 20px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(1, 79, 182, 0.3);
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(1, 79, 182, 0.4);
}

.submit-button:hover::before {
    opacity: 1;
}

.submit-button:active {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(1, 79, 182, 0.3);
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.submit-button:hover .button-icon {
    transform: translateX(3px);
}

.button-ripple {
    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;
}

.submit-button:active .button-ripple {
    width: 300px;
    height: 300px;
}

/* Social Media Section */
.social-section {
    text-align: center;
    margin-top: 6rem;
}

.social-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
}

.social-subtitle {
    color: #64748b;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    text-decoration: none;
    color: #64748b;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 120px;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    color: #014fb6;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #014fb6, #9857eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

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

.social-name {
    font-weight: 600;
    font-size: 0.875rem;
}

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

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

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

/* Form States */
.form-field.error {
    border-bottom-color: #ef4444;
}

.form-field.valid {
    border-bottom-color: #10b981;
}

.field-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.form-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 2px solid #10b981;
    color: #065f46;
    padding: 1.25rem 1.75rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15);
    animation: slideInDown 0.5s ease-out;
}

.form-error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 2px solid #ef4444;
    color: #991b1b;
    padding: 1.25rem 1.75rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.15);
    animation: shake 0.5s ease-out;
}

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content-modern {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title-modern {
        font-size: 3rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .interactive-form-section {
        padding: 3rem 2rem;
    }
    
    .form-fields {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Floating card responsive adjustments */
    .field-group {
        padding: 1.25rem;
    }
    
    .field-group:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .contact-hero-modern {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-content-modern {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        padding: 1rem 0;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-title-modern {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-subtitle-modern {
        font-size: 1.125rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        text-align: center;
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.75rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .hero-visual {
        order: 2;
        display: flex;
        justify-content: center;
    }
    
    .floating-card {
        display: none;
    }
    
    .contact-preview {
        max-width: 350px;
        padding: 1.5rem;
    }
    
    .contact-method-card {
        padding: 2rem 1.5rem;
    }
    
    .interactive-form-section {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    /* Mobile floating card adjustments */
    .field-group {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .field-group:hover {
        transform: translateY(-3px);
    }
    
    .field-group:focus-within {
        transform: translateY(-3px);
    }
    
    .field-label {
        top: 1rem;
        left: 1rem;
        font-size: 0.9rem;
    }
    
    .form-field:focus + .field-label,
    .form-field:not(:placeholder-shown) + .field-label {
        top: 0.25rem;
        left: 0.75rem;
        font-size: 0.8rem;
    }
    
    .social-section .social-links {
        gap: 1rem !important;
        justify-content: center !important;
        align-items: center !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        display: flex !important;
        width: 100% !important;
    }
    
    .social-section .social-link {
        min-width: 100px !important;
        padding: 1rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Center Instagram and Facebook cards specifically on mobile */
    .social-section .social-links .social-link:nth-child(1),
    .social-section .social-links .social-link:nth-child(2) {
        flex: 0 0 auto !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .contact-hero-modern {
        min-height: 100vh;
        padding: 1.5rem 0;
    }
    
    /* Extra centering for Instagram and Facebook cards on small mobile */
    .social-section .social-links {
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 0.75rem !important;
    }
    
    .social-section .social-links .social-link:nth-child(1),
    .social-section .social-links .social-link:nth-child(2) {
        flex: 0 0 calc(50% - 0.375rem) !important;
        max-width: 120px !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero-content-modern {
        gap: 2rem;
        padding: 0.5rem 0;
    }
    
    .hero-title-modern {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        max-width: 95%;
    }
    
    .hero-stats {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-item {
        min-width: 70px;
    }
    
    .stat-number {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        line-height: 1.1;
    }
    
    .contact-preview {
        max-width: 280px;
        padding: 1rem;
    }
    
    .preview-header {
        padding: 0.75rem 1rem;
    }
    
    .preview-title {
        font-size: 0.9rem;
    }
    
    .preview-field {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .field-line {
        height: 2px;
    }
    
    .field-text {
        font-size: 0.8rem;
    }
    
    .preview-button {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .preview-content {
        gap: 1rem;
    }
}

@media (max-width: 360px) {
    .contact-hero-modern {
        min-height: 100vh;
        padding: 1rem 0;
    }
    
    .hero-content-modern {
        gap: 1.5rem;
        padding: 0.25rem 0;
    }
    
    .hero-title-modern {
        font-size: 1.75rem;
        line-height: 1.1;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle-modern {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.25rem;
        max-width: 98%;
    }
    
    .hero-stats {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .stat-item {
        min-width: 60px;
    }
    
    .stat-number {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
        line-height: 1.1;
    }
    
    .contact-preview {
        max-width: 250px;
        padding: 0.75rem;
    }
    
    .preview-header {
        padding: 0.5rem 0.75rem;
    }
    
    .preview-title {
        font-size: 0.8rem;
    }
    
    .preview-field {
        padding: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .field-line {
        height: 1.5px;
    }
    
    .field-text {
        font-size: 0.75rem;
    }
    
    .preview-button {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .preview-content {
        gap: 0.75rem;
    }
    
    /* Contact page social links centering - Mobile only */
    .creative-contact-content .social-section .social-links {
        justify-content: center !important;
        align-items: center !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }
    
    .creative-contact-content .social-section .social-links .social-link:nth-child(1),
    .creative-contact-content .social-section .social-links .social-link:nth-child(2) {
        flex: 0 0 calc(50% - 0.375rem) !important;
        max-width: 120px !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
}