body {
            overflow-x: hidden;
        }
        .contact-page-hero {
            min-height: 80vh;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding-top: 100px;
        }
        .contact-page-hero::before {
            content: 'CONTACT';
            position: absolute;
            font-size: 15rem;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.03);
            letter-spacing: 2rem;
            animation: slideText 20s linear infinite;
            white-space: nowrap;
        }
        @keyframes slideText {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        .contact-hero-content {
            text-align: center;
            z-index: 2;
            animation: fadeInUp 1.2s ease;
            padding: 0 20px;
        }
        .contact-hero-content h1 {
            font-size: 6rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: 1.5rem;
            letter-spacing: -4px;
            line-height: 1;
        }
        .contact-hero-content .subtitle {
            font-size: 1.5rem;
            color: #dc2626;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
        }
        .contact-hero-content p {
            font-size: 1.2rem;
            color: #999;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }
        .contact-container {
            max-width: 1400px;
            margin: -100px auto 120px;
            padding: 0 20px;
            position: relative;
            z-index: 10;
        }
        .contact-main-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 5rem;
        }
        .contact-form-section {
            background: #fff;
            padding: 4rem;
            border-radius: 25px;
            box-shadow: 0 30px 80px rgba(0,0,0,0.12);
            animation: slideInLeft 1s ease;
            position: relative;
            overflow: hidden;
        }
        .contact-form-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #dc2626, #991b1b);
        }
        .contact-info-section {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .info-card {
            background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
            padding: 2.5rem;
            border-radius: 20px;
            color: #fff;
            animation: slideInRight 1s ease;
            transition: all 0.4s ease;
            border: 1px solid rgba(220, 38, 38, 0.2);
        }
        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(220, 38, 38, 0.3);
            border-color: #dc2626;
        }
        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-80px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(80px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .contact-form-section h2 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
            color: #000;
        }
        .contact-form-section .form-subtitle {
            color: #666;
            margin-bottom: 2.5rem;
            font-size: 1.1rem;
        }
        .form-row {
            margin-bottom: 2rem;
        }
        .form-row label {
            display: block;
            font-weight: 700;
            margin-bottom: 0.8rem;
            color: #000;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .form-row input,
        .form-row textarea {
            width: 100%;
            padding: 15px 18px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            background: #f9fafb;
        }
        .form-row input:focus,
        .form-row textarea:focus {
            outline: none;
            border-color: #dc2626;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(220,38,38,0.08);
            transform: translateY(-2px);
        }
        .form-row textarea {
            resize: vertical;
            min-height: 140px;
        }
        .submit-btn {
            width: 100%;
            padding: 18px;
            background: #000;
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
        }
        .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: #dc2626;
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(220,38,38,0.4);
        }
        .info-card h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .info-card h3 i {
            color: #dc2626;
            font-size: 1.8rem;
        }
        .info-detail {
            display: flex;
            align-items: start;
            gap: 1rem;
            margin-bottom: 1.2rem;
            padding: 1rem;
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        .info-detail:hover {
            background: rgba(220,38,38,0.1);
        }
        .info-detail i {
            font-size: 1.3rem;
            color: #dc2626;
            margin-top: 3px;
            min-width: 25px;
        }
        .info-detail div h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
            color: #dc2626;
        }
        .info-detail div p {
            color: #ccc;
            line-height: 1.7;
            font-size: 0.95rem;
        }
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        .social-links a {
            width: 50px;
            height: 50px;
            background: rgba(220,38,38,0.1);
            border: 2px solid rgba(220,38,38,0.3);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #dc2626;
            transition: all 0.4s ease;
            font-size: 1.2rem;
        }
        .social-links a:hover {
            background: #dc2626;
            color: #fff;
            transform: translateY(-5px) rotate(5deg);
            border-color: #dc2626;
        }
        .map-container {
            margin-top: 5rem;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0,0,0,0.15);
            animation: fadeInUp 1.5s ease;
        }
        .map-container iframe {
            width: 100%;
            height: 500px;
            border: none;
            display: block;
        }
        @media (max-width: 968px) {
            .contact-main-grid { grid-template-columns: 1fr; gap: 3rem; }
            .contact-hero-content h1 { font-size: 3.5rem; }
            .contact-form-section, .info-card { padding: 2rem; }
        }